Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
83a8d4b0
Commit
83a8d4b0
authored
Aug 19, 2008
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: Add some more chroma fourcc's to the ffmpeg chroma table (NV12, NV21, Y411, I440, J440)
parent
9d04b2b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
modules/codec/avcodec/chroma.h
modules/codec/avcodec/chroma.h
+7
-0
No files found.
modules/codec/avcodec/chroma.h
View file @
83a8d4b0
...
...
@@ -45,6 +45,9 @@ static const struct
/* Planar YUV formats */
VLC_FF
(
(
'I'
,
'4'
,
'4'
,
'4'
),
PIX_FMT_YUV444P
),
VLC_FF
(
(
'J'
,
'4'
,
'4'
,
'4'
),
PIX_FMT_YUVJ444P
),
VLC_FF
(
(
'J'
,
'4'
,
'4'
,
'0'
),
PIX_FMT_YUV440P
),
VLC_FF
(
(
'J'
,
'4'
,
'4'
,
'0'
),
PIX_FMT_YUVJ440P
),
VLC_FF
(
(
'I'
,
'4'
,
'2'
,
'2'
),
PIX_FMT_YUV422P
),
VLC_FF
(
(
'J'
,
'4'
,
'2'
,
'2'
),
PIX_FMT_YUVJ422P
),
...
...
@@ -56,11 +59,15 @@ static const struct
VLC_FF
(
(
'I'
,
'4'
,
'1'
,
'1'
),
PIX_FMT_YUV411P
),
VLC_FF
(
(
'I'
,
'4'
,
'1'
,
'0'
),
PIX_FMT_YUV410P
),
VLC_FF
(
(
'Y'
,
'V'
,
'U'
,
'9'
),
PIX_FMT_YUV410P
),
VLC_FF
(
(
'N'
,
'V'
,
'1'
,
'2'
),
PIX_FMT_NV12
),
VLC_FF
(
(
'N'
,
'V'
,
'2'
,
'1'
),
PIX_FMT_NV21
),
/* Packed YUV formats */
VLC_FF
(
(
'Y'
,
'U'
,
'Y'
,
'2'
),
PIX_FMT_YUV422
),
VLC_FF
(
(
'Y'
,
'U'
,
'Y'
,
'V'
),
PIX_FMT_YUV422
),
VLC_FF
(
(
'U'
,
'Y'
,
'V'
,
'Y'
),
PIX_FMT_UYVY422
),
VLC_FF
(
(
'Y'
,
'4'
,
'1'
,
'1'
),
PIX_FMT_UYYVYY411
),
/* Packed RGB formats */
VLC_FF_RGB_DEFAULT
(
(
'R'
,
'G'
,
'B'
,
'8'
),
PIX_FMT_RGB8
,
PIX_FMT_BGR8
),
...
...
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