diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-08-12 03:59:31 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-08-12 03:59:31 +0000 |
commit | e247992cf73aa8614c8f83f469f20cd3542a28e1 (patch) | |
tree | a28cfc8ab3da3cd7b601829926640bb3977143ad | |
parent | c4a1b86503da68b152678027bf6876546847315a (diff) | |
download | xine-lib-e247992cf73aa8614c8f83f469f20cd3542a28e1.tar.gz xine-lib-e247992cf73aa8614c8f83f469f20cd3542a28e1.tar.bz2 |
reflect the newest demuxers and decoders
CVS patchset: 2443
CVS date: 2002/08/12 03:59:31
-rw-r--r-- | AUTHORS | 6 | ||||
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.in | 5 |
3 files changed, 8 insertions, 4 deletions
@@ -233,9 +233,9 @@ Contributions C version for linear blend deinterlacer Mike Melanson <melanson@pcisys.net> - QT, FILM, RoQ, WAV, FLI, SMJPEG, Id CIN, WC3 movie, VOC, and VQA file - demuxers, RoQ audio decoder, various ADPCM audio decoders, raw RGB & - YUV support, FLI & MS RLE video decoders + QT, FILM, RoQ, WAV, FLI, SMJPEG, Id CIN, WC3 movie, VOC, VQA, and AIFF + file demuxers, RoQ audio decoder, various ADPCM audio decoders, raw + RGB & YUV support, FLI & MS RLE video decoders Tim Ferguson <timf@mail.csse.monash.edu.au> CYUV, RoQ, and Id CIN video decoders @@ -3,6 +3,7 @@ xine-lib (next version) [someone fill in stability and urgency] * Wing Commander III MVE movie file demuxer * Creative Voice (VOC) file demuxer * Westwood Studios VQA file demuxer + * AIFF file demuxer * Id CIN video decoder xine-lib (0.9.13) unstable; urgency=low diff --git a/configure.in b/configure.in index e1655accf..d645c2a48 100644 --- a/configure.in +++ b/configure.in @@ -1119,10 +1119,12 @@ echo " * demultiplexer plugins:" echo " - avi - mpeg" echo " - mpeg_block - mpeg_audio" echo " - mpeg_elem - mpeg_pes" -echo " - mpeg_ts - qt" +echo " - mpeg_ts - qt/mpeg-4" echo " - film - roq" echo " - fli - smjpeg" echo " - idcin - wav" +echo " - wc3 mve - voc" +echo " - vqa - aiff" echo " - cda" if test x"$enable_asf" = "xyes"; then echo " - asf" @@ -1140,6 +1142,7 @@ echo " - cinepak - msvc" echo " - fli - msrle" echo " - rgb - yuv" echo " - roqvideo - svq1" +echo " - idcin" if test x"$no_xvid" = "xno"; then echo " - xvid" fi |