Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
67906775
Commit
67906775
authored
Dec 14, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/*: added raw encapsulation to the streamout dialog.
* modules/mux/dummy.c: added "raw" shortcut.
parent
982b157f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
3 deletions
+13
-3
modules/gui/wxwindows/streamout.cpp
modules/gui/wxwindows/streamout.cpp
+9
-1
modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/wxwindows.h
+2
-1
modules/mux/dummy.c
modules/mux/dummy.c
+2
-1
No files found.
modules/gui/wxwindows/streamout.cpp
View file @
67906775
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* streamout.cpp : wxWindows plugin for vlc
* streamout.cpp : wxWindows plugin for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* Copyright (C) 2000-2001 VideoLAN
* $Id: streamout.cpp,v 1.
39 2003/12/14 21:03:27
gbazin Exp $
* $Id: streamout.cpp,v 1.
40 2003/12/14 22:49:28
gbazin Exp $
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
*
...
@@ -66,6 +66,7 @@ enum
...
@@ -66,6 +66,7 @@ enum
EncapsulationRadio3_Event
,
EncapsulationRadio4_Event
,
EncapsulationRadio3_Event
,
EncapsulationRadio4_Event
,
EncapsulationRadio5_Event
,
EncapsulationRadio6_Event
,
EncapsulationRadio5_Event
,
EncapsulationRadio6_Event
,
EncapsulationRadio7_Event
,
EncapsulationRadio8_Event
,
EncapsulationRadio7_Event
,
EncapsulationRadio8_Event
,
EncapsulationRadio9_Event
,
VideoTranscEnable_Event
,
VideoTranscCodec_Event
,
VideoTranscBitrate_Event
,
VideoTranscEnable_Event
,
VideoTranscCodec_Event
,
VideoTranscBitrate_Event
,
VideoTranscScale_Event
,
VideoTranscScale_Event
,
...
@@ -117,6 +118,8 @@ BEGIN_EVENT_TABLE(SoutDialog, wxDialog)
...
@@ -117,6 +118,8 @@ BEGIN_EVENT_TABLE(SoutDialog, wxDialog)
SoutDialog
::
OnEncapsulationChange
)
SoutDialog
::
OnEncapsulationChange
)
EVT_RADIOBUTTON
(
EncapsulationRadio8_Event
,
EVT_RADIOBUTTON
(
EncapsulationRadio8_Event
,
SoutDialog
::
OnEncapsulationChange
)
SoutDialog
::
OnEncapsulationChange
)
EVT_RADIOBUTTON
(
EncapsulationRadio9_Event
,
SoutDialog
::
OnEncapsulationChange
)
/* Events generated by the transcoding panel */
/* Events generated by the transcoding panel */
EVT_CHECKBOX
(
VideoTranscEnable_Event
,
SoutDialog
::
OnTranscodingEnable
)
EVT_CHECKBOX
(
VideoTranscEnable_Event
,
SoutDialog
::
OnTranscodingEnable
)
...
@@ -283,6 +286,9 @@ void SoutDialog::UpdateMRL()
...
@@ -283,6 +286,9 @@ void SoutDialog::UpdateMRL()
case
OGG_ENCAPSULATION
:
case
OGG_ENCAPSULATION
:
encapsulation
=
wxT
(
"ogg"
);
encapsulation
=
wxT
(
"ogg"
);
break
;
break
;
case
RAW_ENCAPSULATION
:
encapsulation
=
wxT
(
"raw"
);
break
;
case
MP4_ENCAPSULATION
:
case
MP4_ENCAPSULATION
:
encapsulation
=
wxT
(
"mp4"
);
encapsulation
=
wxT
(
"mp4"
);
break
;
break
;
...
@@ -574,6 +580,7 @@ wxPanel *SoutDialog::EncapsulationPanel( wxWindow* parent )
...
@@ -574,6 +580,7 @@ wxPanel *SoutDialog::EncapsulationPanel( wxWindow* parent )
wxT
(
"MPEG PS"
),
wxT
(
"MPEG PS"
),
wxT
(
"MPEG 1"
),
wxT
(
"MPEG 1"
),
wxT
(
"Ogg"
),
wxT
(
"Ogg"
),
wxT
(
"Raw"
),
wxT
(
"ASF"
),
wxT
(
"ASF"
),
wxT
(
"AVI"
),
wxT
(
"AVI"
),
wxT
(
"MP4"
),
wxT
(
"MP4"
),
...
@@ -920,6 +927,7 @@ void SoutDialog::OnTranscodingEnable( wxCommandEvent& event )
...
@@ -920,6 +927,7 @@ void SoutDialog::OnTranscodingEnable( wxCommandEvent& event )
case
VideoTranscEnable_Event
:
case
VideoTranscEnable_Event
:
video_codec_combo
->
Enable
(
event
.
GetInt
()
);
video_codec_combo
->
Enable
(
event
.
GetInt
()
);
video_bitrate_combo
->
Enable
(
event
.
GetInt
()
);
video_bitrate_combo
->
Enable
(
event
.
GetInt
()
);
video_scale_combo
->
Enable
(
event
.
GetInt
()
);
break
;
break
;
case
AudioTranscEnable_Event
:
case
AudioTranscEnable_Event
:
audio_codec_combo
->
Enable
(
event
.
GetInt
()
);
audio_codec_combo
->
Enable
(
event
.
GetInt
()
);
...
...
modules/gui/wxwindows/wxwindows.h
View file @
67906775
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* wxwindows.h: private wxWindows interface description
* wxwindows.h: private wxWindows interface description
*****************************************************************************
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* Copyright (C) 1999, 2000 VideoLAN
* $Id: wxwindows.h,v 1.
79 2003/12/14 21:03:27
gbazin Exp $
* $Id: wxwindows.h,v 1.
80 2003/12/14 22:49:28
gbazin Exp $
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
*
...
@@ -515,6 +515,7 @@ enum
...
@@ -515,6 +515,7 @@ enum
PS_ENCAPSULATION
,
PS_ENCAPSULATION
,
MPEG1_ENCAPSULATION
,
MPEG1_ENCAPSULATION
,
OGG_ENCAPSULATION
,
OGG_ENCAPSULATION
,
RAW_ENCAPSULATION
,
ASF_ENCAPSULATION
,
ASF_ENCAPSULATION
,
AVI_ENCAPSULATION
,
AVI_ENCAPSULATION
,
MP4_ENCAPSULATION
,
MP4_ENCAPSULATION
,
...
...
modules/mux/dummy.c
View file @
67906775
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* dummy.c: dummy muxer module for vlc
* dummy.c: dummy muxer module for vlc
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* Copyright (C) 2001, 2002 VideoLAN
* $Id: dummy.c,v 1.
9 2003/11/21 20:49:14
gbazin Exp $
* $Id: dummy.c,v 1.
10 2003/12/14 22:49:28
gbazin Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
* Eric Petit <titer@videolan.org>
...
@@ -43,6 +43,7 @@ vlc_module_begin();
...
@@ -43,6 +43,7 @@ vlc_module_begin();
set_description
(
_
(
"Dummy/Raw muxer"
)
);
set_description
(
_
(
"Dummy/Raw muxer"
)
);
set_capability
(
"sout mux"
,
5
);
set_capability
(
"sout mux"
,
5
);
add_shortcut
(
"dummy"
);
add_shortcut
(
"dummy"
);
add_shortcut
(
"raw"
);
add_shortcut
(
"es"
);
add_shortcut
(
"es"
);
set_callbacks
(
Open
,
Close
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
vlc_module_end
();
...
...
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