summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2011-09-17 12:50:24 +0200
committerStefano Sabatini <stefasab@gmail.com>2011-09-18 12:38:39 +0200
commit17d2fee7893145f7cac6bad21653b7634364e0e0 (patch)
treeb8c0248b1def6546e128f7148bbdd0b57eb5c4a7 /libavfilter
parente72aa524d894e03ac13f549c3f9ee67bc6928dbc (diff)
asrc_anullsrc: do not show the int64_t value for channel_layout
That was clumsy and confusing, only show the descriptive channel layout string.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/asrc_anullsrc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/asrc_anullsrc.c b/libavfilter/asrc_anullsrc.c
index a52f799a59..a652c7e8f6 100644
--- a/libavfilter/asrc_anullsrc.c
+++ b/libavfilter/asrc_anullsrc.c
@@ -96,8 +96,8 @@ static int config_props(AVFilterLink *outlink)
chans_nb = av_get_channel_layout_nb_channels(priv->channel_layout);
av_get_channel_layout_string(buf, sizeof(buf), chans_nb, priv->channel_layout);
av_log(outlink->src, AV_LOG_INFO,
- "sample_rate:%d channel_layout:%"PRId64 " channel_layout_description:'%s' nb_samples:%d\n",
- priv->sample_rate, priv->channel_layout, buf, priv->nb_samples);
+ "sample_rate:%d channel_layout:'%s' nb_samples:%d\n",
+ priv->sample_rate, buf, priv->nb_samples);
return 0;
}