diff options
author | Paul B Mahol <onemda@gmail.com> | 2012-03-22 03:36:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-22 13:23:08 +0100 |
commit | f2b91bd63ad3549ed89b8bfb96cc4a3448c0c0da (patch) | |
tree | 57f91c0d8d2ebd58e5d8ca151771ae7009d6d465 | |
parent | f5463d5347bd2b3d5630a512dbc7139ccec40ac5 (diff) | |
download | ffmpeg-f2b91bd63ad3549ed89b8bfb96cc4a3448c0c0da.tar.gz |
latm_parser: remove dead store
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/latm_parser.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/latm_parser.c b/libavcodec/latm_parser.c index 6cf45c89a8..92cb7031ec 100644 --- a/libavcodec/latm_parser.c +++ b/libavcodec/latm_parser.c @@ -50,7 +50,6 @@ static int latm_find_frame_end(AVCodecParserContext *s1, const uint8_t *buf, pic_found = pc->frame_start_found; state = pc->state; - i = 0; if (!pic_found) { for (i = 0; i < buf_size; i++) { state = (state<<8) | buf[i]; |