diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-01-07 06:29:16 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-01-07 06:29:16 +0000 |
commit | 24405800d9ef77cdb68252e05f894a82f2f181de (patch) | |
tree | 9ecf37e6272612fd3dd011f03257135d8ee43d92 /src/demuxers/group_audio.c | |
parent | 36ae2af3d7f60b948aec19042af5c1b115942f7a (diff) | |
download | xine-lib-24405800d9ef77cdb68252e05f894a82f2f181de.tar.gz xine-lib-24405800d9ef77cdb68252e05f894a82f2f181de.tar.bz2 |
added VOX file demuxer which transports raw Dialogic ADPCM data
CVS patchset: 3805
CVS date: 2003/01/07 06:29:16
Diffstat (limited to 'src/demuxers/group_audio.c')
-rw-r--r-- | src/demuxers/group_audio.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/demuxers/group_audio.c b/src/demuxers/group_audio.c index 8e93e2a9e..4622e9a03 100644 --- a/src/demuxers/group_audio.c +++ b/src/demuxers/group_audio.c @@ -19,7 +19,7 @@ * * This file contains plugin entries for several demuxers used in games * - * $Id: group_audio.c,v 1.2 2003/01/05 14:30:14 miguelfreitas Exp $ + * $Id: group_audio.c,v 1.3 2003/01/07 06:29:16 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -37,6 +37,7 @@ void *demux_mpgaudio_init_class (xine_t *xine, void *data); void *demux_realaudio_init_plugin (xine_t *xine, void *data); void *demux_snd_init_plugin (xine_t *xine, void *data); void *demux_voc_init_plugin (xine_t *xine, void *data); +void *demux_vox_init_plugin (xine_t *xine, void *data); void *demux_wav_init_plugin (xine_t *xine, void *data); /* @@ -52,6 +53,7 @@ plugin_info_t xine_plugin_info[] = { { PLUGIN_DEMUX, 20, "realaudio", XINE_VERSION_CODE, NULL, demux_realaudio_init_plugin }, { PLUGIN_DEMUX, 20, "snd", XINE_VERSION_CODE, NULL, demux_snd_init_plugin }, { PLUGIN_DEMUX, 20, "voc", XINE_VERSION_CODE, NULL, demux_voc_init_plugin }, + { PLUGIN_DEMUX, 20, "vox", XINE_VERSION_CODE, NULL, demux_vox_init_plugin }, { PLUGIN_DEMUX, 20, "wav", XINE_VERSION_CODE, NULL, demux_wav_init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } }; |