| 1235 | |
| 1236 | #if FFMPEG_OPT_VSYNC |
| 1237 | static int opt_vsync(void *optctx, const char *opt, const char *arg) |
| 1238 | { |
| 1239 | av_log(NULL, AV_LOG_WARNING, "-vsync is deprecated. Use -fps_mode\n"); |
| 1240 | return parse_and_set_vsync(arg, &video_sync_method, -1, -1, 1); |
| 1241 | } |
| 1242 | #endif |
| 1243 | |
| 1244 | static int opt_timecode(void *optctx, const char *opt, const char *arg) |
nothing calls this directly
no test coverage detected