Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
457
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
26cfb659
Commit
26cfb659
authored
9 years ago
by
François Cartegnie
Browse files
Options
Downloads
Patches
Plain Diff
demux: hevc: only compute dts on new base layer VCL
parent
619d1d9d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/demux/mpeg/hevc.c
+3
-1
3 additions, 1 deletion
modules/demux/mpeg/hevc.c
modules/packetizer/hevc_nal.h
+5
-0
5 additions, 0 deletions
modules/packetizer/hevc_nal.h
with
8 additions
and
1 deletion
modules/demux/mpeg/hevc.c
+
3
−
1
View file @
26cfb659
...
...
@@ -201,6 +201,7 @@ static int Demux( demux_t *p_demux)
p_block_out
->
i_pts
=
VLC_TS_INVALID
;
uint8_t
nal_type
=
(
p_block_out
->
p_buffer
[
4
]
&
0x7E
)
>>
1
;
uint8_t
nal_layer
=
hevc_getNALLayer
(
&
p_block_out
->
p_buffer
[
4
]);
/*Get fps from vps if available and not already forced*/
if
(
p_sys
->
frame_rate_den
==
0
&&
...
...
@@ -219,7 +220,8 @@ static int Demux( demux_t *p_demux)
}
/* Update DTS only on VCL NAL*/
if
(
nal_type
<
HEVC_NAL_VPS
&&
p_sys
->
frame_rate_den
)
if
(
nal_type
<
HEVC_NAL_VPS
&&
p_sys
->
frame_rate_den
&&
nal_layer
==
0
)
/* Only on base layer */
{
es_out_Control
(
p_demux
->
out
,
ES_OUT_SET_PCR
,
p_block_out
->
i_dts
);
date_Increment
(
&
p_sys
->
dts
,
1
);
...
...
This diff is collapsed.
Click to expand it.
modules/packetizer/hevc_nal.h
+
5
−
0
View file @
26cfb659
...
...
@@ -135,6 +135,11 @@ static inline bool hevc_ishvcC( const uint8_t *p_buf, size_t i_buf )
);
}
static
inline
uint8_t
hevc_getNALLayer
(
const
uint8_t
*
p_buf
)
{
return
((
p_buf
[
0
]
&
0x01
)
<<
6
)
|
(
p_buf
[
1
]
>>
3
);
}
/* NAL decoding */
typedef
struct
hevc_video_parameter_set_t
hevc_video_parameter_set_t
;
typedef
struct
hevc_sequence_parameter_set_t
hevc_sequence_parameter_set_t
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment