00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef AVFILTER_INTERNAL_H
00020 #define AVFILTER_INTERNAL_H
00021
00027 #include "avfilter.h"
00028 #include "avfiltergraph.h"
00029
00030 void ff_dprintf_ref(void *ctx, AVFilterBufferRef *ref, int end);
00031
00032 char *ff_get_ref_perms_string(char *buf, size_t buf_size, int perms);
00033
00034 void ff_dprintf_link(void *ctx, AVFilterLink *link, int end);
00035
00036 #define FF_DPRINTF_START(ctx, func) dprintf(NULL, "%-16s: ", #func)
00037
00046 int ff_avfilter_graph_check_validity(AVFilterGraph *graphctx, AVClass *log_ctx);
00047
00053 int ff_avfilter_graph_config_links(AVFilterGraph *graphctx, AVClass *log_ctx);
00054
00058 int ff_avfilter_graph_config_formats(AVFilterGraph *graphctx, AVClass *log_ctx);
00059
00061 void ff_avfilter_default_free_buffer(AVFilterBuffer *buf);
00062
00063 #endif