From 13d0565fe6881b4918a29c2de731721a6f76e8e3 Mon Sep 17 00:00:00 2001 From: Antoine Cellerier Date: Wed, 12 Sep 2007 19:52:05 +0000 Subject: [PATCH] Add FVFW and fvfw since ffdshow seems to offer that as an option when encoding mpeg 4 video. This might fix a few cases where videos weren't decoded by VLC. --- modules/codec/ffmpeg/ffmpeg.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/codec/ffmpeg/ffmpeg.c b/modules/codec/ffmpeg/ffmpeg.c index 299c0df4f5..18ccaf0e01 100644 --- a/modules/codec/ffmpeg/ffmpeg.c +++ b/modules/codec/ffmpeg/ffmpeg.c @@ -645,6 +645,10 @@ static struct VIDEO_ES, "Jomigo HDX4 (MPEG-4 Video)" }, { VLC_FOURCC('S','M','P','4'), CODEC_ID_MPEG4, VIDEO_ES, "Samsung SMP4 (MPEG-4 Video)" }, + { VLC_FOURCC('f','v','f','w'), CODEC_ID_MPEG4, + VIDEO_ES, "FFmpeg MPEG-4" }, + { VLC_FOURCC('F','V','F','W'), CODEC_ID_MPEG4, + VIDEO_ES, "FFmpeg MPEG-4" }, /* MSMPEG4 v1 */ { VLC_FOURCC('D','I','V','1'), CODEC_ID_MSMPEG4V1, -- GitLab