Commit 7d0f9587 authored by stefano's avatar stefano

Use positive logic, improve readability, consistent with r20877.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20920 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 20b2c717
......@@ -3736,7 +3736,7 @@ static void opt_target(const char *arg)
opt_format("dv");
opt_frame_size(norm != PAL ? "720x480" : "720x576");
opt_frame_size(norm == PAL ? "720x576" : "720x480");
opt_frame_pix_fmt(!strncmp(arg, "dv50", 4) ? "yuv422p" :
(norm == PAL ? "yuv420p" : "yuv411p"));
opt_frame_rate(NULL, frame_rates[norm]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment