Displaying 4 results from an estimated 4 matches for "get_iplugin_info".
2004 Sep 10
3
Re: XMMS Plugin on Mac OS X
...i.e. "FLAC Player v1.0.2 [libxmms-shn.so]\nFLAC Player v1.0.2
> [libxmms-shn.so]")
Ah, I see. My first guess at what is happening is that
both plugins are stomping on each other's global symbols.
Looking at flac/src/plugin_xmms/plugin.c, it looks like
the only one it could be is get_iplugin_info():
InputPlugin *get_iplugin_info()
{
flac_ip.description =
g_strdup_printf("FLAC Player v%s", FLAC__VERSION_STRING);
return &flac_ip;
}
I copied the basic plugin design from another plugin (I
think it was XMMS' WAVE reader). I'm not familiar enough
with XMMS...
2004 Nov 29
1
Segfault in vorbis_book_decodevv_add
...apping0_inverse () from /usr/local/lib/libvorbis.so.3
#3 0x28737185 in vorbis_synthesis () from /usr/local/lib/libvorbis.so.3
#4 0x2875b620 in _fetch_and_process_packet () from
/usr/local/lib/libvorbisfile.so.4
#5 0x2875d614 in ov_read () from /usr/local/lib/libvorbisfile.so.4
#6 0x287220e8 in get_iplugin_info () from
/usr/X11R6/lib/xmms/Input/libvorbis.so
#7 0x00001000 in ?? ()
#8 0x00000000 in ?? ()
#9 0x00000002 in ?? ()
#10 0x00000001 in ?? ()
#11 0xbfaccf34 in ?? ()
#12 0x287223ac in get_iplugin_info () from
/usr/X11R6/lib/xmms/Input/libvorbis.so
#13 0x00000000 in ?? ()
#14 0x00000000 in ?? ()...
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...c void init_decoder_func_tables();
+static void init_decoder_func_tables(void);
static decoder_t source_to_decoder_type (const char *source);
InputPlugin flac_ip =
@@ -181,7 +181,7 @@ static const decoder_funcs_t* DECODER_FU
static decoder_funcs_t const * decoder_func_table_;
-InputPlugin *get_iplugin_info()
+InputPlugin *get_iplugin_info(void)
{
flac_ip.description = g_strdup_printf("Reference FLAC Player v%s", FLAC__VERSION_STRING);
return &flac_ip;
@@ -194,7 +194,7 @@ void set_track_info(const char* title, i
}
}
-static gchar* homedir()
+static gchar* homedir(void)
{
gch...
2004 Sep 10
0
http streaming in the xmms plugin
...c file_info_struct file_info_;
static pthread_t decode_thread_;
static FLAC__bool audio_error_ = false;
#define BITRATE_HIST_SEGMENT_MSEC 500
/* 500ms * 50 = 25s should be enough */
#define BITRATE_HIST_SIZE 50
static unsigned bitrate_history_[BITRATE_HIST_SIZE];
InputPlugin *get_iplugin_info()
{
--- 155,174 ----
static FLAC__byte sample_buffer_[SAMPLE_BUFFER_SIZE];
static unsigned sample_buffer_first_, sample_buffer_last_;
! static void *decoder_ = 0;
static file_info_struct file_info_;
static pthread_t decode_thread_;
static FLAC__bool audio_error_ = false;
+ /* A ta...