diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-06-01 23:05:13 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-06-05 11:52:47 +0200 |
commit | 1488c4dc0bbd64a4452ec408ad1c01a121daad76 (patch) | |
tree | 5ee870b80ff86b8af5f3ee59628762c8e53bdf3b /libavfilter/internal.h | |
parent | 1faf0d6a7a70cb0bcfbbff0421fb00bb6da658f9 (diff) | |
download | ffmpeg-1488c4dc0bbd64a4452ec408ad1c01a121daad76.tar.gz |
lavfi: move tracing utilities definition from video.c to avfilter.c
These utilities are meant to be defined in avfilter.c, since they are
generic and thus contain both audio and video code.
Diffstat (limited to 'libavfilter/internal.h')
-rw-r--r-- | libavfilter/internal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavfilter/internal.h b/libavfilter/internal.h index 595fdaeb12..0b294d83aa 100644 --- a/libavfilter/internal.h +++ b/libavfilter/internal.h @@ -134,8 +134,14 @@ void ff_free_pool(AVFilterPool *pool); void ff_command_queue_pop(AVFilterContext *filter); +/* misc debug functions */ + #define FF_DPRINTF_START(ctx, func) av_dlog(NULL, "%-16s: ", #func) +char *ff_get_ref_perms_string(char *buf, size_t buf_size, int perms); + +void ff_dlog_ref(void *ctx, AVFilterBufferRef *ref, int end); + void ff_dlog_link(void *ctx, AVFilterLink *link, int end); #endif /* AVFILTER_INTERNAL_H */ |