From b7cacf9165290067b66b160b108790b89c080a3e Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 14 Dec 2012 12:59:05 +0100 Subject: video/out: replace VFCAP_TIMER with vo->untimed, fix vo_image and vo_lavc VFCAP_TIMER disables any additional waiting done by mpv in the playloop. Remove VFCAP_TIMER, but re-use the idea for vo_image and vo_lavc. This means --untimed doesn't have to be passed when using --vo=image. --- video/out/vo_image.c | 1 + 1 file changed, 1 insertion(+) (limited to 'video/out/vo_image.c') diff --git a/video/out/vo_image.c b/video/out/vo_image.c index 12bd18862a..2c9c6f3acf 100644 --- a/video/out/vo_image.c +++ b/video/out/vo_image.c @@ -137,6 +137,7 @@ static void uninit(struct vo *vo) static int preinit(struct vo *vo, const char *arg) { + vo->untimed = true; return 0; } -- cgit v1.2.3