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
17e8ab51
Commit
17e8ab51
authored
Oct 14, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaning.
parent
dec93783
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
6 deletions
+3
-6
modules/video_output/opengl.c
modules/video_output/opengl.c
+3
-0
modules/video_output/opengllayer.m
modules/video_output/opengllayer.m
+0
-6
No files found.
modules/video_output/opengl.c
View file @
17e8ab51
...
...
@@ -272,7 +272,10 @@ static int CreateVout( vlc_object_t *p_this )
p_sys
->
p_vout
=
(
vout_thread_t
*
)
vlc_object_create
(
p_this
,
sizeof
(
vout_thread_t
)
);
if
(
p_sys
->
p_vout
==
NULL
)
{
free
(
p_sys
);
return
VLC_ENOMEM
;
}
vlc_object_attach
(
p_sys
->
p_vout
,
p_this
);
p_sys
->
p_vout
->
i_window_width
=
p_vout
->
i_window_width
;
...
...
modules/video_output/opengllayer.m
View file @
17e8ab51
...
...
@@ -142,10 +142,7 @@ static int CreateVout( vlc_object_t *p_this )
/* Allocate structure */
p_vout
->
p_sys
=
p_sys
=
calloc
(
sizeof
(
vout_sys_t
),
1
);
if
(
p_sys
==
NULL
)
{
msg_Err
(
p_vout
,
"out of memory"
);
return
VLC_EGENERIC
;
}
p_sys
->
i_tex_width
=
p_vout
->
fmt_in
.
i_width
;
p_sys
->
i_tex_height
=
p_vout
->
fmt_in
.
i_height
;
...
...
@@ -204,10 +201,7 @@ static int Init( vout_thread_t *p_vout )
p_sys
->
pp_buffer
[
i
]
=
malloc
(
p_sys
->
i_tex_width
*
p_sys
->
i_tex_height
*
i_pixel_pitch
);
if
(
!
p_sys
->
pp_buffer
[
i
]
)
{
msg_Err
(
p_vout
,
"out of memory"
);
return
VLC_EGENERIC
;
}
}
p_sys
->
b_frame_available
=
false
;
p_sys
->
i_index
=
0
;
...
...
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