xine-scope.h

来自「Amarok是一款在LINUX或其他类UNIX操作系统中运行的音频播放器软件。 」· C头文件 代码 · 共 51 行

H
51
字号
/* Author: Max Howell <max.howell@methylblue.com>, (C) 2004   Copyright: See COPYING file that comes with this distribution   This has to be a c file or for some reason it won't link! (GCC 3.4.1)*/#ifndef XINESCOPE_H#define XINESCOPE_H/* need access to some stuff for scope time stamping */#define METRONOM_INTERNAL#include <sys/types.h>#include <xine/metronom.h>typedef struct my_node_s MyNode;struct my_node_s{    MyNode  *next;    int16_t *mem;    int      num_frames;    int64_t  vpts;    int64_t  vpts_end;};#ifdef __cplusplusextern "C"{#endif    xine_post_t*    scope_plugin_new( xine_t*, xine_audio_port_t* );    /* we sacrifice type-safety here because some GCCs appear broken     * and choke on redefining the xine_post_t typedef     */    MyNode*    scope_plugin_list( void* );    int    scope_plugin_channels( void* );    metronom_t*    scope_plugin_metronom( void* );#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?