diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-06-09 10:59:33 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-06-09 10:59:33 +0000 |
commit | d48b4b81c6cffa1fb86ae1dbc8e3115da5f86b6f (patch) | |
tree | bd3ee0baa1aaefc493c65b2351607d58fc376c96 /src | |
parent | c4a90cde36f7a9dc2148091bde70b9b815b4bad3 (diff) | |
download | xine-lib-d48b4b81c6cffa1fb86ae1dbc8e3115da5f86b6f.tar.gz xine-lib-d48b4b81c6cffa1fb86ae1dbc8e3115da5f86b6f.tar.bz2 |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/audio_decoder.c | 3 | ||||
-rw-r--r-- | src/xine-engine/video_decoder.c | 3 |
2 files changed, 2 insertions, 4 deletions
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; } |