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
8cc28d2b
Commit
8cc28d2b
authored
Feb 18, 2014
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Blend: allow YUV 4:4:4 16bit
This is notably needed for old vouts like Xv and DDraw
parent
f95c3a0b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
modules/video_filter/blend.cpp
modules/video_filter/blend.cpp
+3
-0
No files found.
modules/video_filter/blend.cpp
View file @
8cc28d2b
...
...
@@ -425,6 +425,7 @@ struct convertBits {
};
typedef
convertBits
<
9
,
8
>
convert8To9Bits
;
typedef
convertBits
<
10
,
8
>
convert8To10Bits
;
typedef
convertBits
<
16
,
8
>
convert8To16Bits
;
struct
convertRgbToYuv8
{
convertRgbToYuv8
(
const
video_format_t
*
,
const
video_format_t
*
)
{}
...
...
@@ -598,9 +599,11 @@ static const struct {
#ifdef WORDS_BIGENDIAN
YUV
(
VLC_CODEC_I444_9B
,
CPictureI444_16
,
convert8To9Bits
),
YUV
(
VLC_CODEC_I444_10B
,
CPictureI444_16
,
convert8To10Bits
),
YUV
(
VLC_CODEC_I444_16B
,
CPictureI444_16
,
convert8To16Bits
),
#else
YUV
(
VLC_CODEC_I444_9L
,
CPictureI444_16
,
convert8To9Bits
),
YUV
(
VLC_CODEC_I444_10L
,
CPictureI444_16
,
convert8To10Bits
),
YUV
(
VLC_CODEC_I444_16L
,
CPictureI444_16
,
convert8To16Bits
),
#endif
YUV
(
VLC_CODEC_YUYV
,
CPictureYUYV
,
convertNone
),
...
...
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