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
828af6fe
Commit
828af6fe
authored
Jul 14, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
androidsurface: remove useless member
parent
ffcfa6da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
11 deletions
+2
-11
modules/video_output/androidsurface.c
modules/video_output/androidsurface.c
+2
-11
No files found.
modules/video_output/androidsurface.c
View file @
828af6fe
...
@@ -108,8 +108,6 @@ struct vout_display_sys_t {
...
@@ -108,8 +108,6 @@ struct vout_display_sys_t {
Surface_lock2
s_lock2
;
Surface_lock2
s_lock2
;
Surface_unlockAndPost
s_unlockAndPost
;
Surface_unlockAndPost
s_unlockAndPost
;
picture_resource_t
resource
;
/* density */
/* density */
int
i_sar_num
;
int
i_sar_num
;
int
i_sar_den
;
int
i_sar_den
;
...
@@ -229,15 +227,8 @@ static int Open(vlc_object_t *p_this)
...
@@ -229,15 +227,8 @@ static int Open(vlc_object_t *p_this)
goto
enomem
;
goto
enomem
;
picsys
->
sys
=
sys
;
picsys
->
sys
=
sys
;
picture_resource_t
*
rsc
=
&
sys
->
resource
;
picture_resource_t
resource
=
{
.
p_sys
=
picsys
};
rsc
->
p_sys
=
picsys
;
picture_t
*
picture
=
picture_NewFromResource
(
&
fmt
,
&
resource
);
for
(
int
i
=
0
;
i
<
PICTURE_PLANE_MAX
;
i
++
)
{
rsc
->
p
[
i
].
p_pixels
=
NULL
;
rsc
->
p
[
i
].
i_pitch
=
0
;
rsc
->
p
[
i
].
i_lines
=
0
;
}
picture_t
*
picture
=
picture_NewFromResource
(
&
fmt
,
rsc
);
if
(
!
picture
)
{
if
(
!
picture
)
{
free
(
picsys
);
free
(
picsys
);
goto
enomem
;
goto
enomem
;
...
...
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