From bd3ae0c9e6bc268478370e823eef5d6ca8fc6e05 Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 4 Sep 2009 19:02:12 +0000 Subject: Fix grammar mistake noticed by Alexander Strasser. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29647 b3059339-0415-0410-9bf9-f77b7e298cf2 --- etc/codecs.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc') diff --git a/etc/codecs.conf b/etc/codecs.conf index fd9a484c09..0530bef1b0 100644 --- a/etc/codecs.conf +++ b/etc/codecs.conf @@ -3991,7 +3991,7 @@ audiocodec vorbis audiocodec tremor info "OggVorbis audio" status working - comment "fixed-point decoder useful systems without floating-point unit" + comment "fixed-point decoder useful for systems without floating-point unit" fourcc vrbs format 0x566F driver tremor -- cgit v1.2.3 From 9d99f5bd8d8fdeb3997d14a2cea3f32d928b9d22 Mon Sep 17 00:00:00 2001 From: vitor Date: Mon, 7 Sep 2009 17:20:44 +0000 Subject: Add support for lavf vqf demuxer and lavc TwinVQ decoder. Also make lavf the default demuxer for vqf. Ok'ed by Compn on IRC. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29655 b3059339-0415-0410-9bf9-f77b7e298cf2 --- etc/codecs.conf | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'etc') diff --git a/etc/codecs.conf b/etc/codecs.conf index 0530bef1b0..2aade33cf3 100644 --- a/etc/codecs.conf +++ b/etc/codecs.conf @@ -4105,6 +4105,14 @@ audiocodec pscelp driver acm dll "smcelp32.acm" +audiocodec fftwinvq + info "FFmpeg TwinVQ" + status working + fourcc TWI2 ; internal MPlayer FourCC, different from mplayer's TwinVQ decoder + ; since lavf demuxer is incompatible with it + driver ffmpeg + dll twinvq + audiocodec TwinVQ info "VQF codec by NTTLabs" status working -- cgit v1.2.3 From 77cb01d34f0341c3e3cdcdb946739e7fb6e3dc7f Mon Sep 17 00:00:00 2001 From: compn Date: Sat, 12 Sep 2009 16:49:11 +0000 Subject: add kega video binary codec for fourcc kgv1 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29673 b3059339-0415-0410-9bf9-f77b7e298cf2 --- etc/codecs.conf | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'etc') diff --git a/etc/codecs.conf b/etc/codecs.conf index 2aade33cf3..e9b1593cb1 100644 --- a/etc/codecs.conf +++ b/etc/codecs.conf @@ -2209,6 +2209,14 @@ videocodec webtrain dll "wtvc.dll" out BGR16 flip +videocodec kegavideo + info "Kega Video" + status working + fourcc KGV1 + driver vfw + dll "KGV1-VFW.dll" + out BGR15,BGR16 flip + videocodec xfire info "xfire video" status working -- cgit v1.2.3 From 426bd1b1e1968a9b8756eb74fa48925051a3f3f5 Mon Sep 17 00:00:00 2001 From: reimar Date: Mon, 14 Sep 2009 09:47:08 +0000 Subject: Add support for decoding sgi files via FFmpeg's sgi decoder. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29678 b3059339-0415-0410-9bf9-f77b7e298cf2 --- etc/codecs.conf | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'etc') diff --git a/etc/codecs.conf b/etc/codecs.conf index e9b1593cb1..89c5037246 100644 --- a/etc/codecs.conf +++ b/etc/codecs.conf @@ -414,6 +414,14 @@ videocodec mtga driver mtga out BGR32,BGR24 +videocodec ffsgi + info "FFmpeg SGI image" + status working + fourcc SGI1 ; SGI1 is an internal MPlayer FOURCC + driver ffmpeg + dll sgi + out RGB24,Y800,RGB48BE + videocodec sgi info "SGI image" status working -- cgit v1.2.3 From 60287b1acb53099fe902031bf53f686750edf631 Mon Sep 17 00:00:00 2001 From: compn Date: Mon, 14 Sep 2009 10:26:53 +0000 Subject: kegavideo codec requires msvcr80 on windows remove incorrect out colorspace git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29679 b3059339-0415-0410-9bf9-f77b7e298cf2 --- etc/codecs.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'etc') diff --git a/etc/codecs.conf b/etc/codecs.conf index 89c5037246..782ff61809 100644 --- a/etc/codecs.conf +++ b/etc/codecs.conf @@ -2219,11 +2219,12 @@ videocodec webtrain videocodec kegavideo info "Kega Video" + comment "requires MSVCR80.DLL on windows" status working fourcc KGV1 driver vfw dll "KGV1-VFW.dll" - out BGR15,BGR16 flip + out BGR16 flip videocodec xfire info "xfire video" -- cgit v1.2.3