mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
h264: do not abuse the context as a temporary storage in get_last_needed_nal()
Use a local variable instead.
This commit is contained in:
parent
404a416d4b
commit
2ea00e35e4
@ -1372,6 +1372,7 @@ static int get_last_needed_nal(H264Context *h, const uint8_t *buf, int buf_size)
|
||||
int nals_needed = 0;
|
||||
|
||||
while(1) {
|
||||
GetBitContext gb;
|
||||
int nalsize = 0;
|
||||
int dst_length, bit_length, consumed;
|
||||
const uint8_t *ptr;
|
||||
@ -1411,8 +1412,8 @@ static int get_last_needed_nal(H264Context *h, const uint8_t *buf, int buf_size)
|
||||
case NAL_DPA:
|
||||
case NAL_IDR_SLICE:
|
||||
case NAL_SLICE:
|
||||
init_get_bits(&h->gb, ptr, bit_length);
|
||||
if (!get_ue_golomb(&h->gb))
|
||||
init_get_bits(&gb, ptr, bit_length);
|
||||
if (!get_ue_golomb(&gb))
|
||||
nals_needed = nal_index;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user