]> git.sesse.net Git - ffmpeg/commitdiff
avformat/mpeg: Remove set-but-unused variable
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Tue, 8 Oct 2019 05:41:13 +0000 (07:41 +0200)
committerPaul B Mahol <onemda@gmail.com>
Tue, 8 Oct 2019 08:41:43 +0000 (10:41 +0200)
Forgotten in 7da57875.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavformat/mpeg.c

index 6f132aae0558fd44f5afeba18c279d98fed65337..bd182e4429690a5146654e493ed809bbdd591dae 100644 (file)
@@ -489,7 +489,6 @@ static int mpegps_read_packet(AVFormatContext *s,
     MpegDemuxContext *m = s->priv_data;
     AVStream *st;
     int len, startcode, i, es_type, ret;
-    int lpcm_header_len = -1; //Init to suppress warning
     int pcm_dvd = 0;
     int request_probe= 0;
     enum AVCodecID codec_id = AV_CODEC_ID_NONE;
@@ -507,8 +506,7 @@ redo:
 
         if (!m->raw_ac3) {
             /* audio: skip header */
-            avio_r8(s->pb);
-            lpcm_header_len = avio_rb16(s->pb);
+            avio_skip(s->pb, 3);
             len -= 3;
             if (startcode >= 0xb0 && startcode <= 0xbf) {
                 /* MLP/TrueHD audio has a 4-byte header */