Commit 6d530344 authored by Paul B Mahol's avatar Paul B Mahol

libaacplus: cosmetics: fix indentation

Signed-off-by: 's avatarPaul B Mahol <onemda@gmail.com>
parent 963c5800
......@@ -53,9 +53,9 @@ static av_cold int aacPlus_encode_init(AVCodecContext *avctx)
s->aacplus_handle = aacplusEncOpen(avctx->sample_rate, avctx->channels,
&s->samples_input, &s->max_output_bytes);
if(!s->aacplus_handle) {
av_log(avctx, AV_LOG_ERROR, "can't open encoder\n");
return -1;
if (!s->aacplus_handle) {
av_log(avctx, AV_LOG_ERROR, "can't open encoder\n");
return -1;
}
/* check aacplus version */
......@@ -112,8 +112,8 @@ static av_cold int aacPlus_encode_close(AVCodecContext *avctx)
aacPlusAudioContext *s = avctx->priv_data;
av_freep(&avctx->extradata);
aacplusEncClose(s->aacplus_handle);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment