Commit 92be5406 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/h264_parser: remove redundant assignment

Found-by: CSA
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e85bc9df
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment