diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index f3a9c1ff4878ebb15f70bdd19b778ec6c52a86e4..cfdaa82cc53cf9ac4385ee873a6a980ea4284ba6 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -206,6 +206,15 @@ void ff_dprintf_ref(void *ctx, AVFilterBufferRef *ref, int end) !ref->video->interlaced ? 'P' : /* Progressive */ ref->video->top_field_first ? 'T' : 'B'); /* Top / Bottom */ } + if (ref->audio) { + dprintf(ctx, " cl:%"PRId64"d sn:%d s:%d sr:%d p:%d", + ref->audio->channel_layout, + ref->audio->samples_nb, + ref->audio->size, + ref->audio->sample_rate, + ref->audio->planar); + } + dprintf(ctx, "]%s", end ? "\n" : ""); }