Commit 93219859 authored by vitor's avatar vitor

Cosmetics: indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9729 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0ff15546
...@@ -499,15 +499,16 @@ static int alac_decode_frame(AVCodecContext *avctx, ...@@ -499,15 +499,16 @@ static int alac_decode_frame(AVCodecContext *avctx,
get_bits(&alac->gb, 12); /* unknown, skip 12 bits */ get_bits(&alac->gb, 12); /* unknown, skip 12 bits */
hassize = get_bits(&alac->gb, 1); /* the output sample size is stored soon */ /* the output sample size is stored soon */
hassize = get_bits(&alac->gb, 1);
wasted_bytes = get_bits(&alac->gb, 2); /* unknown ? */ wasted_bytes = get_bits(&alac->gb, 2); /* unknown ? */
isnotcompressed = get_bits(&alac->gb, 1); /* whether the frame is compressed */ /* whether the frame is compressed */
isnotcompressed = get_bits(&alac->gb, 1);
if (hassize) { if (hassize) {
/* now read the number of samples, /* now read the number of samples as a 32bit integer */
* as a 32bit integer */
outputsamples = get_bits(&alac->gb, 32); outputsamples = get_bits(&alac->gb, 32);
} else } else
outputsamples = alac->setinfo_max_samples_per_frame; outputsamples = alac->setinfo_max_samples_per_frame;
...@@ -522,7 +523,6 @@ static int alac_decode_frame(AVCodecContext *avctx, ...@@ -522,7 +523,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
int prediction_type[channels]; int prediction_type[channels];
int prediction_quantitization[channels]; int prediction_quantitization[channels];
int ricemodifier[channels]; int ricemodifier[channels];
int i, chan; int i, chan;
interlacing_shift = get_bits(&alac->gb, 8); interlacing_shift = get_bits(&alac->gb, 8);
...@@ -638,7 +638,6 @@ static int alac_decode_frame(AVCodecContext *avctx, ...@@ -638,7 +638,6 @@ static int alac_decode_frame(AVCodecContext *avctx,
break; break;
} }
return input_buffer_size; return input_buffer_size;
} }
......
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