summaryrefslogtreecommitdiff
path: root/libavformat/pva.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-07-03 22:14:42 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2018-07-05 19:52:42 +0200
commit9807d3976be0e92e4ece3b4b1701be894cd7c2e1 (patch)
tree8bb509cb7106d2ac5bcc9f2ba7761fc54ac04e2e /libavformat/pva.c
parenta7e032a277452366771951e29fd0bf2bd5c029f0 (diff)
downloadffmpeg-9807d3976be0e92e4ece3b4b1701be894cd7c2e1.tar.gz
avformat/pva: Check for EOF before retrying in read_part_of_packet()
Fixes: Infinite loop Fixes: pva-4b1835dbc2027bf3c567005dcc78e85199240d06 Found-by: Paul Ch <paulcher@icloud.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/pva.c')
-rw-r--r--libavformat/pva.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/pva.c b/libavformat/pva.c
index 16381db905..04ae8e2800 100644
--- a/libavformat/pva.c
+++ b/libavformat/pva.c
@@ -134,6 +134,10 @@ recover:
pes_flags = avio_rb16(pb);
pes_header_data_length = avio_r8(pb);
+ if (avio_feof(pb)) {
+ return AVERROR_EOF;
+ }
+
if (pes_signal != 1 || pes_header_data_length == 0) {
pva_log(s, AV_LOG_WARNING, "expected non empty signaled PES packet, "
"trying to recover\n");