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
98e56691
Commit
98e56691
authored
Oct 16, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video_filter_puzzle: change default value and limit ([2, 16] is really enough
and 4 is good as a default value)
parent
3bb57649
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/gui/qt4/ui/video_effects.ui
modules/gui/qt4/ui/video_effects.ui
+2
-2
modules/video_filter/puzzle.c
modules/video_filter/puzzle.c
+2
-2
No files found.
modules/gui/qt4/ui/video_effects.ui
View file @
98e56691
...
...
@@ -362,7 +362,7 @@
<number>16</number>
</property>
<property name="value" >
<number>
3
</number>
<number>
4
</number>
</property>
</widget>
</item>
...
...
@@ -375,7 +375,7 @@
<number>16</number>
</property>
<property name="value" >
<number>
3
</number>
<number>
4
</number>
</property>
</widget>
</item>
...
...
modules/video_filter/puzzle.c
View file @
98e56691
...
...
@@ -58,9 +58,9 @@ vlc_module_begin()
set_category
(
CAT_VIDEO
)
set_subcategory
(
SUBCAT_VIDEO_VFILTER
)
add_integer_with_range
(
CFG_PREFIX
"rows"
,
4
,
1
,
128
,
NULL
,
add_integer_with_range
(
CFG_PREFIX
"rows"
,
4
,
2
,
16
,
NULL
,
ROWS_TEXT
,
ROWS_LONGTEXT
,
false
)
add_integer_with_range
(
CFG_PREFIX
"cols"
,
4
,
1
,
128
,
NULL
,
add_integer_with_range
(
CFG_PREFIX
"cols"
,
4
,
2
,
16
,
NULL
,
COLS_TEXT
,
COLS_LONGTEXT
,
false
)
add_bool
(
CFG_PREFIX
"black-slot"
,
false
,
NULL
,
BLACKSLOT_TEXT
,
BLACKSLOT_LONGTEXT
,
false
)
...
...
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