summaryrefslogtreecommitdiff
path: root/tests/fate-run.sh
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-07-14 12:48:10 -0300
committerJames Almer <jamrial@gmail.com>2021-08-07 10:16:07 -0300
commit44d5e12c8faa1c170ed9b6b0c9e18c7547572144 (patch)
treea67f96530f657a6425f95fd8608a3f9ca6e4611c /tests/fate-run.sh
parent6b11c12cf33b9761c3ac460737728228e86e9f04 (diff)
ffprobe: remove references to frame->pkt_pts
The field was removed during the last major bump. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-xtests/fate-run.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh
index ba437dfbb8..cd16f5fcff 100755
--- a/tests/fate-run.sh
+++ b/tests/fate-run.sh
@@ -120,7 +120,7 @@ probegaplessinfo(){
run ffprobe${PROGSUF}${EXECSUF} -bitexact -select_streams a -of compact -count_packets -show_entries packet=pts,dts,duration,flags:stream=nb_read_packets "$filename" "$@" > "$pktfile1"
head -n 8 "$pktfile1"
tail -n 9 "$pktfile1"
- run ffprobe${PROGSUF}${EXECSUF} -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 "$filename" "$@" > "$framefile1"
+ run ffprobe${PROGSUF}${EXECSUF} -bitexact -select_streams a -of compact -count_frames -show_entries frame=pts,pkt_dts,best_effort_timestamp,pkt_duration,nb_samples:stream=nb_read_frames "$filename" "$@" > "$framefile1"
head -n 8 "$framefile1"
tail -n 9 "$framefile1"
}