diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2016-04-16 23:56:14 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2016-04-16 23:59:36 +0100 |
commit | 77fb7177afd69eacbf9034917ab85138a40d2d93 (patch) | |
tree | 1feb5bf1e1f38a3c1ea94f563187cf125e1f87f7 /libavcodec | |
parent | 2aad631a818cc49fc30da349c319abfb119adea1 (diff) | |
download | ffmpeg-77fb7177afd69eacbf9034917ab85138a40d2d93.tar.gz |
vc2enc: don't require interlacing for 1080p50/60 base video formats
Typo
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vc2enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc2enc.c b/libavcodec/vc2enc.c index 577d49dd07..07638c5f2a 100644 --- a/libavcodec/vc2enc.c +++ b/libavcodec/vc2enc.c @@ -65,8 +65,8 @@ static const VC2BaseVideoFormat base_video_fmts[] = { { AV_PIX_FMT_YUV422P10, { 1, 50 }, 1280, 720, 0, 3, "HD720P-50" }, { AV_PIX_FMT_YUV422P10, { 1001, 30000 }, 1920, 1080, 1, 3, "HD1080I-60" }, { AV_PIX_FMT_YUV422P10, { 1, 25 }, 1920, 1080, 1, 3, "HD1080I-50" }, - { AV_PIX_FMT_YUV422P10, { 1001, 60000 }, 1920, 1080, 1, 3, "HD1080P-60" }, - { AV_PIX_FMT_YUV422P10, { 1, 50 }, 1920, 1080, 1, 3, "HD1080P-50" }, + { AV_PIX_FMT_YUV422P10, { 1001, 60000 }, 1920, 1080, 0, 3, "HD1080P-60" }, + { AV_PIX_FMT_YUV422P10, { 1, 50 }, 1920, 1080, 0, 3, "HD1080P-50" }, { AV_PIX_FMT_YUV444P12, { 1, 24 }, 2048, 1080, 0, 4, "DC2K" }, { AV_PIX_FMT_YUV444P12, { 1, 24 }, 4096, 2160, 0, 5, "DC4K" }, |