From 37544e53dc0725d813ed3e525309a95b09c2d7fe Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Wed, 9 Sep 2015 02:57:44 +0200 Subject: Use setfield, not --field-dominance. See #2297. --- TOOLS/idet.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'TOOLS/idet.sh') diff --git a/TOOLS/idet.sh b/TOOLS/idet.sh index ae7a3612fe..46bb835832 100755 --- a/TOOLS/idet.sh +++ b/TOOLS/idet.sh @@ -95,18 +95,18 @@ case "$verdict" in exit 0 ;; interlaced-tff) - judge "$@" --vf-clr --vf-pre=pullup --field-dominance=top + judge "$@" --vf-clr --vf-pre=lavfi=\[setfield=tff\],pullup case "$verdict" in progressive) [ -n "$ILDETECT_DRY_RUN" ] || \ - $ILDETECT_MPV "$@" --vf-pre=pullup --field-dominance=top + $ILDETECT_MPV "$@" --vf-pre=lavfi=\[setfield=tff\],pullup r=$? [ $r -eq 0 ] || exit $((r | 16)) exit 1 ;; *) [ -n "$ILDETECT_DRY_RUN" ] || \ - $ILDETECT_MPV "$@" --vf-pre=yadif --field-dominance=top + $ILDETECT_MPV "$@" --vf-pre=lavfi=\[setfield=tff\],yadif r=$? [ $r -eq 0 ] || exit $((r | 16)) exit 2 @@ -114,18 +114,18 @@ case "$verdict" in esac ;; interlaced-bff) - judge "$@" --vf-clr --vf-pre=pullup --field-dominance=bottom + judge "$@" --vf-clr --vf-pre=lavfi=\[setfield=bff\],pullup case "$verdict" in progressive) [ -n "$ILDETECT_DRY_RUN" ] || \ - $ILDETECT_MPV "$@" --vf-pre=pullup --field-dominance=bottom + $ILDETECT_MPV "$@" --vf-pre=lavfi=\[setfield=bff\],pullup r=$? [ $r -eq 0 ] || exit $((r | 16)) exit 1 ;; *) [ -n "$ILDETECT_DRY_RUN" ] || \ - $ILDETECT_MPV "$@" --vf-pre=yadif --field-dominance=bottom + $ILDETECT_MPV "$@" --vf-pre=lavfi=\[setfield=bff\],yadif r=$? [ $r -eq 0 ] || exit $((r | 16)) exit 2 -- cgit v1.2.3