Lines Matching defs:PAL
3058 enum { PAL, NTSC, FILM, UNKNOWN } norm = UNKNOWN;
3062 norm = PAL;
3071 /* Try to determine PAL/NTSC by peeking in the input files */
3082 norm = PAL;
3094 av_log(NULL, AV_LOG_INFO, "Assuming %s for target.\n", norm == PAL ? "PAL" : "NTSC");
3098 av_log(NULL, AV_LOG_FATAL, "Could not determine norm (PAL/NTSC/NTSC-Film) for target.\n");
3109 parse_option(o, "s", norm == PAL ? "352x288" : "352x240", options);
3111 opt_default(NULL, "g", norm == PAL ? "15" : "18");
3137 parse_option(o, "s", norm == PAL ? "480x576" : "480x480", options);
3140 opt_default(NULL, "g", norm == PAL ? "15" : "18");
3159 parse_option(o, "s", norm == PAL ? "720x576" : "720x480", options);
3162 opt_default(NULL, "g", norm == PAL ? "15" : "18");
3179 parse_option(o, "s", norm == PAL ? "720x576" : "720x480", options);
3181 norm == PAL ? "yuv420p" : "yuv411p", options);