Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
ffmpeg
Commits
ba7dfe5c
Commit
ba7dfe5c
authored
Feb 10, 2014
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi doxy: add buffer{src,sink}.h to the main lavfi doxy group
parent
f758ea6e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
libavfilter/buffersink.h
libavfilter/buffersink.h
+11
-0
libavfilter/buffersrc.h
libavfilter/buffersrc.h
+11
-0
No files found.
libavfilter/buffersink.h
View file @
ba7dfe5c
...
@@ -21,11 +21,18 @@
...
@@ -21,11 +21,18 @@
/**
/**
* @file
* @file
* @ingroup lavfi_buffersink
* memory buffer sink API
* memory buffer sink API
*/
*/
#include "avfilter.h"
#include "avfilter.h"
/**
* @defgroup lavfi_buffersink Buffer sink API
* @ingroup lavfi
* @{
*/
#if FF_API_AVFILTERBUFFER
#if FF_API_AVFILTERBUFFER
/**
/**
* Get a buffer with filtered data from sink and put it in buf.
* Get a buffer with filtered data from sink and put it in buf.
...
@@ -98,4 +105,8 @@ int av_buffersink_get_frame(AVFilterContext *ctx, AVFrame *frame);
...
@@ -98,4 +105,8 @@ int av_buffersink_get_frame(AVFilterContext *ctx, AVFrame *frame);
*/
*/
int
av_buffersink_get_samples
(
AVFilterContext
*
ctx
,
AVFrame
*
frame
,
int
nb_samples
);
int
av_buffersink_get_samples
(
AVFilterContext
*
ctx
,
AVFrame
*
frame
,
int
nb_samples
);
/**
* @}
*/
#endif
/* AVFILTER_BUFFERSINK_H */
#endif
/* AVFILTER_BUFFERSINK_H */
libavfilter/buffersrc.h
View file @
ba7dfe5c
...
@@ -22,11 +22,18 @@
...
@@ -22,11 +22,18 @@
/**
/**
* @file
* @file
* @ingroup lavfi_buffersrc
* Memory buffer source API.
* Memory buffer source API.
*/
*/
#include "avfilter.h"
#include "avfilter.h"
/**
* @defgroup lavfi_buffersrc Buffer source API
* @ingroup lavfi
* @{
*/
#if FF_API_AVFILTERBUFFER
#if FF_API_AVFILTERBUFFER
/**
/**
* Add a buffer to a filtergraph.
* Add a buffer to a filtergraph.
...
@@ -71,4 +78,8 @@ int av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame);
...
@@ -71,4 +78,8 @@ int av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame);
*/
*/
int
av_buffersrc_add_frame
(
AVFilterContext
*
ctx
,
AVFrame
*
frame
);
int
av_buffersrc_add_frame
(
AVFilterContext
*
ctx
,
AVFrame
*
frame
);
/**
* @}
*/
#endif
/* AVFILTER_BUFFERSRC_H */
#endif
/* AVFILTER_BUFFERSRC_H */
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