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
f536457b
Commit
f536457b
authored
Jan 31, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./modules/gui/gtk/gnome.c, ./modules/gui/gtk/gtk.c: fixed uninitialized
variables.
parent
62d34bdf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
25 deletions
+30
-25
modules/gui/gtk/gnome.c
modules/gui/gtk/gnome.c
+15
-10
modules/gui/gtk/gtk.c
modules/gui/gtk/gtk.c
+15
-15
No files found.
modules/gui/gtk/gnome.c
View file @
f536457b
...
...
@@ -2,7 +2,7 @@
* gnome.c : Gnome plugin for vlc
*****************************************************************************
* Copyright (C) 2000 VideoLAN
* $Id: gnome.c,v 1.
8 2003/01/26 22:57:21 gbazin
Exp $
* $Id: gnome.c,v 1.
9 2003/01/31 09:51:57 sam
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -110,22 +110,27 @@ static int Open( vlc_object_t *p_this )
p_intf
->
p_sys
->
p_sub
=
msg_Subscribe
(
p_intf
);
/* Initialize Gnome thread */
p_intf
->
p_sys
->
b_playing
=
0
;
p_intf
->
p_sys
->
b_deinterlace_update
=
0
;
p_intf
->
p_sys
->
b_playing
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_deinterlace_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_aout_update
=
0
;
p_intf
->
p_sys
->
b_vout_update
=
0
;
p_intf
->
p_sys
->
b_aout_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_vout_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_popup_changed
=
0
;
p_intf
->
p_sys
->
b_window_changed
=
0
;
p_intf
->
p_sys
->
b_playlist_changed
=
0
;
p_intf
->
p_sys
->
b_popup_changed
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_window_changed
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_playlist_changed
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_program_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_title_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_chapter_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_spu_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_audio_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
p_input
=
NULL
;
p_intf
->
p_sys
->
i_playing
=
-
1
;
p_intf
->
p_sys
->
b_slider_free
=
1
;
p_intf
->
p_sys
->
b_slider_free
=
VLC_TRUE
;
p_intf
->
p_sys
->
i_part
=
0
;
p_intf
->
p_sys
->
b_mute
=
0
;
p_intf
->
p_sys
->
b_mute
=
VLC_FALSE
;
return
VLC_SUCCESS
;
}
...
...
modules/gui/gtk/gtk.c
View file @
f536457b
...
...
@@ -2,7 +2,7 @@
* gtk.c : Gtk+ plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: gtk.c,v 1.1
3 2003/01/26 22:57:21 gbazin
Exp $
* $Id: gtk.c,v 1.1
4 2003/01/31 09:51:57 sam
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
*
...
...
@@ -110,28 +110,28 @@ static int Open( vlc_object_t *p_this )
p_intf
->
p_sys
->
p_sub
=
msg_Subscribe
(
p_intf
);
/* Initialize Gtk+ thread */
p_intf
->
p_sys
->
b_playing
=
0
;
p_intf
->
p_sys
->
b_deinterlace_update
=
0
;
p_intf
->
p_sys
->
b_playing
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_deinterlace_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_aout_update
=
0
;
p_intf
->
p_sys
->
b_vout_update
=
0
;
p_intf
->
p_sys
->
b_aout_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_vout_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_popup_changed
=
0
;
p_intf
->
p_sys
->
b_window_changed
=
0
;
p_intf
->
p_sys
->
b_playlist_changed
=
0
;
p_intf
->
p_sys
->
b_program_update
=
0
;
p_intf
->
p_sys
->
b_title_update
=
0
;
p_intf
->
p_sys
->
b_chapter_update
=
0
;
p_intf
->
p_sys
->
b_spu_update
=
0
;
p_intf
->
p_sys
->
b_audio_update
=
0
;
p_intf
->
p_sys
->
b_popup_changed
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_window_changed
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_playlist_changed
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_program_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_title_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_chapter_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_spu_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_audio_update
=
VLC_FALSE
;
p_intf
->
p_sys
->
p_input
=
NULL
;
p_intf
->
p_sys
->
i_playing
=
-
1
;
p_intf
->
p_sys
->
b_slider_free
=
1
;
p_intf
->
p_sys
->
b_slider_free
=
VLC_TRUE
;
p_intf
->
p_sys
->
i_part
=
0
;
p_intf
->
p_sys
->
b_mute
=
VLC_FALSE
;
p_intf
->
p_sys
->
b_mute
=
0
;
return
VLC_SUCCESS
;
}
...
...
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