diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-20 14:41:18 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-08-20 14:41:18 +0000 |
commit | 28c52b1ed9cf0fdcf214db9450e652c977853cfb (patch) | |
tree | a06284b639785738f1103184a52f2470df9f7800 /libavfilter | |
parent | 3fa3e4f4eca82f91c2a0bd9e4985da445fab8dd5 (diff) | |
download | ffmpeg-28c52b1ed9cf0fdcf214db9450e652c977853cfb.tar.gz |
Only print the pointer to the first plane in ff_dprintf_picref().
To display the other planes is usually not useful and add noise to the
output.
Originally committed as revision 24843 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index a9a361cd25..0c5c741787 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -194,9 +194,9 @@ int avfilter_config_links(AVFilterContext *filter) void ff_dprintf_picref(void *ctx, AVFilterBufferRef *picref, int end) { dprintf(ctx, - "picref[%p data[%p, %p, %p, %p] linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64" a:%d/%d s:%dx%d]%s", + "picref[%p data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64" a:%d/%d s:%dx%d]%s", picref, - picref->data [0], picref->data [1], picref->data [2], picref->data [3], + picref->data[0], picref->linesize[0], picref->linesize[1], picref->linesize[2], picref->linesize[3], picref->pts, picref->pos, picref->video->pixel_aspect.num, picref->video->pixel_aspect.den, picref->video->w, picref->video->h, |