diff options
author | Clément Bœsch <u@pkh.me> | 2014-06-29 13:26:04 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-06-29 13:26:04 +0200 |
commit | b18d1b094e90f3d3d48543eaa39e0c65ee474e65 (patch) | |
tree | bb6160aa3e5d0a10024a718a3543ce464f8339ea | |
parent | f02a4408149cc911958d92b13829f37a33301a20 (diff) | |
download | ffmpeg-b18d1b094e90f3d3d48543eaa39e0c65ee474e65.tar.gz |
avfilter/buffersrc: reindent
-rw-r--r-- | libavfilter/buffersrc.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c index bb44e45d3c..27d3db085b 100644 --- a/libavfilter/buffersrc.c +++ b/libavfilter/buffersrc.c @@ -379,13 +379,13 @@ static av_cold int init_audio(AVFilterContext *ctx) if (s->channel_layout_str) { int n; - /* TODO reindent */ - s->channel_layout = av_get_channel_layout(s->channel_layout_str); - if (!s->channel_layout) { - av_log(ctx, AV_LOG_ERROR, "Invalid channel layout %s.\n", - s->channel_layout_str); - return AVERROR(EINVAL); - } + + s->channel_layout = av_get_channel_layout(s->channel_layout_str); + if (!s->channel_layout) { + av_log(ctx, AV_LOG_ERROR, "Invalid channel layout %s.\n", + s->channel_layout_str); + return AVERROR(EINVAL); + } n = av_get_channel_layout_nb_channels(s->channel_layout); if (s->channels) { if (n != s->channels) { |