From d48b4b81c6cffa1fb86ae1dbc8e3115da5f86b6f Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Sun, 9 Jun 2002 10:59:33 +0000 Subject: reporting unknown buffer types is useless - it must be reported at demuxer stage where we known the fourcc. CVS patchset: 2047 CVS date: 2002/06/09 10:59:33 --- src/xine-engine/audio_decoder.c | 3 +-- src/xine-engine/video_decoder.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/xine-engine/audio_decoder.c b/src/xine-engine/audio_decoder.c index 6bc566875..e533f49f5 100644 --- a/src/xine-engine/audio_decoder.c +++ b/src/xine-engine/audio_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_decoder.c,v 1.75 2002/06/07 04:15:46 miguelfreitas Exp $ + * $Id: audio_decoder.c,v 1.76 2002/06/09 10:59:33 miguelfreitas Exp $ * * * functions that implement audio decoding @@ -253,7 +253,6 @@ void *audio_decoder_loop (void *this_gen) { } else if( buf->type != buftype_unknown ) { xine_log (this, XINE_LOG_MSG, "audio_decoder: unknown buffer type: %08x\n", buf->type ); - xine_report_codec( this, XINE_CODEC_AUDIO, 0, buf->type, 0); buftype_unknown = buf->type; } diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c index 0c8524bb9..10c2b5022 100644 --- a/src/xine-engine/video_decoder.c +++ b/src/xine-engine/video_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: video_decoder.c,v 1.87 2002/06/07 04:15:46 miguelfreitas Exp $ + * $Id: video_decoder.c,v 1.88 2002/06/09 10:59:33 miguelfreitas Exp $ * */ @@ -273,7 +273,6 @@ void *video_decoder_loop (void *this_gen) { } else if( buf->type != buftype_unknown ) { xine_log (this, XINE_LOG_MSG, "video_decoder: unknown buffer type: %08x\n", buf->type ); - xine_report_codec( this, XINE_CODEC_VIDEO, 0, buf->type, 0); buftype_unknown = buf->type; } -- cgit v1.2.3