Browse Source

lavfi: remove stray reference to planar/packed.

tags/n0.11
Nicolas George 13 years ago
parent
commit
7997fc49ef
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      libavfilter/video.c

+ 2
- 3
libavfilter/video.c View File

@@ -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" : "");


Loading…
Cancel
Save