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
3e2cf79e
Commit
3e2cf79e
authored
May 16, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
buffersrc: export forgotten function
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
703e920b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
buffersrc.c
libavfilter/buffersrc.c
+1
-1
buffersrc.h
libavfilter/buffersrc.h
+9
-0
No files found.
libavfilter/buffersrc.c
View file @
3e2cf79e
...
@@ -138,7 +138,7 @@ int av_buffersrc_write_frame(AVFilterContext *buffer_filter, AVFrame *frame)
...
@@ -138,7 +138,7 @@ int av_buffersrc_write_frame(AVFilterContext *buffer_filter, AVFrame *frame)
return
0
;
return
0
;
}
}
static
int
av_buffersrc_buffer
(
AVFilterContext
*
s
,
AVFilterBufferRef
*
buf
)
int
av_buffersrc_buffer
(
AVFilterContext
*
s
,
AVFilterBufferRef
*
buf
)
{
{
BufferSourceContext
*
c
=
s
->
priv
;
BufferSourceContext
*
c
=
s
->
priv
;
int
ret
;
int
ret
;
...
...
libavfilter/buffersrc.h
View file @
3e2cf79e
...
@@ -62,6 +62,15 @@ int av_buffersrc_add_ref(AVFilterContext *buffer_src,
...
@@ -62,6 +62,15 @@ int av_buffersrc_add_ref(AVFilterContext *buffer_src,
*/
*/
unsigned
av_buffersrc_get_nb_failed_requests
(
AVFilterContext
*
buffer_src
);
unsigned
av_buffersrc_get_nb_failed_requests
(
AVFilterContext
*
buffer_src
);
/**
* Add a buffer to the filtergraph s.
*
* @param buf buffer containing frame data to be passed down the filtergraph.
* This function will take ownership of buf, the user must not free it.
* A NULL buf signals EOF -- i.e. no more frames will be sent to this filter.
*/
int
av_buffersrc_buffer
(
AVFilterContext
*
s
,
AVFilterBufferRef
*
buf
);
/**
/**
* Add a frame to the buffer source.
* Add a frame to the buffer source.
*
*
...
...
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