From 92316eb7406b27f4c1bd353b8f242c7ff28d64f5 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sat, 22 Nov 2014 08:13:14 +0100 Subject: TOOLS/idet.sh: Adjust for changes in FFmpeg. Compatibility to older idet is preserved. --- TOOLS/idet.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'TOOLS') diff --git a/TOOLS/idet.sh b/TOOLS/idet.sh index 80c4b4ac5f..e9214ef844 100755 --- a/TOOLS/idet.sh +++ b/TOOLS/idet.sh @@ -35,11 +35,7 @@ judge() bff=0 progressive=0 undetermined=0 - while IFS= read -r out; do - tff1=${out##* TFF:}; tff1=${tff1%% *} - bff1=${out##* BFF:}; bff1=${bff1%% *} - progressive1=${out##* Progressive:}; progressive1=${progressive1%% *} - undetermined1=${out##* Undetermined:}; undetermined1=${undetermined1%% *} + while read -r _ _ _ _ _ _ tff1 _ bff1 _ progressive1 _ undetermined1 _; do case "$tff1$bff1$progressive1$undetermined1" in *[!0-9]*) printf >&2 'ERROR: Unrecognized idet output: %s\n' "$out" -- cgit v1.2.3