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
8df18e2d
Commit
8df18e2d
authored
Oct 19, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XCB-XV: avoid slow packed YUV on OMAP adaptors
parent
7b7a390b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
modules/video_output/xcb/xvideo.c
modules/video_output/xcb/xvideo.c
+10
-0
No files found.
modules/video_output/xcb/xvideo.c
View file @
8df18e2d
...
@@ -376,6 +376,16 @@ static int Open (vlc_object_t *obj)
...
@@ -376,6 +376,16 @@ static int Open (vlc_object_t *obj)
for
(
size_t
i
=
0
;
chromas
[
i
]
&&
(
xfmt
==
NULL
);
i
++
)
for
(
size_t
i
=
0
;
chromas
[
i
]
&&
(
xfmt
==
NULL
);
i
++
)
{
{
chroma
=
chromas
[
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
);
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