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
1e8de675
Commit
1e8de675
authored
Jul 05, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix printf type.
parent
3fc54c1a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/control/http/rpn.c
modules/control/http/rpn.c
+1
-1
modules/video_filter/mosaic.c
modules/video_filter/mosaic.c
+1
-1
No files found.
modules/control/http/rpn.c
View file @
1e8de675
...
@@ -614,7 +614,7 @@ void EvaluateRPN( intf_thread_t *p_intf, mvar_t *vars,
...
@@ -614,7 +614,7 @@ void EvaluateRPN( intf_thread_t *p_intf, mvar_t *vars,
case
VLC_VAR_INTEGER
:
case
VLC_VAR_INTEGER
:
case
VLC_VAR_HOTKEY
:
case
VLC_VAR_HOTKEY
:
val
.
i_int
=
SSPopN
(
st
,
vars
);
val
.
i_int
=
SSPopN
(
st
,
vars
);
msg_Dbg
(
p_intf
,
"requested %s var change: %s->%
d"
,
msg_Dbg
(
p_intf
,
"requested %s var change: %s->%
"
PRIu64
,
psz_object
,
psz_variable
,
val
.
i_int
);
psz_object
,
psz_variable
,
val
.
i_int
);
break
;
break
;
case
VLC_VAR_STRING
:
case
VLC_VAR_STRING
:
...
...
modules/video_filter/mosaic.c
View file @
1e8de675
...
@@ -772,7 +772,7 @@ static int MosaicCallback( vlc_object_t *p_this, char const *psz_var,
...
@@ -772,7 +772,7 @@ static int MosaicCallback( vlc_object_t *p_this, char const *psz_var,
else
if
(
VAR_IS
(
"xoffset"
)
)
else
if
(
VAR_IS
(
"xoffset"
)
)
{
{
vlc_mutex_lock
(
&
p_sys
->
lock
);
vlc_mutex_lock
(
&
p_sys
->
lock
);
msg_Dbg
(
p_this
,
"changing x offset from %dpx to %px"
,
msg_Dbg
(
p_this
,
"changing x offset from %dpx to %
d
px"
,
p_sys
->
i_xoffset
,
(
int
)
newval
.
i_int
);
p_sys
->
i_xoffset
,
(
int
)
newval
.
i_int
);
p_sys
->
i_xoffset
=
__MAX
(
newval
.
i_int
,
0
);
p_sys
->
i_xoffset
=
__MAX
(
newval
.
i_int
,
0
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
vlc_mutex_unlock
(
&
p_sys
->
lock
);
...
...
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