diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-05-18 00:59:42 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-05-18 00:59:42 +0200 |
commit | 17d4233c9c119ee9cb011e1cc6961df87daa7997 (patch) | |
tree | 29463144582ed9a57e25878c22f84188e0814d02 | |
parent | e1a8df70a2de1e1f2c56d93329b8d793789c179e (diff) | |
download | ffmpeg-17d4233c9c119ee9cb011e1cc6961df87daa7997.tar.gz |
lavfi/aevalsrc: reindent after the previous commit
-rw-r--r-- | libavfilter/asrc_aevalsrc.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/asrc_aevalsrc.c b/libavfilter/asrc_aevalsrc.c index e342e91b33..f259d142e9 100644 --- a/libavfilter/asrc_aevalsrc.c +++ b/libavfilter/asrc_aevalsrc.c @@ -135,14 +135,14 @@ static int init(AVFilterContext *ctx, const char *args, void *opaque) goto end; } } else { - /* guess channel layout from nb expressions/channels */ - eval->chlayout = av_get_default_channel_layout(eval->nb_channels); - if (!eval->chlayout) { - av_log(ctx, AV_LOG_ERROR, "Invalid number of channels '%d' provided\n", - eval->nb_channels); - ret = AVERROR(EINVAL); - goto end; - } + /* guess channel layout from nb expressions/channels */ + eval->chlayout = av_get_default_channel_layout(eval->nb_channels); + if (!eval->chlayout) { + av_log(ctx, AV_LOG_ERROR, "Invalid number of channels '%d' provided\n", + eval->nb_channels); + ret = AVERROR(EINVAL); + goto end; + } } if ((ret = ff_parse_sample_rate(&eval->sample_rate, eval->sample_rate_str, ctx))) |