diff options
author | James Almer <jamrial@gmail.com> | 2015-07-19 17:47:01 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2015-07-19 17:47:28 -0300 |
commit | 2db8c42ddc58a2ee7d2bb6dedab927422de35f09 (patch) | |
tree | 39b48e21c99d53b76963be8a00984a9b1f51a185 /libavformat/mp3dec.c | |
parent | a8fbb7b62597d346161b02c822bd851274d83527 (diff) | |
download | ffmpeg-2db8c42ddc58a2ee7d2bb6dedab927422de35f09.tar.gz |
avformat/mp3dec: remove unused variable
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/mp3dec.c')
-rw-r--r-- | libavformat/mp3dec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c index 34692bae79..266f17cac7 100644 --- a/libavformat/mp3dec.c +++ b/libavformat/mp3dec.c @@ -489,7 +489,6 @@ static int mp3_seek(AVFormatContext *s, int stream_index, int64_t timestamp, AVStream *st = s->streams[0]; int64_t ret = av_index_search_timestamp(st, timestamp, flags); int64_t best_pos; - int i; if (mp3->usetoc == 2) return -1; // generic index code |