Searched refs:video_sync_method (Results 1 – 3 of 3) sorted by relevance
610 extern int video_sync_method;
156 int video_sync_method = VSYNC_AUTO; variable1719 video_sync_method == VSYNC_PASSTHROUGH) in new_video_stream()3130 if (!av_strcasecmp(arg, "cfr")) video_sync_method = VSYNC_CFR; in opt_vsync()3131 else if (!av_strcasecmp(arg, "vfr")) video_sync_method = VSYNC_VFR; in opt_vsync()3132 else if (!av_strcasecmp(arg, "passthrough")) video_sync_method = VSYNC_PASSTHROUGH; in opt_vsync()3133 else if (!av_strcasecmp(arg, "drop")) video_sync_method = VSYNC_DROP; in opt_vsync()3135 if (video_sync_method == VSYNC_AUTO) in opt_vsync()3136 video_sync_method = parse_number_or_die("vsync", arg, OPT_INT, VSYNC_AUTO, VSYNC_VFR); in opt_vsync()
784 if ((st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && video_sync_method == VSYNC_DROP) || in write_packet()1196 format_video_sync = video_sync_method; in do_video_out()3432 if ( av_q2d(enc_ctx->time_base) < 0.001 && video_sync_method != VSYNC_PASSTHROUGH in init_output_stream_encode()3433 …&& (video_sync_method == VSYNC_CFR || video_sync_method == VSYNC_VSCFR || (video_sync_method == VS… in init_output_stream_encode()