From 0ae4e54cb7112bd6f91dc91c4cdc3bc0048effed Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Fri, 21 Feb 2020 13:55:23 +0100 Subject: [PATCH] I420: use 'yuv' file extension FFmpeg, which is the most straightforward to process these files, doesn't accept 'i420' extension. --- src/video_codec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_codec.c b/src/video_codec.c index 8e8ff9910..c6c877561 100644 --- a/src/video_codec.c +++ b/src/video_codec.c @@ -188,7 +188,7 @@ static const struct codec_info_t codec_info[] = { [AV1] = {"AV1", "AOMedia Video 1", to_fourcc('a','v','0','1'), 0, 1.0, 8, 0, FALSE, TRUE, TRUE, FALSE, "av1"}, [I420] = {"I420", "I420", - to_fourcc('I','4','2','0'), 2, 3.0/2.0, 8, 0, FALSE, FALSE, FALSE, FALSE, "i420"}, + to_fourcc('I','4','2','0'), 2, 3.0/2.0, 8, 0, FALSE, FALSE, FALSE, FALSE, "yuv"}, }; /**