[FFmpeg-cvslog] lavfi: remove stray reference to planar/packed.
Nicolas George
git at videolan.org
Sat May 19 11:10:30 CEST 2012
ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Fri May 18 13:29:43 2012 +0200| [7997fc49ef5817bd86e24335ceba30ce6ee2332e] | committer: Nicolas George
lavfi: remove stray reference to planar/packed.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7997fc49ef5817bd86e24335ceba30ce6ee2332e
---
libavfilter/video.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/libavfilter/video.c b/libavfilter/video.c
index 86dfd90..c7c8b25 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" : "");
More information about the ffmpeg-cvslog
mailing list