[FFmpeg-cvslog] r24847 - trunk/libavfilter/avfilter.c
stefano
subversion
Fri Aug 20 17:16:02 CEST 2010
Author: stefano
Date: Fri Aug 20 17:16:02 2010
New Revision: 24847
Log:
Make ff_dprintf_ref() print the information related to the referenced
AVFilterBuffer.
Modified:
trunk/libavfilter/avfilter.c
Modified: trunk/libavfilter/avfilter.c
==============================================================================
--- trunk/libavfilter/avfilter.c Fri Aug 20 17:15:57 2010 (r24846)
+++ trunk/libavfilter/avfilter.c Fri Aug 20 17:16:02 2010 (r24847)
@@ -194,8 +194,8 @@ int avfilter_config_links(AVFilterContex
void ff_dprintf_ref(void *ctx, AVFilterBufferRef *ref, int end)
{
dprintf(ctx,
- "ref[%p data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64,
- ref,
+ "ref[%p buf:%p refcount:%d perms:0x%x data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64,
+ ref, ref->buf, ref->buf->refcount, ref->perms,
ref->data[0],
ref->linesize[0], ref->linesize[1], ref->linesize[2], ref->linesize[3],
ref->pts, ref->pos);
More information about the ffmpeg-cvslog
mailing list