Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
5b5c2f30
Commit
5b5c2f30
authored
Jan 30, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Uninitialized values
parent
a5e49f52
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
3 deletions
+10
-3
modules/gui/wxwindows/extrapanel.cpp
modules/gui/wxwindows/extrapanel.cpp
+3
-1
modules/gui/wxwindows/open.cpp
modules/gui/wxwindows/open.cpp
+1
-0
modules/gui/wxwindows/wizard.cpp
modules/gui/wxwindows/wizard.cpp
+4
-0
modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/wxwindows.h
+2
-2
No files found.
modules/gui/wxwindows/extrapanel.cpp
View file @
5b5c2f30
...
...
@@ -368,6 +368,8 @@ wxPanel *ExtraPanel::VideoPanel( wxWindow *parent )
if
(
f_value
>
0
&&
f_value
<
10
)
gamma_slider
->
SetValue
(
(
int
)(
10
*
f_value
)
);
b_update
=
VLC_FALSE
;
return
panel
;
}
...
...
@@ -473,7 +475,7 @@ wxPanel *ExtraPanel::EqzPanel( wxWindow *parent )
top_sizer
->
Add
(
new
wxButton
(
panel
,
EqRestore_Event
,
wxU
(
_
(
"Restore Defaults"
)
)
),
0
,
wxALL
,
2
);
0
,
wxALL
,
2
);
top_sizer
->
Add
(
0
,
0
,
1
,
wxALL
,
2
);
wxStaticText
*
smooth_text
=
new
wxStaticText
(
panel
,
-
1
,
wxU
(
"Smooth :"
));
...
...
modules/gui/wxwindows/open.cpp
View file @
5b5c2f30
...
...
@@ -372,6 +372,7 @@ OpenDialog::OpenDialog( intf_thread_t *_p_intf, wxWindow *_p_parent,
SetIcon
(
*
p_intf
->
p_sys
->
p_icon
);
file_dialog
=
NULL
;
i_disc_type_selection
=
0
;
i_disc_title
=
0
;
i_open_arg
=
i_arg
;
sout_dialog
=
NULL
;
...
...
modules/gui/wxwindows/wizard.cpp
View file @
5b5c2f30
...
...
@@ -809,6 +809,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
video_combo
->
Append
(
wxU
(
vcodecs_array
[
i
].
psz_display
)
,
(
void
*
)
&
vcodecs_array
[
i
]
);
}
i_video_codec
=
0
;
video_sizer1
->
Add
(
video_combo
,
0
,
wxALIGN_LEFT
,
0
);
video_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Bitrate (kb/s)"
))),
0
,
...
...
@@ -845,6 +847,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
audio_combo
->
Append
(
wxU
(
acodecs_array
[
i
].
psz_display
)
,
(
void
*
)
&
acodecs_array
[
i
]
);
}
i_audio_codec
=
0
;
audio_sizer1
->
Add
(
audio_combo
,
0
,
wxALIGN_LEFT
,
0
);
audio_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Bitrate (kb/s)"
))),
0
,
...
...
modules/gui/wxwindows/wxwindows.h
View file @
5b5c2f30
...
...
@@ -471,10 +471,10 @@ private:
wxStaticText
*
disc_title_label
;
wxStaticText
*
disc_chapter_label
;
wxStaticText
*
disc_sub_label
;
/* Indicates if the disc device control was modified */
bool
b_disc_device_changed
;
/* Controls for the net panel */
wxRadioBox
*
net_type
;
int
i_net_type
;
...
...
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