Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
359b5a0e
Commit
359b5a0e
authored
May 31, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made picture_Hold return the provided picture.
parent
6452698b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
include/vlc_picture.h
include/vlc_picture.h
+4
-1
No files found.
include/vlc_picture.h
View file @
359b5a0e
...
@@ -183,11 +183,14 @@ VLC_EXPORT( void, picture_Delete, ( picture_t * ) );
...
@@ -183,11 +183,14 @@ VLC_EXPORT( void, picture_Delete, ( picture_t * ) );
/**
/**
* This function will increase the picture reference count.
* This function will increase the picture reference count.
* It will not have any effect on picture obtained from vout
* It will not have any effect on picture obtained from vout
*
* It returns the given picture for convenience.
*/
*/
static
inline
void
picture_Hold
(
picture_t
*
p_picture
)
static
inline
picture_t
*
picture_Hold
(
picture_t
*
p_picture
)
{
{
if
(
p_picture
->
pf_release
)
if
(
p_picture
->
pf_release
)
p_picture
->
i_refcount
++
;
p_picture
->
i_refcount
++
;
return
p_picture
;
}
}
/**
/**
* This function will release a picture.
* This function will release a picture.
...
...
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