Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2009-12-25 21:32:16 +0300
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2009-12-25 21:32:16 +0300
commita6831e885c4b1474e3fc135741c9726719a409e0 (patch)
tree077d6d34d61c8a0e2d00c28518241129c3891c2a /ffmpeg.c
parent0fb669ae9e72158980c58f827cea2b5fa284d102 (diff)
Use positive logic, improve readability, consistent with r20877.
Originally committed as revision 20920 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index 31580684fe..3fa72c356b 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -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]);