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
3bf0dec4
Commit
3bf0dec4
authored
Apr 01, 2007
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some debug messages and fix the sub-picture chain update target.
parent
ad185129
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+8
-4
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
3bf0dec4
...
...
@@ -38,6 +38,7 @@
#include <vlc_aout.h>
#include <vlc_intf_strings.h>
#include <vlc_vout.h>
#include <vlc_osd.h>
#include <iostream>
...
...
@@ -297,7 +298,10 @@ void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add )
FIND_ANYWHERE
);
if
(
p_vout
)
{
var_SetString
(
p_vout
,
psz_filter_type
,
psz_string
);
if
(
!
strcmp
(
psz_filter_type
,
"sub-filter"
)
)
var_SetString
(
p_vout
->
p_spu
,
psz_filter_type
,
psz_string
);
else
var_SetString
(
p_vout
,
psz_filter_type
,
psz_string
);
vlc_object_release
(
p_vout
);
}
...
...
@@ -307,7 +311,7 @@ void ExtVideo::ChangeVFiltersString( char *psz_name, vlc_bool_t b_add )
void
ExtVideo
::
updateFilters
()
{
QString
module
=
ModuleFromWidgetName
(
sender
()
);
std
::
cout
<<
"Module name: "
<<
module
.
toStdString
()
<<
std
::
endl
;
//
std::cout << "Module name: " << module.toStdString() << std::endl;
QCheckBox
*
checkbox
=
qobject_cast
<
QCheckBox
*>
(
sender
());
QGroupBox
*
groupbox
=
qobject_cast
<
QGroupBox
*>
(
sender
());
...
...
@@ -403,9 +407,9 @@ void ExtVideo::setWidgetValue( QObject *widget )
void
ExtVideo
::
updateFilterOptions
()
{
QString
module
=
ModuleFromWidgetName
(
sender
()
->
parent
()
);
std
::
cout
<<
"Module name: "
<<
module
.
toStdString
()
<<
std
::
endl
;
//
std::cout << "Module name: " << module.toStdString() << std::endl;
QString
option
=
OptionFromWidgetName
(
sender
()
);
std
::
cout
<<
"Option name: "
<<
option
.
toStdString
()
<<
std
::
endl
;
//
std::cout << "Option name: " << option.toStdString() << std::endl;
vlc_object_t
*
p_obj
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p_intf
->
p_libvlc
,
...
...
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