diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-15 20:02:03 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-01-15 20:02:03 +0000 |
commit | 1d5b1885183f38673ccb64b0f143dde7946b94a6 (patch) | |
tree | 309fb9879d334f4a74b054dd53386247b4d04ee6 | |
parent | 7986e34db075df9b02d277d15b596e0341cbf19a (diff) | |
download | ffmpeg-1d5b1885183f38673ccb64b0f143dde7946b94a6.tar.gz |
Reindent.
Originally committed as revision 26379 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavfilter/avfilter.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index b99bcbb8a9..0378f2c56f 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -247,13 +247,13 @@ void ff_dprintf_ref(void *ctx, AVFilterBufferRef *ref, int end) void ff_dprintf_link(void *ctx, AVFilterLink *link, int end) { if (link->type == AVMEDIA_TYPE_VIDEO) { - dprintf(ctx, - "link[%p s:%dx%d fmt:%-16s %-16s->%-16s]%s", - link, link->w, link->h, - av_pix_fmt_descriptors[link->format].name, - link->src ? link->src->filter->name : "", - link->dst ? link->dst->filter->name : "", - end ? "\n" : ""); + dprintf(ctx, + "link[%p s:%dx%d fmt:%-16s %-16s->%-16s]%s", + link, link->w, link->h, + av_pix_fmt_descriptors[link->format].name, + link->src ? link->src->filter->name : "", + link->dst ? link->dst->filter->name : "", + end ? "\n" : ""); } else { char buf[128]; av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout); |