Commit 3875af84 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avformat/mpeg: Remove unnecessary av_packet_unref()

Forgotten in 6a67d518.
Reviewed-by: 's avatarAnton Khirnov <anton@khirnov.net>
Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
parent d643bd49
...@@ -961,7 +961,7 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -961,7 +961,7 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt)
if (ret < 0) { if (ret < 0) {
if (pkt->size) // raise packet even if incomplete if (pkt->size) // raise packet even if incomplete
break; break;
goto fail; return ret;
} }
to_read = ret & 0xffff; to_read = ret & 0xffff;
new_pos = avio_tell(pb); new_pos = avio_tell(pb);
...@@ -978,7 +978,7 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -978,7 +978,7 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt)
ret = av_grow_packet(pkt, to_read); ret = av_grow_packet(pkt, to_read);
if (ret < 0) if (ret < 0)
goto fail; return ret;
n = avio_read(pb, pkt->data + (pkt->size - to_read), to_read); n = avio_read(pb, pkt->data + (pkt->size - to_read), to_read);
if (n < to_read) if (n < to_read)
...@@ -986,10 +986,6 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt) ...@@ -986,10 +986,6 @@ static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt)
} while (total_read < psize); } while (total_read < psize);
return 0; return 0;
fail:
av_packet_unref(pkt);
return ret;
} }
static int vobsub_read_seek(AVFormatContext *s, int stream_index, static int vobsub_read_seek(AVFormatContext *s, int stream_index,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment