Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
24a2edf5
Commit
24a2edf5
authored
Aug 25, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Declare NV21, NV16 and NV61 chromas
parent
ab625e9f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
include/vlc_fourcc.h
include/vlc_fourcc.h
+7
-1
src/misc/fourcc.c
src/misc/fourcc.c
+7
-1
No files found.
include/vlc_fourcc.h
View file @
24a2edf5
...
...
@@ -202,8 +202,14 @@
#define VLC_CODEC_CYUV VLC_FOURCC('c','y','u','v')
/* 10-bit 4:2:2 Component YCbCr */
#define VLC_CODEC_V210 VLC_FOURCC('v','2','1','0')
/*
Planar Y Packet UV (420)
*/
/*
2 planes Y/UV 4:2:0
*/
#define VLC_CODEC_NV12 VLC_FOURCC('N','V','1','2')
/* 2 planes Y/VU 4:2:0 */
#define VLC_CODEC_NV21 VLC_FOURCC('N','V','2','1')
/* 2 planes Y/UV 4:2:2 */
#define VLC_CODEC_NV16 VLC_FOURCC('N','V','1','6')
/* 2 planes Y/VU 4:2:2 */
#define VLC_CODEC_NV61 VLC_FOURCC('N','V','6','1')
/* Image codec (video) */
#define VLC_CODEC_PNG VLC_FOURCC('p','n','g',' ')
...
...
src/misc/fourcc.c
View file @
24a2edf5
...
...
@@ -730,8 +730,14 @@ static const entry_t p_list_video[] = {
B
(
VLC_CODEC_V210
,
"10-bit 4:2:2 Component YCbCr"
),
A
(
"v210"
),
B
(
VLC_CODEC_NV12
,
"
Planar Y, Packet UV (420)
"
),
B
(
VLC_CODEC_NV12
,
"
Biplanar 4:2:0 Y/UV
"
),
A
(
"NV12"
),
B
(
VLC_CODEC_NV21
,
"Biplanar 4:2:0 Y/VU"
),
A
(
"NV21"
),
B
(
VLC_CODEC_NV16
,
"Biplanar 4:2:2 Y/UV"
),
A
(
"NV16"
),
B
(
VLC_CODEC_NV61
,
"Biplanar 4:2:2 Y/VU"
),
A
(
"NV61"
),
B
(
VLC_CODEC_I420_9L
,
"Planar 4:2:0 YUV 9-bit LE"
),
A
(
"I09L"
),
...
...
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