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
339e21d5
Commit
339e21d5
authored
Sep 29, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: introduce hqdn3d in the effects UI
parent
704ec204
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
234 additions
and
94 deletions
+234
-94
modules/gui/qt4/components/extended_panels.cpp
modules/gui/qt4/components/extended_panels.cpp
+9
-3
modules/gui/qt4/ui/video_effects.ui
modules/gui/qt4/ui/video_effects.ui
+225
-91
No files found.
modules/gui/qt4/components/extended_panels.cpp
View file @
339e21d5
...
@@ -203,11 +203,17 @@ ExtVideo::ExtVideo( intf_thread_t *_p_intf, QTabWidget *_parent ) :
...
@@ -203,11 +203,17 @@ ExtVideo::ExtVideo( intf_thread_t *_p_intf, QTabWidget *_parent ) :
SETUP_VFILTER
(
mirror
)
SETUP_VFILTER
(
mirror
)
SETUP_VFILTER
(
gaussianblur
)
SETUP_VFILTER
(
gaussianblur
)
SETUP_VFILTER_OPTION
(
gaussianbluSigmaSlider
,
valueChanged
(
int
)
)
SETUP_VFILTER_OPTION
(
gaussianblu
r
SigmaSlider
,
valueChanged
(
int
)
)
SETUP_VFILTER
(
antiflicker
)
SETUP_VFILTER
(
antiflicker
)
SETUP_VFILTER_OPTION
(
antiflickerSofteningSizeSlider
,
valueChanged
(
int
)
)
SETUP_VFILTER_OPTION
(
antiflickerSofteningSizeSlider
,
valueChanged
(
int
)
)
SETUP_VFILTER
(
hqdn3d
)
SETUP_VFILTER_OPTION
(
hqdn3dLumaSpatSlider
,
valueChanged
(
int
)
)
SETUP_VFILTER_OPTION
(
hqdn3dLumaTempSlider
,
valueChanged
(
int
)
)
SETUP_VFILTER_OPTION
(
hqdn3dChromaSpatSlider
,
valueChanged
(
int
)
)
SETUP_VFILTER_OPTION
(
hqdn3dChromaTempSlider
,
valueChanged
(
int
)
)
if
(
module_exists
(
"atmo"
)
)
if
(
module_exists
(
"atmo"
)
)
{
{
...
@@ -585,9 +591,9 @@ void ExtVideo::setWidgetValue( QObject *widget )
...
@@ -585,9 +591,9 @@ void ExtVideo::setWidgetValue( QObject *widget )
void
ExtVideo
::
updateFilterOptions
()
void
ExtVideo
::
updateFilterOptions
()
{
{
QString
module
=
ModuleFromWidgetName
(
sender
()
->
parent
()
);
QString
module
=
ModuleFromWidgetName
(
sender
()
->
parent
()
);
//
std::cout << "Module name: " << module.toStdString() << std::endl
;
//
msg_Dbg( p_intf, "Module name: %s", qtu( module ) )
;
QString
option
=
OptionFromWidgetName
(
sender
()
);
QString
option
=
OptionFromWidgetName
(
sender
()
);
//
std::cout << "Option name: " << option.toStdString() << std::endl
;
//
msg_Dbg( p_intf, "Option name: %s", qtu( option ) )
;
vlc_object_t
*
p_obj
=
(
vlc_object_t
*
)
vlc_object_t
*
p_obj
=
(
vlc_object_t
*
)
vlc_object_find_name
(
p_intf
->
p_libvlc
,
qtu
(
module
)
);
vlc_object_find_name
(
p_intf
->
p_libvlc
,
qtu
(
module
)
);
...
...
modules/gui/qt4/ui/video_effects.ui
View file @
339e21d5
This diff is collapsed.
Click to expand it.
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