Browse Source

avformat/matroskadec: remove unused variable

Signed-off-by: James Almer <jamrial@gmail.com>
tags/n3.3
James Almer 8 years ago
parent
commit
120471da2d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/matroskadec.c

+ 1
- 1
libavformat/matroskadec.c View File

@@ -3429,7 +3429,7 @@ static int matroska_read_seek(AVFormatContext *s, int stream_index,
MatroskaDemuxContext *matroska = s->priv_data;
MatroskaTrack *tracks = NULL;
AVStream *st = s->streams[stream_index];
int i, index, index_sub, index_min;
int i, index, index_min;

/* Parse the CUES now since we need the index data to seek. */
if (matroska->cues_parsing_deferred > 0) {


Loading…
Cancel
Save