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
e59b5819
Commit
e59b5819
authored
Oct 25, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add YUVA 444 10bits FourCC
parent
fe2a7b49
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
include/vlc_fourcc.h
include/vlc_fourcc.h
+4
-0
src/misc/fourcc.c
src/misc/fourcc.c
+4
-0
No files found.
include/vlc_fourcc.h
View file @
e59b5819
...
...
@@ -240,6 +240,10 @@
/* Planar YUV 4:2:0 Y:U:V:A */
#define VLC_CODEC_YUV420A VLC_FOURCC('I','4','0','A')
/* Planar Y:U:V:A 4:4:4 10bits */
#define VLC_CODEC_YUVA_444_10L VLC_FOURCC('Y','A','0','L')
#define VLC_CODEC_YUVA_444_10B VLC_FOURCC('Y','A','0','B')
/* Semi-planar Y/UV */
/* 2 planes Y/UV 4:2:0 */
...
...
src/misc/fourcc.c
View file @
e59b5819
...
...
@@ -792,6 +792,8 @@ static const staticentry_t p_list_video[] = {
A
(
"I40A"
),
B
(
VLC_CODEC_YUV422A
,
"Planar YUV 4:2:2 Y:U:V:A"
),
A
(
"I42A"
),
B
(
VLC_CODEC_YUVA_444_10L
,
"Planar YUV 4:4:4 Y:U:V:A 10bits"
),
A
(
"YUVA"
),
B
(
VLC_CODEC_RGBP
,
"Palettized RGB with palette element R:G:B"
),
A
(
"RGBP"
),
...
...
@@ -2146,6 +2148,8 @@ static const struct
VLC_CODEC_I444_9B
},
PLANAR_16
(
3
,
1
,
1
,
9
)
},
{
{
VLC_CODEC_I444_16L
,
VLC_CODEC_I444_16B
},
PLANAR_16
(
3
,
1
,
1
,
16
)
},
{
{
VLC_CODEC_YUVA_444_10L
,
VLC_CODEC_YUVA_444_10B
},
PLANAR_16
(
4
,
1
,
1
,
10
)
},
{
{
VLC_CODEC_YUV_PACKED
},
PACKED_FMT
(
2
,
16
)
},
{
{
VLC_CODEC_RGB8
,
VLC_CODEC_GREY
,
...
...
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