Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
a298057c
Commit
a298057c
authored
Aug 09, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used YUV fallback list in xcb.
parent
15da764a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
modules/video_output/xcb/xvideo.c
modules/video_output/xcb/xvideo.c
+9
-3
No files found.
modules/video_output/xcb/xvideo.c
View file @
a298057c
...
...
@@ -346,14 +346,20 @@ static int Open (vlc_object_t *obj)
const
xcb_xv_image_format_info_t
*
xfmt
;
/*
Video chroma in preference order
*/
const
vlc_fourcc_t
chromas
[]
=
{
/* */
const
vlc_fourcc_t
chromas
_default
[]
=
{
fmt
.
i_chroma
,
VLC_CODEC_YUYV
,
VLC_CODEC_RGB24
,
VLC_CODEC_RGB15
,
0
};
for
(
size_t
i
=
0
;
i
<
sizeof
(
chromas
)
/
sizeof
(
chromas
[
0
]);
i
++
)
if
(
vlc_fourcc_IsYUV
(
fmt
.
i_chroma
))
chromas
=
vlc_fourcc_GetYUVFallback
(
fmt
.
i_chroma
);
else
chromas
=
chromas_default
;
for
(
size_t
i
=
0
;
chromas
[
i
];
i
++
)
{
vlc_fourcc_t
chroma
=
chromas
[
i
];
xfmt
=
FindFormat
(
vd
,
chroma
,
&
fmt
,
a
->
base_id
,
r
,
&
p_sys
->
att
);
...
...
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