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
191b359e
Commit
191b359e
authored
Feb 13, 2005
by
Mark Moriarty
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wizard.cpp -- Change video and audio codec comboboxes to wxCB_DROPDOWN| wxCB_READONLY
parent
c5d2a358
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1665 additions
and
1663 deletions
+1665
-1663
modules/gui/wxwindows/wizard.cpp
modules/gui/wxwindows/wizard.cpp
+1665
-1663
No files found.
modules/gui/wxwindows/wizard.cpp
View file @
191b359e
...
@@ -803,7 +803,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
...
@@ -803,7 +803,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
/* Line 2 : codec */
/* Line 2 : codec */
video_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Codec"
))),
0
,
wxLEFT
,
5
);
video_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Codec"
))),
0
,
wxLEFT
,
5
);
video_combo
=
new
wxComboBox
(
this
,
VideoCodec_Event
,
wxT
(
""
),
video_combo
=
new
wxComboBox
(
this
,
VideoCodec_Event
,
wxT
(
""
),
wxDefaultPosition
,
wxSize
(
200
,
25
)
);
wxDefaultPosition
,
wxSize
(
200
,
25
),
0
,
NULL
,
wxCB_DROPDOWN
|
wxCB_READONLY
);
for
(
int
i
=
0
;
vcodecs_array
[
i
].
psz_display
!=
NULL
;
i
++
)
for
(
int
i
=
0
;
vcodecs_array
[
i
].
psz_display
!=
NULL
;
i
++
)
{
{
video_combo
->
Append
(
wxU
(
vcodecs_array
[
i
].
psz_display
)
,
video_combo
->
Append
(
wxU
(
vcodecs_array
[
i
].
psz_display
)
,
...
@@ -842,7 +843,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
...
@@ -842,7 +843,8 @@ wizTranscodeCodecPage::wizTranscodeCodecPage( wxWizard *parent,
/* Line 2 : codec */
/* Line 2 : codec */
audio_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Codec"
))),
0
,
wxLEFT
,
5
);
audio_sizer1
->
Add
(
new
wxStaticText
(
this
,
-
1
,
wxU
(
_
(
"Codec"
))),
0
,
wxLEFT
,
5
);
audio_combo
=
new
wxComboBox
(
this
,
AudioCodec_Event
,
wxT
(
""
),
audio_combo
=
new
wxComboBox
(
this
,
AudioCodec_Event
,
wxT
(
""
),
wxDefaultPosition
,
wxSize
(
200
,
25
)
);
wxDefaultPosition
,
wxSize
(
200
,
25
),
0
,
NULL
,
wxCB_DROPDOWN
|
wxCB_READONLY
);
for
(
int
i
=
0
;
acodecs_array
[
i
].
psz_display
!=
NULL
;
i
++
)
for
(
int
i
=
0
;
acodecs_array
[
i
].
psz_display
!=
NULL
;
i
++
)
{
{
audio_combo
->
Append
(
wxU
(
acodecs_array
[
i
].
psz_display
)
,
audio_combo
->
Append
(
wxU
(
acodecs_array
[
i
].
psz_display
)
,
...
...
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