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
313cc2da
Commit
313cc2da
authored
Nov 05, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/streamout.cpp: fixed a couple of things.
parent
8331d363
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
31 deletions
+3
-31
modules/gui/wxwindows/streamout.cpp
modules/gui/wxwindows/streamout.cpp
+3
-31
No files found.
modules/gui/wxwindows/streamout.cpp
View file @
313cc2da
...
...
@@ -2,7 +2,7 @@
* streamout.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: streamout.cpp,v 1.3
4 2003/11/05 17:57:29
gbazin Exp $
* $Id: streamout.cpp,v 1.3
5 2003/11/05 20:06:36
gbazin Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -138,33 +138,6 @@ BEGIN_EVENT_TABLE(SoutDialog, wxDialog)
END_EVENT_TABLE
()
#if 0
/*****************************************************************************
* Demux dump event methods.
*****************************************************************************/
void OpenDialog::OnDemuxDumpEnable( wxCommandEvent& event )
{
demuxdump_textctrl->Enable( event.GetInt() != 0 );
demuxdump_button->Enable( event.GetInt() != 0 );
if( event.GetInt() )
{
sout_checkbox->SetValue( 0 );
subsfile_checkbox->SetValue( 0 );
wxCommandEvent event = wxCommandEvent( wxEVT_NULL );
event.SetInt( 0 );
OnSoutEnable( event );
OnSubsFileEnable( event );
}
UpdateMRL( i_current_access_method );
}
void OpenDialog::OnDemuxDumpChange( wxCommandEvent& WXUNUSED(event) )
{
}
#endif
/*****************************************************************************
* Constructor.
*****************************************************************************/
...
...
@@ -459,8 +432,6 @@ wxPanel *SoutDialog::AccessPanel( wxWindow* parent )
wxALIGN_LEFT
|
wxALIGN_CENTER_VERTICAL
);
subpanel_sizer
->
Add
(
new
wxPanel
(
access_subpanels
[
1
],
-
1
),
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
subpanel_sizer
->
Add
(
new
wxPanel
(
access_subpanels
[
1
],
-
1
),
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
dump_checkbox
=
new
wxCheckBox
(
access_subpanels
[
1
],
FileDump_Event
,
wxU
(
_
(
"Dump raw input"
))
);
subpanel_sizer
->
Add
(
dump_checkbox
,
0
,
...
...
@@ -877,8 +848,9 @@ void SoutDialog::OnFileDump( wxCommandEvent& event )
{
if
(
i
!=
FILE_ACCESS_OUT
)
{
access_subpanels
[
i
]
->
Enable
(
!
event
.
GetInt
()
);
access_checkboxes
[
i
]
->
Enable
(
!
event
.
GetInt
()
);
access_subpanels
[
i
]
->
Enable
(
!
event
.
GetInt
()
&&
access_checkboxes
[
i
]
->
IsChecked
()
);
}
}
...
...
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