diff options
author | Sasi Inguva <isasi-at-google.com@ffmpeg.org> | 2016-09-26 11:42:52 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-04-19 14:06:32 +0200 |
commit | 87071478b4a70d3651ce73ee6b9a95a525074403 (patch) | |
tree | 42424e2df5f71defa6298300b322863cb3a47c0d /tests/fate-run.sh | |
parent | 6442e4ab3cab573e6f86bfa6db096afd8edef453 (diff) | |
download | ffmpeg-87071478b4a70d3651ce73ee6b9a95a525074403.tar.gz |
tests/fate-run.sh: Show packet flags for fate gapless tests.
Signed-off-by: Sasi Inguva <isasi@google.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 29a36cea3a..3e8d43c930 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -107,7 +107,7 @@ probegaplessinfo(){ pktfile1="${outdir}/${test}.pkts" framefile1="${outdir}/${test}.frames" cleanfiles="$cleanfiles $pktfile1 $framefile1" - run ffprobe${PROGSUF} -bitexact -select_streams a -of compact -count_packets -show_entries packet=pts,dts,duration:stream=nb_read_packets -v 0 "$filename" "$@" > "$pktfile1" + run ffprobe${PROGSUF} -bitexact -select_streams a -of compact -count_packets -show_entries packet=pts,dts,duration,flags:stream=nb_read_packets -v 0 "$filename" "$@" > "$pktfile1" head -n 8 "$pktfile1" tail -n 9 "$pktfile1" run ffprobe${PROGSUF} -bitexact -select_streams a -of compact -count_frames -show_entries frame=pkt_pts,pkt_dts,best_effort_timestamp,pkt_duration,nb_samples:stream=nb_read_frames -v 0 "$filename" "$@" > "$framefile1" |