Commit 66af2a01 authored by Benoit Fouet's avatar Benoit Fouet Committed by Michael Niedermayer

h264: remove useless assignment.

source index, as well as dest one, is unconditionnaly set afterwards,
before being effectively used.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7db3a46a
......@@ -296,7 +296,6 @@ const uint8_t *ff_h264_decode_nal(H264Context *h, const uint8_t *src,
// use second escape buffer for inter data
bufidx = h->nal_unit_type == NAL_DPC ? 1 : 0;
si = h->rbsp_buffer_size[bufidx];
av_fast_padded_malloc(&h->rbsp_buffer[bufidx], &h->rbsp_buffer_size[bufidx], length+MAX_MBPAIR_SIZE);
dst = h->rbsp_buffer[bufidx];
......
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