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
400a9e94
Commit
400a9e94
authored
Jan 15, 2012
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed YV12 support in opengl video output.
U/V planes were swapped twice.
parent
f8fa7854
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
modules/video_output/opengl.c
modules/video_output/opengl.c
+4
-5
No files found.
modules/video_output/opengl.c
View file @
400a9e94
...
...
@@ -513,16 +513,15 @@ int vout_display_opengl_Prepare(vout_display_opengl_t *vgl,
/* Update the texture */
for
(
unsigned
j
=
0
;
j
<
vgl
->
chroma
->
plane_count
;
j
++
)
{
const
int
plane
=
vgl
->
fmt
.
i_chroma
==
VLC_CODEC_YV12
&&
j
>
0
?
(
3
-
j
)
:
j
;
if
(
vgl
->
use_multitexture
)
vgl
->
ActiveTextureARB
(
GL_TEXTURE0_ARB
+
j
);
glBindTexture
(
vgl
->
tex_target
,
vgl
->
texture
[
0
][
j
]);
glPixelStorei
(
GL_UNPACK_ROW_LENGTH
,
picture
->
p
[
plane
].
i_pitch
/
picture
->
p
[
plane
].
i_pixel_pitch
);
glPixelStorei
(
GL_UNPACK_ROW_LENGTH
,
picture
->
p
[
j
].
i_pitch
/
picture
->
p
[
j
].
i_pixel_pitch
);
glTexSubImage2D
(
vgl
->
tex_target
,
0
,
0
,
0
,
vgl
->
fmt
.
i_width
*
vgl
->
chroma
->
p
[
plane
].
w
.
num
/
vgl
->
chroma
->
p
[
plane
].
w
.
den
,
vgl
->
fmt
.
i_height
*
vgl
->
chroma
->
p
[
plane
].
h
.
num
/
vgl
->
chroma
->
p
[
plane
].
h
.
den
,
vgl
->
tex_format
,
vgl
->
tex_type
,
picture
->
p
[
plane
].
p_pixels
);
vgl
->
fmt
.
i_width
*
vgl
->
chroma
->
p
[
j
].
w
.
num
/
vgl
->
chroma
->
p
[
j
].
w
.
den
,
vgl
->
fmt
.
i_height
*
vgl
->
chroma
->
p
[
j
].
h
.
num
/
vgl
->
chroma
->
p
[
j
].
h
.
den
,
vgl
->
tex_format
,
vgl
->
tex_type
,
picture
->
p
[
j
].
p_pixels
);
}
int
last_count
=
vgl
->
region_count
;
...
...
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