Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
7661b66b
Commit
7661b66b
authored
Jun 25, 2011
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "include/vlc_picture.h: Add pf_private_release() callback"
This reverts commit
cede8daf
.
parent
88c94d2b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
include/vlc_picture.h
include/vlc_picture.h
+0
-3
No files found.
include/vlc_picture.h
View file @
7661b66b
...
@@ -99,7 +99,6 @@ struct picture_t
...
@@ -99,7 +99,6 @@ struct picture_t
/** Private data - the video output plugin might want to put stuff here to
/** Private data - the video output plugin might want to put stuff here to
* keep track of the picture */
* keep track of the picture */
picture_sys_t
*
p_sys
;
picture_sys_t
*
p_sys
;
void
(
*
pf_private_release
)(
picture_t
*
);
/** This way the picture_Release can be overloaded */
/** This way the picture_Release can be overloaded */
void
(
*
pf_release
)(
picture_t
*
);
void
(
*
pf_release
)(
picture_t
*
);
...
@@ -178,8 +177,6 @@ static inline picture_t *picture_Hold( picture_t *p_picture )
...
@@ -178,8 +177,6 @@ static inline picture_t *picture_Hold( picture_t *p_picture )
*/
*/
static
inline
void
picture_Release
(
picture_t
*
p_picture
)
static
inline
void
picture_Release
(
picture_t
*
p_picture
)
{
{
if
(
p_picture
->
pf_private_release
)
p_picture
->
pf_private_release
(
p_picture
);
/* FIXME why do we let pf_release handle the i_refcount ? */
/* FIXME why do we let pf_release handle the i_refcount ? */
if
(
p_picture
->
pf_release
)
if
(
p_picture
->
pf_release
)
p_picture
->
pf_release
(
p_picture
);
p_picture
->
pf_release
(
p_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