mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
avcodec/hevc: Simplify entry_point_offset parsing
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
1c6ae98d4a
commit
6679d5f29a
@ -717,8 +717,6 @@ static int hls_slice_header(HEVCContext *s)
|
||||
sh->num_entry_point_offsets = num_entry_point_offsets;
|
||||
if (sh->num_entry_point_offsets > 0) {
|
||||
int offset_len = get_ue_golomb_long(gb) + 1;
|
||||
int segments = offset_len >> 4;
|
||||
int rest = (offset_len & 15);
|
||||
|
||||
if (offset_len < 1 || offset_len > 32) {
|
||||
sh->num_entry_point_offsets = 0;
|
||||
@ -738,15 +736,7 @@ static int hls_slice_header(HEVCContext *s)
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
for (i = 0; i < sh->num_entry_point_offsets; i++) {
|
||||
int val = 0;
|
||||
for (j = 0; j < segments; j++) {
|
||||
val <<= 16;
|
||||
val += get_bits(gb, 16);
|
||||
}
|
||||
if (rest) {
|
||||
val <<= rest;
|
||||
val += get_bits(gb, rest);
|
||||
}
|
||||
unsigned val = get_bits_long(gb, offset_len);
|
||||
sh->entry_point_offset[i] = val + 1; // +1; // +1 to get the size
|
||||
}
|
||||
if (s->threads_number > 1 && (s->pps->num_tile_rows > 1 || s->pps->num_tile_columns > 1)) {
|
||||
|
Loading…
Reference in New Issue
Block a user