Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
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
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
1 deletion
+8
-1
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
No files found.
modules/gui/wxwindows/extrapanel.cpp
View file @
5b5c2f30
...
@@ -368,6 +368,8 @@ wxPanel *ExtraPanel::VideoPanel( wxWindow *parent )
...
@@ -368,6 +368,8 @@ wxPanel *ExtraPanel::VideoPanel( wxWindow *parent )
if
(
f_value
>
0
&&
f_value
<
10
)
if
(
f_value
>
0
&&
f_value
<
10
)
gamma_slider
->
SetValue
(
(
int
)(
10
*
f_value
)
);
gamma_slider
->
SetValue
(
(
int
)(
10
*
f_value
)
);
b_update
=
VLC_FALSE
;
return
panel
;
return
panel
;
}
}
...
...
modules/gui/wxwindows/open.cpp
View file @
5b5c2f30
...
@@ -372,6 +372,7 @@ OpenDialog::OpenDialog( intf_thread_t *_p_intf, wxWindow *_p_parent,
...
@@ -372,6 +372,7 @@ OpenDialog::OpenDialog( intf_thread_t *_p_intf, wxWindow *_p_parent,
SetIcon
(
*
p_intf
->
p_sys
->
p_icon
);
SetIcon
(
*
p_intf
->
p_sys
->
p_icon
);
file_dialog
=
NULL
;
file_dialog
=
NULL
;
i_disc_type_selection
=
0
;
i_disc_type_selection
=
0
;
i_disc_title
=
0
;
i_open_arg
=
i_arg
;
i_open_arg
=
i_arg
;
sout_dialog
=
NULL
;
sout_dialog
=
NULL
;
...
...
modules/gui/wxwindows/wizard.cpp
View file @
5b5c2f30
...
@@ -809,6 +809,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
...
@@ -809,6 +809,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
video_combo
->
Append
(
wxU
(
vcodecs_array
[
i
].
psz_display
)
,
video_combo
->
Append
(
wxU
(
vcodecs_array
[
i
].
psz_display
)
,
(
void
*
)
&
vcodecs_array
[
i
]
);
(
void
*
)
&
vcodecs_array
[
i
]
);
}
}
i_video_codec
=
0
;
video_sizer1
->
Add
(
video_combo
,
0
,
wxALIGN_LEFT
,
0
);
video_sizer1
->
Add
(
video_combo
,
0
,
wxALIGN_LEFT
,
0
);
video_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Bitrate (kb/s)"
))),
0
,
video_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Bitrate (kb/s)"
))),
0
,
...
@@ -845,6 +847,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
...
@@ -845,6 +847,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
audio_combo
->
Append
(
wxU
(
acodecs_array
[
i
].
psz_display
)
,
audio_combo
->
Append
(
wxU
(
acodecs_array
[
i
].
psz_display
)
,
(
void
*
)
&
acodecs_array
[
i
]
);
(
void
*
)
&
acodecs_array
[
i
]
);
}
}
i_audio_codec
=
0
;
audio_sizer1
->
Add
(
audio_combo
,
0
,
wxALIGN_LEFT
,
0
);
audio_sizer1
->
Add
(
audio_combo
,
0
,
wxALIGN_LEFT
,
0
);
audio_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Bitrate (kb/s)"
))),
0
,
audio_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Bitrate (kb/s)"
))),
0
,
...
...
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