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
8b69f37b
Commit
8b69f37b
authored
Oct 21, 2011
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
swscale/avcodec: Add I422 9-bit chroma pix_fmt
parent
639eca0e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
modules/codec/avcodec/chroma.c
modules/codec/avcodec/chroma.c
+4
-1
No files found.
modules/codec/avcodec/chroma.c
View file @
8b69f37b
...
...
@@ -89,8 +89,11 @@ static const struct
{
VLC_CODEC_I420_10L
,
PIX_FMT_YUV420P10LE
,
0
,
0
,
0
},
{
VLC_CODEC_I420_10B
,
PIX_FMT_YUV420P10BE
,
0
,
0
,
0
},
#endif
#if LIBAVUTIL_VERSION_INT > ((51<<16)+(12<<8)+0)
{
VLC_CODEC_I422_9L
,
PIX_FMT_YUV422P9LE
,
0
,
0
,
0
},
{
VLC_CODEC_I422_9B
,
PIX_FMT_YUV422P9BE
,
0
,
0
,
0
},
#endif
#if LIBAVUTIL_VERSION_INT >= ((51<<16)+(9<<8)+0)
/* I422 9-bit seems missing */
{
VLC_CODEC_I422_10L
,
PIX_FMT_YUV422P10LE
,
0
,
0
,
0
},
{
VLC_CODEC_I422_10B
,
PIX_FMT_YUV422P10BE
,
0
,
0
,
0
},
...
...
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