diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-05-18 13:29:43 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-05-19 10:59:52 +0200 |
commit | 7997fc49ef5817bd86e24335ceba30ce6ee2332e (patch) | |
tree | f3aadad0bafbf30f0a7b2c536352892377157520 /libavfilter/video.c | |
parent | 9567f410aa9c9f727cd123a5d78c773e99798ee4 (diff) | |
download | ffmpeg-7997fc49ef5817bd86e24335ceba30ce6ee2332e.tar.gz |
lavfi: remove stray reference to planar/packed.
Diffstat (limited to 'libavfilter/video.c')
-rw-r--r-- | libavfilter/video.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libavfilter/video.c b/libavfilter/video.c index 86dfd901f8..c7c8b255df 100644 --- a/libavfilter/video.c +++ b/libavfilter/video.c @@ -52,11 +52,10 @@ static void ff_dlog_ref(void *ctx, AVFilterBufferRef *ref, int end) av_get_picture_type_char(ref->video->pict_type)); } if (ref->audio) { - av_dlog(ctx, " cl:%"PRId64"d n:%d r:%d p:%d", + av_dlog(ctx, " cl:%"PRId64"d n:%d r:%d", ref->audio->channel_layout, ref->audio->nb_samples, - ref->audio->sample_rate, - ref->audio->planar); + ref->audio->sample_rate); } av_dlog(ctx, "]%s", end ? "\n" : ""); |