Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
2ec43b29
Commit
2ec43b29
authored
Sep 29, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hqdn3d: allow live modification of params
parent
339e21d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
modules/video_filter/hqdn3d.c
modules/video_filter/hqdn3d.c
+29
-0
No files found.
modules/video_filter/hqdn3d.c
View file @
2ec43b29
...
...
@@ -43,6 +43,9 @@
static
int
Open
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
picture_t
*
Filter
(
filter_t
*
,
picture_t
*
);
static
int
DenoiseCallback
(
vlc_object_t
*
p_this
,
char
const
*
psz_var
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
p_data
);
/*****************************************************************************
* Module descriptor
...
...
@@ -162,6 +165,11 @@ static int Open(vlc_object_t *this)
PrecalcCoefs
(
cfg
->
Coefs
[
2
],
sys
->
chroma_spat
);
PrecalcCoefs
(
cfg
->
Coefs
[
3
],
sys
->
chroma_temp
);
var_AddCallback
(
filter
,
FILTER_PREFIX
"luma-spat"
,
DenoiseCallback
,
cfg
);
var_AddCallback
(
filter
,
FILTER_PREFIX
"chroma-spat"
,
DenoiseCallback
,
cfg
);
var_AddCallback
(
filter
,
FILTER_PREFIX
"luma-temp"
,
DenoiseCallback
,
cfg
);
var_AddCallback
(
filter
,
FILTER_PREFIX
"chroma-temp"
,
DenoiseCallback
,
cfg
);
return
VLC_SUCCESS
;
}
...
...
@@ -219,3 +227,24 @@ static picture_t *Filter(filter_t *filter, picture_t *src)
return
CopyInfoAndRelease
(
dst
,
src
);
}
static
int
DenoiseCallback
(
vlc_object_t
*
p_this
,
char
const
*
psz_var
,
vlc_value_t
oldval
,
vlc_value_t
newval
,
void
*
p_data
)
{
VLC_UNUSED
(
p_this
);
VLC_UNUSED
(
oldval
);
struct
vf_priv_s
*
cfg
=
(
struct
vf_priv_s
*
)
p_data
;
if
(
!
strcmp
(
psz_var
,
FILTER_PREFIX
"luma-spat"
)
)
PrecalcCoefs
(
cfg
->
Coefs
[
0
],
newval
.
f_float
);
else
if
(
!
strcmp
(
psz_var
,
FILTER_PREFIX
"luma-temp"
)
)
PrecalcCoefs
(
cfg
->
Coefs
[
1
],
newval
.
f_float
);
else
if
(
!
strcmp
(
psz_var
,
FILTER_PREFIX
"chroma-spat"
)
)
PrecalcCoefs
(
cfg
->
Coefs
[
2
],
newval
.
f_float
);
else
if
(
!
strcmp
(
psz_var
,
FILTER_PREFIX
"chroma-temp"
)
)
PrecalcCoefs
(
cfg
->
Coefs
[
3
],
newval
.
f_float
);
return
VLC_SUCCESS
;
}
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