From: Stefano Sabatini Date: Tue, 15 Dec 2009 23:25:16 +0000 (+0000) Subject: Use positive logic in opt_target() for selecting the PAL/others X-Git-Tag: v0.6~2302 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=06a3c9c45a89bb599e433312bf6dc6678edbd3e0;p=platform%2Fupstream%2Flibav.git Use positive logic in opt_target() for selecting the PAL/others options, make its semantics mildly easier to compile by human minds. Originally committed as revision 20877 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/ffmpeg.c b/ffmpeg.c index 652082e..5c5aa47 100644 --- a/ffmpeg.c +++ b/ffmpeg.c @@ -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;