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
18d4cb24
Commit
18d4cb24
authored
Oct 20, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remoteosd: remove unneded VLC_COMMON_MEMBERS.
parent
fd144552
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
modules/video_filter/remoteosd.c
modules/video_filter/remoteosd.c
+1
-4
No files found.
modules/video_filter/remoteosd.c
View file @
18d4cb24
...
@@ -202,8 +202,6 @@ static void vnc_encrypt_bytes( unsigned char *bytes, char *passwd );
...
@@ -202,8 +202,6 @@ static void vnc_encrypt_bytes( unsigned char *bytes, char *passwd );
*****************************************************************************/
*****************************************************************************/
struct
filter_sys_t
struct
filter_sys_t
{
{
VLC_COMMON_MEMBERS
bool
b_need_update
;
/* VNC picture is updated, do update the OSD*/
bool
b_need_update
;
/* VNC picture is updated, do update the OSD*/
mtime_t
i_vnc_poll_interval
;
/* Update the OSD menu every n ms */
mtime_t
i_vnc_poll_interval
;
/* Update the OSD menu every n ms */
...
@@ -253,10 +251,9 @@ static int CreateFilter ( vlc_object_t *p_this )
...
@@ -253,10 +251,9 @@ static int CreateFilter ( vlc_object_t *p_this )
msg_Dbg
(
p_filter
,
"Creating vnc osd filter..."
);
msg_Dbg
(
p_filter
,
"Creating vnc osd filter..."
);
p_filter
->
p_sys
=
p_sys
=
malloc
(
sizeof
(
*
p_sys
)
);
p_filter
->
p_sys
=
p_sys
=
calloc
(
1
,
sizeof
(
*
p_sys
)
);
if
(
!
p_filter
->
p_sys
)
if
(
!
p_filter
->
p_sys
)
return
VLC_ENOMEM
;
return
VLC_ENOMEM
;
memset
(
p_sys
,
0
,
sizeof
(
*
p_sys
)
);
/* Populating struct */
/* Populating struct */
vlc_mutex_init
(
&
p_sys
->
lock
);
vlc_mutex_init
(
&
p_sys
->
lock
);
...
...
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