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
538a9b4d
Commit
538a9b4d
authored
Jan 23, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_object_find_name: simplify FIND_ANYWHERE
parent
5d600458
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
22 deletions
+6
-22
src/misc/objects.c
src/misc/objects.c
+6
-22
No files found.
src/misc/objects.c
View file @
538a9b4d
...
...
@@ -526,31 +526,15 @@ vlc_object_t *vlc_object_find_name( vlc_object_t *p_this,
return
p_this
;
}
libvlc_lock
(
p_this
->
p_libvlc
);
/* Otherwise, recursively look for the object */
if
(
i_mode
==
FIND_ANYWHERE
)
{
vlc_object_t
*
p_root
=
p_this
;
if
(
i_mode
==
FIND_ANYWHERE
)
return
vlc_object_find_name
(
VLC_OBJECT
(
p_this
->
p_libvlc
),
psz_name
,
FIND_CHILD
)
;
/* Find the root */
while
(
p_root
->
p_parent
!=
NULL
&&
p_root
!=
VLC_OBJECT
(
p_this
->
p_libvlc
)
)
{
p_root
=
p_root
->
p_parent
;
}
libvlc_lock
(
p_this
->
p_libvlc
);
p_found
=
FindObjectName
(
p_root
,
psz_name
,
FIND_CHILD
);
if
(
p_found
==
NULL
&&
p_root
!=
VLC_OBJECT
(
p_this
->
p_libvlc
)
)
{
p_found
=
FindObjectName
(
VLC_OBJECT
(
p_this
->
p_libvlc
),
psz_name
,
FIND_CHILD
);
}
}
else
{
p_found
=
FindObjectName
(
p_this
,
psz_name
,
i_mode
);
}
/* Otherwise, recursively look for the object */
p_found
=
FindObjectName
(
p_this
,
psz_name
,
i_mode
);
libvlc_unlock
(
p_this
->
p_libvlc
);
return
p_found
;
...
...
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