Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
8df18e2d
Commit
8df18e2d
authored
Oct 19, 2009
by
Rémi Denis-Courmont
Browse files
XCB-XV: avoid slow packed YUV on OMAP adaptors
parent
7b7a390b
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/video_output/xcb/xvideo.c
View file @
8df18e2d
...
...
@@ -376,6 +376,16 @@ static int Open (vlc_object_t *obj)
for
(
size_t
i
=
0
;
chromas
[
i
]
&&
(
xfmt
==
NULL
);
i
++
)
{
chroma
=
chromas
[
i
];
/* Oink oink! */
if
((
chroma
==
VLC_CODEC_I420
||
chroma
==
VLC_CODEC_YV12
)
&&
a
->
name_size
>=
4
&&
!
memcmp
(
"OMAP"
,
xcb_xv_adaptor_info_name
(
a
),
4
))
{
msg_Dbg
(
vd
,
"skipping slow I420 format"
);
continue
;
/* OMAP framebuffer sucks at YUV 4:2:0 */
}
xfmt
=
FindFormat
(
vd
,
chroma
,
&
fmt
,
a
->
base_id
,
r
,
&
p_sys
->
att
);
}
...
...
Write
Preview
Supports
Markdown
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