summaryrefslogtreecommitdiff
path: root/libavcodec/libspeexdec.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2011-10-21 12:10:35 -0400
committerJustin Ruggles <justin.ruggles@gmail.com>2011-10-21 17:07:04 -0400
commit14bc60dbaeb10cb95bd47902067984de88e0315e (patch)
treef634bc3aa93e8f4e9973c386d56bed152253f001 /libavcodec/libspeexdec.c
parent7eeaa6796b647f8ef46c234e4f80a7dd5591ee71 (diff)
libspeexdec: cosmetics: reindent
Diffstat (limited to 'libavcodec/libspeexdec.c')
-rw-r--r--libavcodec/libspeexdec.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/libspeexdec.c b/libavcodec/libspeexdec.c
index fc90308065..69742297f0 100644
--- a/libavcodec/libspeexdec.c
+++ b/libavcodec/libspeexdec.c
@@ -125,13 +125,13 @@ static int libspeex_decode_frame(AVCodecContext *avctx,
}
/* decode a single frame */
- ret = speex_decode_int(s->dec_state, &s->bits, output);
- if (ret <= -2) {
- av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n");
- return -1;
- }
- if (avctx->channels == 2)
- speex_decode_stereo_int(output, s->frame_size, &s->stereo);
+ ret = speex_decode_int(s->dec_state, &s->bits, output);
+ if (ret <= -2) {
+ av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n");
+ return -1;
+ }
+ if (avctx->channels == 2)
+ speex_decode_stereo_int(output, s->frame_size, &s->stereo);
*data_size = out_size;
return consumed;