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
ebbedb39
Commit
ebbedb39
authored
Jul 27, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
variables: Remove uneeded parameter to TriggerCallback helper function.
parent
34f25416
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
16 deletions
+12
-16
src/misc/variables.c
src/misc/variables.c
+12
-16
No files found.
src/misc/variables.c
View file @
ebbedb39
/*****************************************************************************
/*****************************************************************************
* variables.c: routines for object variables handling
* variables.c: routines for object variables handling
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002-200
6
the VideoLAN team
* Copyright (C) 2002-200
9
the VideoLAN team
* $Id$
* $Id$
*
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Authors: Samuel Hocevar <sam@zoy.org>
...
@@ -163,7 +163,7 @@ static void CheckValue ( variable_t *, vlc_value_t * );
...
@@ -163,7 +163,7 @@ static void CheckValue ( variable_t *, vlc_value_t * );
static
int
InheritValue
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
*
,
static
int
InheritValue
(
vlc_object_t
*
,
const
char
*
,
vlc_value_t
*
,
int
);
int
);
static
int
TriggerCallback
(
vlc_object_t
*
,
variable_t
*
,
const
char
*
,
static
int
TriggerCallback
(
vlc_object_t
*
,
variable_t
*
,
const
char
*
,
vlc_value_t
,
vlc_value_t
);
vlc_value_t
);
/**
/**
* Initialize a vlc variable
* Initialize a vlc variable
...
@@ -712,9 +712,9 @@ int __var_GetAndSet( vlc_object_t *p_this, const char *psz_name, int i_action,
...
@@ -712,9 +712,9 @@ int __var_GetAndSet( vlc_object_t *p_this, const char *psz_name, int i_action,
/* Check boundaries */
/* Check boundaries */
CheckValue
(
p_var
,
&
p_var
->
val
);
CheckValue
(
p_var
,
&
p_var
->
val
);
/* Del with callbacks.*/
/* De
a
l with callbacks.*/
if
(
p_var
->
i_entries
)
if
(
p_var
->
i_entries
)
i_ret
=
TriggerCallback
(
p_this
,
p_var
,
psz_name
,
oldval
,
p_var
->
val
);
i_ret
=
TriggerCallback
(
p_this
,
p_var
,
psz_name
,
oldval
);
vlc_mutex_unlock
(
&
p_priv
->
var_lock
);
vlc_mutex_unlock
(
&
p_priv
->
var_lock
);
...
@@ -785,10 +785,9 @@ int var_SetChecked( vlc_object_t *p_this, const char *psz_name,
...
@@ -785,10 +785,9 @@ int var_SetChecked( vlc_object_t *p_this, const char *psz_name,
/* Set the variable */
/* Set the variable */
p_var
->
val
=
val
;
p_var
->
val
=
val
;
/* Deal with callbacks. Tell we're in a callback, release the lock,
/* Deal with callbacks */
* call stored functions, retake the lock. */
if
(
p_var
->
i_entries
)
if
(
p_var
->
i_entries
)
i_ret
=
TriggerCallback
(
p_this
,
p_var
,
psz_name
,
oldval
,
val
);
i_ret
=
TriggerCallback
(
p_this
,
p_var
,
psz_name
,
oldval
);
/* Free data if needed */
/* Free data if needed */
p_var
->
ops
->
pf_free
(
&
oldval
);
p_var
->
ops
->
pf_free
(
&
oldval
);
...
@@ -958,7 +957,6 @@ int __var_TriggerCallback( vlc_object_t *p_this, const char *psz_name )
...
@@ -958,7 +957,6 @@ int __var_TriggerCallback( vlc_object_t *p_this, const char *psz_name )
int
i_var
;
int
i_var
;
int
i_ret
=
VLC_SUCCESS
;
int
i_ret
=
VLC_SUCCESS
;
variable_t
*
p_var
;
variable_t
*
p_var
;
vlc_value_t
oldval
;
vlc_object_internals_t
*
p_priv
=
vlc_internals
(
p_this
);
vlc_object_internals_t
*
p_priv
=
vlc_internals
(
p_this
);
vlc_mutex_lock
(
&
p_priv
->
var_lock
);
vlc_mutex_lock
(
&
p_priv
->
var_lock
);
...
@@ -972,13 +970,10 @@ int __var_TriggerCallback( vlc_object_t *p_this, const char *psz_name )
...
@@ -972,13 +970,10 @@ int __var_TriggerCallback( vlc_object_t *p_this, const char *psz_name )
p_var
=
&
p_priv
->
p_vars
[
i_var
];
p_var
=
&
p_priv
->
p_vars
[
i_var
];
/* Backup needed stuff */
oldval
=
p_var
->
val
;
/* Deal with callbacks. Tell we're in a callback, release the lock,
/* Deal with callbacks. Tell we're in a callback, release the lock,
* call stored functions, retake the lock. */
* call stored functions, retake the lock. */
if
(
p_var
->
i_entries
)
if
(
p_var
->
i_entries
)
i_ret
=
TriggerCallback
(
p_this
,
p_var
,
psz_name
,
oldval
,
old
val
);
i_ret
=
TriggerCallback
(
p_this
,
p_var
,
psz_name
,
p_var
->
val
);
vlc_mutex_unlock
(
&
p_priv
->
var_lock
);
vlc_mutex_unlock
(
&
p_priv
->
var_lock
);
return
i_ret
;
return
i_ret
;
...
@@ -1473,11 +1468,12 @@ static int InheritValue( vlc_object_t *p_this, const char *psz_name,
...
@@ -1473,11 +1468,12 @@ static int InheritValue( vlc_object_t *p_this, const char *psz_name,
/**********************************************************************
/**********************************************************************
* Trigger the callbacks
* Trigger the callbacks.
* Tell we're in a callback, release the lock, call stored functions,
* retake the lock.
**********************************************************************/
**********************************************************************/
static
int
TriggerCallback
(
vlc_object_t
*
p_this
,
variable_t
*
p_var
,
static
int
TriggerCallback
(
vlc_object_t
*
p_this
,
variable_t
*
p_var
,
const
char
*
psz_name
,
vlc_value_t
oldval
,
const
char
*
psz_name
,
vlc_value_t
oldval
)
vlc_value_t
newval
)
{
{
int
i_var
;
int
i_var
;
int
i_entries
=
p_var
->
i_entries
;
int
i_entries
=
p_var
->
i_entries
;
...
@@ -1490,7 +1486,7 @@ static int TriggerCallback( vlc_object_t *p_this, variable_t *p_var,
...
@@ -1490,7 +1486,7 @@ static int TriggerCallback( vlc_object_t *p_this, variable_t *p_var,
/* The real calls */
/* The real calls */
for
(
;
i_entries
--
;
)
for
(
;
i_entries
--
;
)
{
{
p_entries
[
i_entries
].
pf_callback
(
p_this
,
psz_name
,
oldval
,
new
val
,
p_entries
[
i_entries
].
pf_callback
(
p_this
,
psz_name
,
oldval
,
p_var
->
val
,
p_entries
[
i_entries
].
p_data
);
p_entries
[
i_entries
].
p_data
);
}
}
...
...
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