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
9586a683
Commit
9586a683
authored
Oct 22, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/streamout.cpp: removed avi muxer + added wav muxer and a few more codecs.
parent
f813caa8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
8 deletions
+22
-8
modules/gui/wxwindows/streamout.cpp
modules/gui/wxwindows/streamout.cpp
+19
-6
modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/wxwindows.h
+3
-2
No files found.
modules/gui/wxwindows/streamout.cpp
View file @
9586a683
...
...
@@ -65,7 +65,7 @@ enum
EncapsulationRadio3_Event
,
EncapsulationRadio4_Event
,
EncapsulationRadio5_Event
,
EncapsulationRadio6_Event
,
EncapsulationRadio7_Event
,
EncapsulationRadio8_Event
,
EncapsulationRadio9_Event
,
EncapsulationRadio9_Event
,
EncapsulationRadio10_Event
,
VideoTranscEnable_Event
,
VideoTranscCodec_Event
,
VideoTranscBitrate_Event
,
VideoTranscScale_Event
,
...
...
@@ -297,6 +297,9 @@ void SoutDialog::UpdateMRL()
case
ASF_ENCAPSULATION
:
encapsulation
=
wxT
(
"asf"
);
break
;
case
WAV_ENCAPSULATION
:
encapsulation
=
wxT
(
"wav"
);
break
;
case
TS_ENCAPSULATION
:
default:
encapsulation
=
wxT
(
"ts"
);
...
...
@@ -588,15 +591,15 @@ wxPanel *SoutDialog::EncapsulationPanel( wxWindow* parent )
wxT
(
"MPEG PS"
),
wxT
(
"MPEG 1"
),
wxT
(
"Ogg"
),
wxT
(
"Raw"
),
wxT
(
"ASF"
),
wxT
(
"AVI"
),
wxT
(
"MP4"
),
wxT
(
"MOV"
)
wxT
(
"MOV"
),
wxT
(
"WAV"
),
wxT
(
"Raw"
)
};
/* Stuff everything into the main panel */
for
(
i
=
0
;
i
<
ENCAPS_NUM
;
i
++
)
for
(
i
=
0
;
i
<
WXSIZEOF
(
encapsulation_array
)
;
i
++
)
{
encapsulation_radios
[
i
]
=
new
wxRadioButton
(
panel
,
EncapsulationRadio1_Event
+
i
,
...
...
@@ -605,6 +608,13 @@ wxPanel *SoutDialog::EncapsulationPanel( wxWindow* parent )
wxALIGN_LEFT
|
wxALIGN_CENTER_VERTICAL
|
wxALL
,
4
);
}
/* Hide avi one */
for
(
i
=
WXSIZEOF
(
encapsulation_array
);
i
<
ENCAPS_NUM
;
i
++
)
{
encapsulation_radios
[
i
]
=
new
wxRadioButton
(
panel
,
EncapsulationRadio1_Event
+
i
,
wxT
(
""
)
);
encapsulation_radios
[
i
]
->
Hide
();
}
panel
->
SetSizerAndFit
(
panel_sizer
);
...
...
@@ -710,12 +720,15 @@ wxPanel *SoutDialog::TranscodingPanel( wxWindow* parent )
static
const
wxString
wxacodecs_array
[]
=
{
wxT
(
"mpga"
),
wxT
(
"mp2a"
),
wxT
(
"mp3"
),
wxT
(
"mp4a"
),
wxT
(
"a52"
),
wxT
(
"vorb"
),
wxT
(
"flac"
),
wxT
(
"spx"
)
wxT
(
"spx"
),
wxT
(
"s16l"
),
wxT
(
"fl32"
)
};
static
const
wxString
achannels_array
[]
=
{
...
...
modules/gui/wxwindows/wxwindows.h
View file @
9586a683
...
...
@@ -518,11 +518,12 @@ enum
PS_ENCAPSULATION
,
MPEG1_ENCAPSULATION
,
OGG_ENCAPSULATION
,
RAW_ENCAPSULATION
,
ASF_ENCAPSULATION
,
AVI_ENCAPSULATION
,
MP4_ENCAPSULATION
,
MOV_ENCAPSULATION
,
WAV_ENCAPSULATION
,
RAW_ENCAPSULATION
,
AVI_ENCAPSULATION
,
ENCAPS_NUM
};
...
...
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