1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avformat/mpl2dec: Avoid variable that is always zero

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
This commit is contained in:
Andreas Rheinhardt
2020-06-14 21:27:00 +02:00
parent 7256c363a0
commit dc4af87d2f

View File

@@ -83,7 +83,6 @@ static int mpl2_read_header(AVFormatContext *s)
{ {
MPL2Context *mpl2 = s->priv_data; MPL2Context *mpl2 = s->priv_data;
AVStream *st = avformat_new_stream(s, NULL); AVStream *st = avformat_new_stream(s, NULL);
int res = 0;
if (!st) if (!st)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
@@ -122,7 +121,7 @@ static int mpl2_read_header(AVFormatContext *s)
} }
ff_subtitles_queue_finalize(s, &mpl2->q); ff_subtitles_queue_finalize(s, &mpl2->q);
return res; return 0;
} }
static int mpl2_read_packet(AVFormatContext *s, AVPacket *pkt) static int mpl2_read_packet(AVFormatContext *s, AVPacket *pkt)