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
440
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
c254ee46
Commit
c254ee46
authored
1 year ago
by
Steve Lhomme
Browse files
Options
Downloads
Patches
Plain Diff
packetizers: allow inclusion HXXX NAL helpers from C++ code
parent
4f02040a
No related branches found
No related tags found
1 merge request
!3339
packetizers: allow inclusion HXXX NAL helpers from C++ code
Pipeline
#318120
passed with stage
in 14 minutes and 37 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/packetizer/h264_nal.h
+8
-0
8 additions, 0 deletions
modules/packetizer/h264_nal.h
modules/packetizer/hevc_nal.h
+8
-0
8 additions, 0 deletions
modules/packetizer/hevc_nal.h
with
16 additions
and
0 deletions
modules/packetizer/h264_nal.h
+
8
−
0
View file @
c254ee46
...
...
@@ -24,6 +24,10 @@
# include <vlc_es.h>
# include <vlc_bits.h>
#ifdef __cplusplus
extern
"C"
{
#endif
#define PROFILE_H264_BASELINE 66
#define PROFILE_H264_MAIN 77
#define PROFILE_H264_EXTENDED 88
...
...
@@ -222,4 +226,8 @@ typedef struct
bool
h264_decode_sei_recovery_point
(
bs_t
*
,
h264_sei_recovery_point_t
*
);
#ifdef __cplusplus
}
#endif
#endif
/* H264_NAL_H */
This diff is collapsed.
Click to expand it.
modules/packetizer/hevc_nal.h
+
8
−
0
View file @
c254ee46
...
...
@@ -23,6 +23,10 @@
# include <vlc_es.h>
# include <vlc_bits.h>
#ifdef __cplusplus
extern
"C"
{
#endif
#define HEVC_VPS_ID_MAX 15
#define HEVC_SPS_ID_MAX 15
#define HEVC_PPS_ID_MAX 63
...
...
@@ -387,4 +391,8 @@ uint8_t hevc_get_num_clock_ts( const hevc_sequence_parameter_set_t *,
bool
hevc_frame_is_progressive
(
const
hevc_sequence_parameter_set_t
*
,
const
hevc_sei_pic_timing_t
*
/* can be NULL */
);
#ifdef __cplusplus
}
#endif
#endif
/* HEVC_NAL_H */
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