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
704ec204
Commit
704ec204
authored
Sep 29, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hqdn3d: remove 4 strings
parent
e4acf924
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
modules/video_filter/hqdn3d.c
modules/video_filter/hqdn3d.c
+4
-8
No files found.
modules/video_filter/hqdn3d.c
View file @
704ec204
...
...
@@ -51,13 +51,9 @@ static picture_t *Filter (filter_t *, picture_t *);
#define FILTER_PREFIX "hqdn3d-"
#define LUMA_SPAT_TEXT N_("Spatial luma strength (0-254)")
#define LUMA_SPAT_LONGTEXT N_("Spatial luma strength (default 4)")
#define CHROMA_SPAT_TEXT N_("Spatial chroma strength (0-254)")
#define CHROMA_SPAT_LONGTEXT N_("Spatial chroma strength (default 3)")
#define LUMA_TEMP_TEXT N_("Temporal luma strength (0-254)")
#define LUMA_TEMP_LONGTEXT N_("Temporal luma strength (default 6)")
#define CHROMA_TEMP_TEXT N_("Temporal chroma strength (0-254)")
#define CHROMA_TEMP_LONGTEXT N_("Temporal chroma strength (default 4.5)")
vlc_module_begin
()
set_shortname
(
N_
(
"HQ Denoiser 3D"
))
...
...
@@ -67,13 +63,13 @@ vlc_module_begin()
set_subcategory
(
SUBCAT_VIDEO_VFILTER
)
add_float_with_range
(
FILTER_PREFIX
"luma-spat"
,
4
.
0
,
0
.
0
,
254
.
0
,
LUMA_SPAT_TEXT
,
LUMA_SPAT_
LONG
TEXT
,
false
)
LUMA_SPAT_TEXT
,
LUMA_SPAT_TEXT
,
false
)
add_float_with_range
(
FILTER_PREFIX
"chroma-spat"
,
3
.
0
,
0
.
0
,
254
.
0
,
CHROMA_SPAT_TEXT
,
CHROMA_SPAT_
LONG
TEXT
,
false
)
CHROMA_SPAT_TEXT
,
CHROMA_SPAT_TEXT
,
false
)
add_float_with_range
(
FILTER_PREFIX
"luma-temp"
,
6
.
0
,
0
.
0
,
254
.
0
,
LUMA_TEMP_TEXT
,
LUMA_TEMP_
LONG
TEXT
,
false
)
LUMA_TEMP_TEXT
,
LUMA_TEMP_TEXT
,
false
)
add_float_with_range
(
FILTER_PREFIX
"chroma-temp"
,
4
.
5
,
0
.
0
,
254
.
0
,
CHROMA_TEMP_TEXT
,
CHROMA_TEMP_
LONG
TEXT
,
false
)
CHROMA_TEMP_TEXT
,
CHROMA_TEMP_TEXT
,
false
)
add_shortcut
(
"hqdn3d"
)
...
...
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