Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
fdd089dd
Commit
fdd089dd
authored
Dec 15, 2017
by
François Cartegnie
🤞
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
packetizer: hevc: fix max_num_reorder
parent
f9984272
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/packetizer/hevc_nal.c
modules/packetizer/hevc_nal.c
+1
-1
No files found.
modules/packetizer/hevc_nal.c
View file @
fdd089dd
...
...
@@ -1059,7 +1059,7 @@ bool hevc_get_picture_size( const hevc_sequence_parameter_set_t *p_sps,
uint8_t
hevc_get_max_num_reorder
(
const
hevc_video_parameter_set_t
*
p_vps
)
{
return
p_vps
->
vps_max
[
0
/* base layer
*/
].
num_reorder_pics
;
return
p_vps
->
vps_max
[
p_vps
->
vps_max_sub_layers_minus1
/* HighestTid
*/
].
num_reorder_pics
;
}
static
inline
uint8_t
vlc_ceil_log2
(
uint32_t
val
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment