diff options
Diffstat (limited to 'src/libxineadec')
-rw-r--r-- | src/libxineadec/adpcm.c | 3 | ||||
-rw-r--r-- | src/libxineadec/fooaudio.c | 3 | ||||
-rw-r--r-- | src/libxineadec/gsm610.c | 3 | ||||
-rw-r--r-- | src/libxineadec/interplayaudio.c | 3 | ||||
-rw-r--r-- | src/libxineadec/logpcm.c | 3 | ||||
-rw-r--r-- | src/libxineadec/roqaudio.c | 3 |
6 files changed, 6 insertions, 12 deletions
diff --git a/src/libxineadec/adpcm.c b/src/libxineadec/adpcm.c index 0a272921d..c3a419131 100644 --- a/src/libxineadec/adpcm.c +++ b/src/libxineadec/adpcm.c @@ -24,7 +24,7 @@ * formats can be found here: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: adpcm.c,v 1.26 2003/01/07 06:26:25 tmmm Exp $ + * $Id: adpcm.c,v 1.27 2003/01/08 01:02:30 miguelfreitas Exp $ */ #include <stdio.h> @@ -1211,7 +1211,6 @@ static void adpcm_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { break; } - this->stream->stream_info[XINE_STREAM_INFO_AUDIO_HANDLED] = 1; /* if the data was transported in an MS-type file (packet size will be * non-0 indicating an audio header), create a decode buffer */ diff --git a/src/libxineadec/fooaudio.c b/src/libxineadec/fooaudio.c index 2d90e8846..b40dd26f5 100644 --- a/src/libxineadec/fooaudio.c +++ b/src/libxineadec/fooaudio.c @@ -21,7 +21,7 @@ * player. It really works too! It will output a continuous sine wave in * place of the data it should actually send. * - * $Id: fooaudio.c,v 1.5 2002/12/21 12:56:48 miguelfreitas Exp $ + * $Id: fooaudio.c,v 1.6 2003/01/08 01:02:31 miguelfreitas Exp $ */ #include <stdio.h> @@ -99,7 +99,6 @@ static void fooaudio_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) /* take this opportunity to initialize stream/meta information */ this->stream->meta_info[XINE_META_INFO_AUDIOCODEC] = strdup("fooaudio"); - this->stream->stream_info[XINE_STREAM_INFO_AUDIO_HANDLED] = 1; /* peform any other required initialization */ this->last_pts = -1; diff --git a/src/libxineadec/gsm610.c b/src/libxineadec/gsm610.c index 4ee875354..2a4b5f619 100644 --- a/src/libxineadec/gsm610.c +++ b/src/libxineadec/gsm610.c @@ -44,7 +44,7 @@ * Carsten Bormann * -------------------------------------------------------------------- * - * $Id: gsm610.c,v 1.7 2002/12/21 12:56:48 miguelfreitas Exp $ + * $Id: gsm610.c,v 1.8 2003/01/08 01:02:31 miguelfreitas Exp $ * */ @@ -110,7 +110,6 @@ static void gsm610_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { /* stream/meta info */ this->stream->meta_info[XINE_META_INFO_AUDIOCODEC] = strdup("GSM 6.10"); - this->stream->stream_info[XINE_STREAM_INFO_AUDIO_HANDLED] = 1; return; } diff --git a/src/libxineadec/interplayaudio.c b/src/libxineadec/interplayaudio.c index 1b53e4634..71cfa0bc5 100644 --- a/src/libxineadec/interplayaudio.c +++ b/src/libxineadec/interplayaudio.c @@ -21,7 +21,7 @@ * For more information regarding the Interplay MVE file format, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: interplayaudio.c,v 1.1 2002/12/28 18:25:08 tmmm Exp $ + * $Id: interplayaudio.c,v 1.2 2003/01/08 01:02:31 miguelfreitas Exp $ */ #include <stdio.h> @@ -138,7 +138,6 @@ static void interplay_decode_data (audio_decoder_t *this_gen, buf_element_t *buf /* take this opportunity to initialize stream/meta information */ this->stream->meta_info[XINE_META_INFO_AUDIOCODEC] = strdup("Interplay MVE DPCM"); - this->stream->stream_info[XINE_STREAM_INFO_AUDIO_HANDLED] = 1; return; } diff --git a/src/libxineadec/logpcm.c b/src/libxineadec/logpcm.c index 1167dd228..3ff15fb0b 100644 --- a/src/libxineadec/logpcm.c +++ b/src/libxineadec/logpcm.c @@ -30,7 +30,7 @@ * http://sox.sourceforge.net/ * which listed the code as being lifted from Sun Microsystems. * - * $Id: logpcm.c,v 1.11 2002/12/21 12:56:48 miguelfreitas Exp $ + * $Id: logpcm.c,v 1.12 2003/01/08 01:02:31 miguelfreitas Exp $ * */ @@ -163,7 +163,6 @@ static void logpcm_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { this->stream->meta_info[XINE_META_INFO_AUDIOCODEC] = (buf->type == BUF_AUDIO_MULAW) ? strdup("mu-law log PCM") : strdup("A-law log PCM"); - this->stream->stream_info[XINE_STREAM_INFO_AUDIO_HANDLED] = 1; /* pre-calculate the possible log values */ if (buf->type == BUF_AUDIO_MULAW) diff --git a/src/libxineadec/roqaudio.c b/src/libxineadec/roqaudio.c index 9bca21695..bf9e3a508 100644 --- a/src/libxineadec/roqaudio.c +++ b/src/libxineadec/roqaudio.c @@ -21,7 +21,7 @@ * For more information regarding the RoQ file format, visit: * http://www.csse.monash.edu.au/~timf/ * - * $Id: roqaudio.c,v 1.14 2002/12/21 12:56:48 miguelfreitas Exp $ + * $Id: roqaudio.c,v 1.15 2003/01/08 01:02:31 miguelfreitas Exp $ * */ @@ -85,7 +85,6 @@ static void roqaudio_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) /* stream/meta info */ this->stream->meta_info[XINE_META_INFO_AUDIOCODEC] = strdup("RoQ DPCM Audio"); - this->stream->stream_info[XINE_STREAM_INFO_AUDIO_HANDLED] = 1; return; } |