Commit 14bc60db authored by Justin Ruggles's avatar Justin Ruggles

libspeexdec: cosmetics: reindent

parent 7eeaa679
...@@ -125,13 +125,13 @@ static int libspeex_decode_frame(AVCodecContext *avctx, ...@@ -125,13 +125,13 @@ static int libspeex_decode_frame(AVCodecContext *avctx,
} }
/* decode a single frame */ /* decode a single frame */
ret = speex_decode_int(s->dec_state, &s->bits, output); ret = speex_decode_int(s->dec_state, &s->bits, output);
if (ret <= -2) { if (ret <= -2) {
av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n"); av_log(avctx, AV_LOG_ERROR, "Error decoding Speex frame.\n");
return -1; return -1;
} }
if (avctx->channels == 2) if (avctx->channels == 2)
speex_decode_stereo_int(output, s->frame_size, &s->stereo); speex_decode_stereo_int(output, s->frame_size, &s->stereo);
*data_size = out_size; *data_size = out_size;
return consumed; return consumed;
......
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