Commit 8d7d8813 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mpeg: Avoid dead assignment

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e172f5e5
......@@ -210,7 +210,7 @@ static long mpegps_psm_parse(MpegDemuxContext *m, AVIOContext *pb)
/* skip program_stream_info */
avio_skip(pb, ps_info_length);
es_map_length = avio_rb16(pb);
/*es_map_length = */avio_rb16(pb);
/* Ignore es_map_length, trust psm_length */
es_map_length = psm_length - ps_info_length - 10;
......
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