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
bcc5917f
Commit
bcc5917f
authored
Jul 09, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remoteosd: remove unused variable
parent
0151e3ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
5 deletions
+1
-5
modules/video_filter/remoteosd.c
modules/video_filter/remoteosd.c
+1
-5
No files found.
modules/video_filter/remoteosd.c
View file @
bcc5917f
...
@@ -221,7 +221,6 @@ struct filter_sys_t
...
@@ -221,7 +221,6 @@ struct filter_sys_t
uint16_t
i_vnc_width
;
/* The with of the VNC screen */
uint16_t
i_vnc_width
;
/* The with of the VNC screen */
uint16_t
i_vnc_height
;
/* The height of the VNC screen */
uint16_t
i_vnc_height
;
/* The height of the VNC screen */
uint32_t
i_vnc_pixels
;
/* The pixels of the VNC screen */
bool
b_alpha_from_vnc
;
/* Special ffnetdev alpha feature enabled ? */
bool
b_alpha_from_vnc
;
/* Special ffnetdev alpha feature enabled ? */
...
@@ -657,14 +656,11 @@ static void* vnc_worker_thread( void *obj )
...
@@ -657,14 +656,11 @@ static void* vnc_worker_thread( void *obj )
vlc_mutex_lock
(
&
p_sys
->
lock
);
vlc_mutex_lock
(
&
p_sys
->
lock
);
p_sys
->
p_pic
=
picture_New
(
VLC_CODEC_YUVA
,
p_sys
->
p_pic
=
picture_New
(
VLC_CODEC_YUVA
,
p_sys
->
i_vnc_width
,
p_sys
->
i_vnc_height
,
1
,
1
);
p_sys
->
i_vnc_width
,
p_sys
->
i_vnc_height
,
1
,
1
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
if
(
!
p_sys
->
p_pic
)
if
(
!
p_sys
->
p_pic
)
{
{
vlc_mutex_unlock
(
&
p_sys
->
lock
);
goto
exit
;
goto
exit
;
}
}
p_sys
->
i_vnc_pixels
=
p_sys
->
i_vnc_width
*
p_sys
->
i_vnc_height
;
vlc_mutex_unlock
(
&
p_sys
->
lock
);
write_update_request
(
p_filter
,
false
);
write_update_request
(
p_filter
,
false
);
...
...
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