[FFmpeg-cvslog] r20877 - trunk/ffmpeg.c
stefano
subversion
Wed Dec 16 00:25:16 CET 2009
Author: stefano
Date: Wed Dec 16 00:25:16 2009
New Revision: 20877
Log:
Use positive logic in opt_target() for selecting the PAL/others
options, make its semantics mildly easier to compile by human minds.
Modified:
trunk/ffmpeg.c
Modified: trunk/ffmpeg.c
==============================================================================
--- trunk/ffmpeg.c Tue Dec 15 23:34:22 2009 (r20876)
+++ trunk/ffmpeg.c Wed Dec 16 00:25:16 2009 (r20877)
@@ -3641,7 +3641,7 @@ static void opt_target(const char *arg)
}
}
if(verbose && norm != UNKNOWN)
- fprintf(stderr, "Assuming %s for target.\n", norm != PAL ? "NTSC" : "PAL");
+ fprintf(stderr, "Assuming %s for target.\n", norm == PAL ? "PAL" : "NTSC");
}
if(norm == UNKNOWN) {
@@ -3657,9 +3657,9 @@ static void opt_target(const char *arg)
opt_audio_codec("mp2");
opt_format("vcd");
- opt_frame_size(norm != PAL ? "352x240" : "352x288");
+ opt_frame_size(norm == PAL ? "352x288" : "352x240");
opt_frame_rate(NULL, frame_rates[norm]);
- opt_default("g", norm != PAL ? "18" : "15");
+ opt_default("g", norm == PAL ? "15" : "18");
opt_default("b", "1150000");
opt_default("maxrate", "1150000");
@@ -3685,9 +3685,9 @@ static void opt_target(const char *arg)
opt_audio_codec("mp2");
opt_format("svcd");
- opt_frame_size(norm != PAL ? "480x480" : "480x576");
+ opt_frame_size(norm == PAL ? "480x576" : "480x480");
opt_frame_rate(NULL, frame_rates[norm]);
- opt_default("g", norm != PAL ? "18" : "15");
+ opt_default("g", norm == PAL ? "15" : "18");
opt_default("b", "2040000");
opt_default("maxrate", "2516000");
@@ -3707,9 +3707,9 @@ static void opt_target(const char *arg)
opt_audio_codec("ac3");
opt_format("dvd");
- opt_frame_size(norm != PAL ? "720x480" : "720x576");
+ opt_frame_size(norm == PAL ? "720x576" : "720x480");
opt_frame_rate(NULL, frame_rates[norm]);
- opt_default("g", norm != PAL ? "18" : "15");
+ opt_default("g", norm == PAL ? "15" : "18");
opt_default("b", "6000000");
opt_default("maxrate", "9000000");
@@ -3728,7 +3728,7 @@ static void opt_target(const char *arg)
opt_frame_size(norm != PAL ? "720x480" : "720x576");
opt_frame_pix_fmt(!strncmp(arg, "dv50", 4) ? "yuv422p" :
- (norm != PAL ? "yuv411p" : "yuv420p"));
+ (norm == PAL ? "yuv420p" : "yuv411p"));
opt_frame_rate(NULL, frame_rates[norm]);
audio_sample_rate = 48000;
More information about the ffmpeg-cvslog
mailing list