diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 05:14:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 05:14:18 +0200 |
commit | 92be540636e1968fc83c412a62f82febf8fb9380 (patch) | |
tree | 70cf7e61f9d78bdcead5bdb149472420b2cd92a5 | |
parent | e85bc9df87a1b308b259f856325fcbe73d7a40cc (diff) | |
download | ffmpeg-92be540636e1968fc83c412a62f82febf8fb9380.tar.gz |
avcodec/h264_parser: remove redundant assignment
Found-by: CSA
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/h264_parser.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/h264_parser.c b/libavcodec/h264_parser.c index a075bfa987..e8243a23f6 100644 --- a/libavcodec/h264_parser.c +++ b/libavcodec/h264_parser.c @@ -99,7 +99,6 @@ static int h264_find_frame_end(H264Context *h, const uint8_t *buf, init_get_bits(&gb, h->parse_history, 8*h->parse_history_count); h->parse_history_count=0; mb= get_ue_golomb_long(&gb); - last_mb= h->parse_last_mb; h->parse_last_mb= mb; if (pc->frame_start_found) { if (mb <= last_mb) |