Displaying 5 results from an estimated 5 matches for "metadata_callback_".
Did you mean:
metadata_callback
2004 Oct 14
2
compile errors
...omething not a
structure or union
plugin.c: In function `write_callback_':
plugin.c:493: error: `file_info' undeclared (first use in this function)
plugin.c:493: error: syntax error before ')' token
plugin.c:491: warning: unused parameter `client_data'
plugin.c: In function `metadata_callback_':
plugin.c:553: error: `file_info' undeclared (first use in this function)
plugin.c:553: error: syntax error before ')' token
plugin.c: In function `error_callback_':
plugin.c:574: error: `file_info' undeclared (first use in this function)
plugin.c:574: error: syntax erro...
2004 Oct 14
0
compile errors
...ion
> plugin.c: In function `write_callback_':
> plugin.c:493: error: `file_info' undeclared (first use in this
> function)
> plugin.c:493: error: syntax error before ')' token
> plugin.c:491: warning: unused parameter `client_data'
> plugin.c: In function `metadata_callback_':
> plugin.c:553: error: `file_info' undeclared (first use in this
> function)
> plugin.c:553: error: syntax error before ')' token
> plugin.c: In function `error_callback_':
> plugin.c:574: error: `file_info' undeclared (first use in this
> function)
&g...
2004 Oct 15
1
compile errors
...nction `write_callback_':
> > plugin.c:493: error: `file_info' undeclared (first use in this
> > function)
> > plugin.c:493: error: syntax error before ')' token
> > plugin.c:491: warning: unused parameter `client_data'
> > plugin.c: In function `metadata_callback_':
> > plugin.c:553: error: `file_info' undeclared (first use in this
> > function)
> > plugin.c:553: error: syntax error before ')' token
> > plugin.c: In function `error_callback_':
> > plugin.c:574: error: `file_info' undeclared (first use...
2004 Sep 10
0
http streaming in the xmms plugin
...safe_decoder_finish_(FLAC__FileDecoder *decoder);
! static void safe_decoder_delete_(FLAC__FileDecoder *decoder);
! static FLAC__StreamDecoderWriteStatus write_callback_(const FLAC__FileDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
! static void metadata_callback_(const FLAC__FileDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
! static void error_callback_(const FLAC__FileDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
InputPlugin flac_ip =
{
--- 112,126 ----
static void FLAC_XMMS__get_song_in...
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...oid FLAC_XMMS__cleanup();
+static int FLAC_XMMS__get_time(void);
+static void FLAC_XMMS__cleanup(void);
static void FLAC_XMMS__get_song_info(char *filename, char **title, int *length);
static void *play_loop_(void *arg);
@@ -128,7 +128,7 @@ static FLAC__StreamDecoderWriteStatus wr
static void metadata_callback_(const void *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
static void error_callback_(const void *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
-static void init_decoder_func_tables();
+static void init_decoder_func_tables(void);
static decoder_t sourc...