Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
b70d89a0
Commit
b70d89a0
authored
Apr 16, 2012
by
Robert Nagy
Committed by
Anton Khirnov
Jul 20, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: add avfilter_unref_bufferp()
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
ce64e5bf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
0 deletions
+21
-0
APIchanges
doc/APIchanges
+3
-0
avfilter.h
libavfilter/avfilter.h
+12
-0
buffer.c
libavfilter/buffer.c
+6
-0
No files found.
doc/APIchanges
View file @
b70d89a0
...
...
@@ -13,6 +13,9 @@ libavutil: 2011-04-18
API changes, most recent first:
2012-07-xx - xxxxxxx - lavfi 3.0.0 - avfilter.h
Add avfilter_unref_bufferp().
2012-07-10 - 5fade8a - lavu 51.37.0
Add av_malloc_array() and av_mallocz_array()
...
...
libavfilter/avfilter.h
View file @
b70d89a0
...
...
@@ -195,9 +195,21 @@ AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
* buffer, the buffer itself is also automatically freed.
*
* @param ref reference to the buffer, may be NULL
*
* @note it is recommended to use avfilter_unref_bufferp() instead of this
* function
*/
void
avfilter_unref_buffer
(
AVFilterBufferRef
*
ref
);
/**
* Remove a reference to a buffer and set the pointer to NULL.
* If this is the last reference to the buffer, the buffer itself
* is also automatically freed.
*
* @param ref pointer to the buffer reference
*/
void
avfilter_unref_bufferp
(
AVFilterBufferRef
**
ref
);
#if FF_API_AVFILTERPAD_PUBLIC
/**
* A filter pad used for either input or output.
...
...
libavfilter/buffer.c
View file @
b70d89a0
...
...
@@ -84,6 +84,12 @@ void avfilter_unref_buffer(AVFilterBufferRef *ref)
av_free
(
ref
);
}
void
avfilter_unref_bufferp
(
AVFilterBufferRef
**
ref
)
{
avfilter_unref_buffer
(
*
ref
);
*
ref
=
NULL
;
}
int
avfilter_copy_frame_props
(
AVFilterBufferRef
*
dst
,
const
AVFrame
*
src
)
{
dst
->
pts
=
src
->
pts
;
...
...
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