diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-23 20:26:32 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-23 20:26:32 +0000 |
commit | 4217d72d01c21fa1fc9a196e162206a72eb182b3 (patch) | |
tree | 404f367d672b4a5a75a21332177dd4f825e0e741 /src/demuxers/demux_qt.c | |
parent | 012beea007c541bf98b4536f17dc539d41a1ceaa (diff) | |
download | xine-lib-4217d72d01c21fa1fc9a196e162206a72eb182b3.tar.gz xine-lib-4217d72d01c21fa1fc9a196e162206a72eb182b3.tar.bz2 |
final c++ -> c coding style fixes, libxine compiles now
CVS patchset: 2971
CVS date: 2002/10/23 20:26:32
Diffstat (limited to 'src/demuxers/demux_qt.c')
-rw-r--r-- | src/demuxers/demux_qt.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 49de24215..8a8519659 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -30,7 +30,7 @@ * build_frame_table * free_qt_info * - * $Id: demux_qt.c,v 1.99 2002/10/23 10:48:17 jkeil Exp $ + * $Id: demux_qt.c,v 1.100 2002/10/23 20:26:33 guenter Exp $ * */ @@ -1658,13 +1658,17 @@ printf ("sending qt headers\n"); */ if( this->qt->video_type == BUF_VIDEO_MSMPEG4_V1 ) this->qt->video_type = BUF_VIDEO_MPEG4; +#if 0 if( !this->qt->video_type && this->qt->video_codec ) xine_report_codec( this->stream, XINE_CODEC_VIDEO, this->bih.biCompression, 0, 0); +#endif this->qt->audio_type = formattag_to_buf_audio(this->qt->audio_codec); +#if 0 if( !this->qt->audio_type && this->qt->audio_codec ) xine_report_codec( this->stream, XINE_CODEC_AUDIO, this->qt->audio_codec, 0, 0); +#endif /* load stream information */ this->stream->stream_info[XINE_STREAM_INFO_HAS_VIDEO] = |