Fixes to xine engine
This commit is contained in:
@@ -17,34 +17,25 @@
|
||||
|
||||
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;
|
||||
struct my_node_s {
|
||||
MyNode *next;
|
||||
int16_t *mem;
|
||||
int num_frames;
|
||||
int64_t vpts;
|
||||
int64_t vpts_end;
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
xine_post_t*
|
||||
scope_plugin_new( xine_t*, xine_audio_port_t* );
|
||||
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
|
||||
*/
|
||||
/* 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* );
|
||||
MyNode *scope_plugin_list(void*);
|
||||
int scope_plugin_channels(void*);
|
||||
metronom_t *scope_plugin_metronom(void*);
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user