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
e5e8ecb2
Commit
e5e8ecb2
authored
Oct 19, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/streamout.cpp: fixed selection of codec.
parent
7eaa3759
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
modules/gui/wxwindows/streamout.cpp
modules/gui/wxwindows/streamout.cpp
+4
-3
No files found.
modules/gui/wxwindows/streamout.cpp
View file @
e5e8ecb2
...
...
@@ -635,6 +635,7 @@ wxPanel *SoutDialog::TranscodingPanel( wxWindow* parent )
wxT
(
"DIV2"
),
wxT
(
"DIV3"
),
wxT
(
"H263"
),
wxT
(
"h264"
),
wxT
(
"I263"
),
wxT
(
"WMV1"
),
wxT
(
"WMV2"
),
...
...
@@ -675,7 +676,7 @@ wxPanel *SoutDialog::TranscodingPanel( wxWindow* parent )
video_transc_checkbox
=
new
wxCheckBox
(
panel
,
VideoTranscEnable_Event
,
wxU
(
_
(
"Video codec"
)));
video_codec_combo
=
new
wxComboBox
(
panel
,
VideoTranscCodec_Event
,
wx
T
(
""
)
,
new
wxComboBox
(
panel
,
VideoTranscCodec_Event
,
wx
vcodecs_array
[
2
]
,
wxPoint
(
20
,
25
),
wxDefaultSize
,
WXSIZEOF
(
wxvcodecs_array
),
wxvcodecs_array
,
wxCB_READONLY
);
...
...
@@ -740,7 +741,7 @@ wxPanel *SoutDialog::TranscodingPanel( wxWindow* parent )
audio_transc_checkbox
=
new
wxCheckBox
(
panel
,
AudioTranscEnable_Event
,
wxU
(
_
(
"Audio codec"
)));
audio_codec_combo
=
new
wxComboBox
(
panel
,
AudioTranscCodec_Event
,
wx
T
(
""
)
,
new
wxComboBox
(
panel
,
AudioTranscCodec_Event
,
wx
acodecs_array
[
0
]
,
wxPoint
(
10
,
25
),
wxDefaultSize
,
WXSIZEOF
(
wxacodecs_array
),
wxacodecs_array
,
wxCB_READONLY
);
...
...
@@ -759,7 +760,7 @@ wxPanel *SoutDialog::TranscodingPanel( wxWindow* parent )
wxStaticText
*
channels_label
=
new
wxStaticText
(
panel
,
-
1
,
wxU
(
_
(
"Channels"
)));
audio_channels_combo
=
new
wxComboBox
(
panel
,
AudioTranscChans_Event
,
wxT
(
""
)
,
new
wxComboBox
(
panel
,
AudioTranscChans_Event
,
achannels_array
[
1
]
,
wxPoint
(
10
,
25
),
wxDefaultSize
,
WXSIZEOF
(
achannels_array
),
achannels_array
);
audio_channels_combo
->
SetSelection
(
1
);
...
...
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