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
65fa7bc1
Commit
65fa7bc1
authored
Apr 16, 2012
by
Robert Nagy
Committed by
Stefano Sabatini
Apr 19, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: add avfilter_unref_bufferp()
Signed-off-by:
Stefano Sabatini
<
stefasab@gmail.com
>
parent
455fcf29
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
19 additions
and
1 deletion
+19
-1
APIchanges
doc/APIchanges
+3
-0
avfilter.c
libavfilter/avfilter.c
+6
-0
avfilter.h
libavfilter/avfilter.h
+9
-0
version.h
libavfilter/version.h
+1
-1
No files found.
doc/APIchanges
View file @
65fa7bc1
...
@@ -13,6 +13,9 @@ libavutil: 2011-04-18
...
@@ -13,6 +13,9 @@ libavutil: 2011-04-18
API changes, most recent first:
API changes, most recent first:
2012-04-20 - xxxxxxx - lavfi 2.70.100
Add avfilter_unref_bufferp() to avfilter.h.
2012-04-12 - xxxxxxx - lavfi 2.68.100
2012-04-12 - xxxxxxx - lavfi 2.68.100
Install libavfilter/asrc_abuffer.h public header.
Install libavfilter/asrc_abuffer.h public header.
...
...
libavfilter/avfilter.c
View file @
65fa7bc1
...
@@ -160,6 +160,12 @@ void avfilter_unref_buffer(AVFilterBufferRef *ref)
...
@@ -160,6 +160,12 @@ void avfilter_unref_buffer(AVFilterBufferRef *ref)
av_free
(
ref
);
av_free
(
ref
);
}
}
void
avfilter_unref_bufferp
(
AVFilterBufferRef
**
ref
)
{
avfilter_unref_buffer
(
*
ref
);
*
ref
=
NULL
;
}
void
avfilter_insert_pad
(
unsigned
idx
,
unsigned
*
count
,
size_t
padidx_off
,
void
avfilter_insert_pad
(
unsigned
idx
,
unsigned
*
count
,
size_t
padidx_off
,
AVFilterPad
**
pads
,
AVFilterLink
***
links
,
AVFilterPad
**
pads
,
AVFilterLink
***
links
,
AVFilterPad
*
newpad
)
AVFilterPad
*
newpad
)
...
...
libavfilter/avfilter.h
View file @
65fa7bc1
...
@@ -187,6 +187,15 @@ AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
...
@@ -187,6 +187,15 @@ AVFilterBufferRef *avfilter_ref_buffer(AVFilterBufferRef *ref, int pmask);
*/
*/
void
avfilter_unref_buffer
(
AVFilterBufferRef
*
ref
);
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
);
/**
/**
* A list of supported formats for one end of a filter link. This is used
* A list of supported formats for one end of a filter link. This is used
* during the format negotiation process to try to pick the best format to
* during the format negotiation process to try to pick the best format to
...
...
libavfilter/version.h
View file @
65fa7bc1
...
@@ -29,7 +29,7 @@
...
@@ -29,7 +29,7 @@
#include "libavutil/avutil.h"
#include "libavutil/avutil.h"
#define LIBAVFILTER_VERSION_MAJOR 2
#define LIBAVFILTER_VERSION_MAJOR 2
#define LIBAVFILTER_VERSION_MINOR 7
0
#define LIBAVFILTER_VERSION_MINOR 7
1
#define LIBAVFILTER_VERSION_MICRO 100
#define LIBAVFILTER_VERSION_MICRO 100
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
#define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
...
...
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