On Sun, 10 Sep 2006 01:26:40 +0200 Tomáš Janoušek <tomi@nomi.cz> wrote:
Hi,
Sun, Sep 10, 2006 at 01:05:06AM +0200 rtogni napsal:
VP50 and VP62 support via lavc
Still missing:
videocodec ffvp6f info "FFmpeg VP6 Flash" status working fourcc VP6F driver ffmpeg dll vp6f out I420
BTW the pixfmt is I420, according to the sources, unless I'm wrong.
And to get this working, please commit also this to libavformat: --- riff.c (revision 6216) +++ riff.c (working copy) @@ -137,6 +137,7 @@ { CODEC_ID_4XM, MKTAG('4', 'X', 'M', 'V') }, { CODEC_ID_FLV1, MKTAG('F', 'L', 'V', '1') }, { CODEC_ID_FLASHSV, MKTAG('F', 'S', 'V', '1') }, + { CODEC_ID_VP6F, MKTAG('V', 'P', '6', 'F') }, { CODEC_ID_SVQ1, MKTAG('s', 'v', 'q', '1') }, { CODEC_ID_TSCC, MKTAG('t', 's', 'c', 'c') }, { CODEC_ID_ULTI, MKTAG('U', 'L', 'T', 'I') },
Indeed this does work to enable VP6 in FLV support. But isn't there a better way than adding a fake FourCC ? Aurel