#include "avfilter.h"
#include "avfiltergraph.h"
Go to the source code of this file.
Defines | |
| #define | FF_DPRINTF_START(ctx, func) dprintf(NULL, "%-16s: ", #func) |
Functions | |
| void | ff_dprintf_ref (void *ctx, AVFilterBufferRef *ref, int end) |
| char * | ff_get_ref_perms_string (char *buf, size_t buf_size, int perms) |
| void | ff_dprintf_link (void *ctx, AVFilterLink *link, int end) |
| int | ff_avfilter_graph_check_validity (AVFilterGraph *graphctx, AVClass *log_ctx) |
| Check for the validity of graph. | |
| int | ff_avfilter_graph_config_links (AVFilterGraph *graphctx, AVClass *log_ctx) |
| Configure all the links of graphctx. | |
| int | ff_avfilter_graph_config_formats (AVFilterGraph *graphctx, AVClass *log_ctx) |
| Configure the formats of all the links in the graph. | |
| void | ff_avfilter_default_free_buffer (AVFilterBuffer *buf) |
| default handler for freeing audio/video buffer when there are no references left | |
Definition in file internal.h.
| #define FF_DPRINTF_START | ( | ctx, | |||
| func | ) | dprintf(NULL, "%-16s: ", #func) |
Definition at line 36 of file internal.h.
Referenced by avfilter_draw_slice(), avfilter_get_video_buffer(), avfilter_request_frame(), and avfilter_start_frame().
| void ff_avfilter_default_free_buffer | ( | AVFilterBuffer * | buf | ) |
default handler for freeing audio/video buffer when there are no references left
Definition at line 29 of file defaults.c.
Referenced by avfilter_default_get_audio_buffer(), and avfilter_get_video_buffer_ref_from_arrays().
| int ff_avfilter_graph_check_validity | ( | AVFilterGraph * | graphctx, | |
| AVClass * | log_ctx | |||
| ) |
Check for the validity of graph.
A graph is considered valid if all its input and output pads are connected.
Definition at line 79 of file avfiltergraph.c.
Referenced by avfilter_graph_config().
| int ff_avfilter_graph_config_formats | ( | AVFilterGraph * | graphctx, | |
| AVClass * | log_ctx | |||
| ) |
Configure the formats of all the links in the graph.
Definition at line 216 of file avfiltergraph.c.
Referenced by avfilter_graph_config().
| int ff_avfilter_graph_config_links | ( | AVFilterGraph * | graphctx, | |
| AVClass * | log_ctx | |||
| ) |
Configure all the links of graphctx.
Definition at line 109 of file avfiltergraph.c.
Referenced by avfilter_graph_config().
| void ff_dprintf_link | ( | void * | ctx, | |
| AVFilterLink * | link, | |||
| int | end | |||
| ) |
Definition at line 248 of file avfilter.c.
Referenced by avfilter_draw_slice(), avfilter_get_video_buffer(), avfilter_request_frame(), and avfilter_start_frame().
| void ff_dprintf_ref | ( | void * | ctx, | |
| AVFilterBufferRef * | ref, | |||
| int | end | |||
| ) |
Definition at line 220 of file avfilter.c.
Referenced by avfilter_get_video_buffer(), and avfilter_start_frame().
| char* ff_get_ref_perms_string | ( | char * | buf, | |
| size_t | buf_size, | |||
| int | perms | |||
| ) |
Definition at line 208 of file avfilter.c.
Referenced by avfilter_get_video_buffer(), and ff_dprintf_ref().
1.5.6