summaryrefslogtreecommitdiff
path: root/libavformat/mpeg.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-03-21 21:08:04 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>2020-03-26 21:04:17 +0100
commit3875af84ed6f6c803aca961fc78400bcda021d44 (patch)
tree845f61c0ee9a9b313775e7019454224e342352ea /libavformat/mpeg.c
parentd643bd496089612390f47bda61478fca4e2fe906 (diff)
avformat/mpeg: Remove unnecessary av_packet_unref()
Forgotten in 6a67d518. Reviewed-by: Anton Khirnov <anton@khirnov.net> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Diffstat (limited to 'libavformat/mpeg.c')
-rw-r--r--libavformat/mpeg.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c
index fad7c7fd55..eba5852266 100644
--- a/libavformat/mpeg.c
+++ b/libavformat/mpeg.c
@@ -961,7 +961,7 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt)
if (ret < 0) {
if (pkt->size) // raise packet even if incomplete
break;
- goto fail;
+ return ret;
}
to_read = ret & 0xffff;
new_pos = avio_tell(pb);
@@ -978,7 +978,7 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt)
ret = av_grow_packet(pkt, to_read);
if (ret < 0)
- goto fail;
+ return ret;
n = avio_read(pb, pkt->data + (pkt->size - to_read), to_read);
if (n < to_read)
@@ -986,10 +986,6 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt)
} while (total_read < psize);
return 0;
-
-fail:
- av_packet_unref(pkt);
- return ret;
}
static int vobsub_read_seek(AVFormatContext *s, int stream_index,