Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
d0369681
Commit
d0369681
authored
Dec 09, 2015
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hevc_nal: add profiles definitions
parent
be54040b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
modules/packetizer/hevc_nal.h
modules/packetizer/hevc_nal.h
+34
-0
No files found.
modules/packetizer/hevc_nal.h
View file @
d0369681
...
...
@@ -32,6 +32,40 @@
#define HEVC_SPS_MAX 16
#define HEVC_PPS_MAX 64
enum
hevc_general_profile_idc_e
{
HEVC_PROFILE_NONE
=
0
,
HEVC_PROFILE_MAIN
=
1
,
HEVC_PROFILE_MAIN_10
=
2
,
HEVC_PROFILE_MAIN_STILL_PICTURE
=
3
,
HEVC_PROFILE_REXT
=
4
,
/* range extensions */
};
enum
hevc_format_range_extension_profile_e
{
/* Values built from 9 bits mapping of the A-2 bitstream indications for conformance */
HEVC_EXT_PROFILE_MONOCHROME
=
0
b111111001
,
HEVC_EXT_PROFILE_MONOCHROME_12
=
0
b100111001
,
HEVC_EXT_PROFILE_MONOCHROME_16
=
0
b000111001
,
HEVC_EXT_PROFILE_MAIN_12
=
0
b100110001
,
HEVC_EXT_PROFILE_MAIN_422_10
=
0
b110100001
,
HEVC_EXT_PROFILE_MAIN_422_12
=
0
b100100001
,
HEVC_EXT_PROFILE_MAIN_444
=
0
b111000001
,
HEVC_EXT_PROFILE_MAIN_444_10
=
0
b110000001
,
HEVC_EXT_PROFILE_MAIN_444_12
=
0
b100000001
,
HEVC_EXT_PROFILE_MAIN_INTRA
=
0
b111110100
,
/* From this one, lowest bit is insignifiant */
HEVC_EXT_PROFILE_MAIN_10_INTRA
=
0
b110110100
,
HEVC_EXT_PROFILE_MAIN_12_INTRA
=
0
b100110100
,
HEVC_EXT_PROFILE_MAIN_422_10_INTRA
=
0
b110100100
,
HEVC_EXT_PROFILE_MAIN_422_12_INTRA
=
0
b100100100
,
HEVC_EXT_PROFILE_MAIN_444_INTRA
=
0
b111000100
,
HEVC_EXT_PROFILE_MAIN_444_10_INTRA
=
0
b110000100
,
HEVC_EXT_PROFILE_MAIN_444_12_INTRA
=
0
b100000100
,
HEVC_EXT_PROFILE_MAIN_444_16_INTRA
=
0
b000000100
,
HEVC_EXT_PROFILE_MAIN_444_STILL_PICTURE
=
0
b111000110
,
HEVC_EXT_PROFILE_MAIN_444_16_STILL_PICTURE
=
0
b000000110
,
};
/* NAL types from https://www.itu.int/rec/dologin_pub.asp?lang=e&id=T-REC-H.265-201304-I!!PDF-E&type=items */
enum
hevc_nal_unit_type_e
{
...
...
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