I420: use 'yuv' file extension

FFmpeg, which is the most straightforward to process these files,
doesn't accept 'i420' extension.
This commit is contained in:
Martin Pulec
2020-02-21 13:55:23 +01:00
parent 056d3b733f
commit 0ae4e54cb7

View File

@@ -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"},
};
/**