Commit 4106b7f1 authored by Martin Storsjö's avatar Martin Storsjö

Reindent

Originally committed as revision 25732 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f82e8f34
...@@ -402,18 +402,18 @@ static void adpcm_compress_trellis(AVCodecContext *avctx, const short *samples, ...@@ -402,18 +402,18 @@ static void adpcm_compress_trellis(AVCodecContext *avctx, const short *samples,
goto next_##NAME;\ goto next_##NAME;\
}\ }\
u = nodes_next[pos];\ u = nodes_next[pos];\
if(!u) {\ if(!u) {\
assert(pathn < FREEZE_INTERVAL<<avctx->trellis);\ assert(pathn < FREEZE_INTERVAL<<avctx->trellis);\
u = t++;\ u = t++;\
nodes_next[pos] = u;\ nodes_next[pos] = u;\
u->path = pathn++;\ u->path = pathn++;\
}\ }\
u->ssd = ssd;\ u->ssd = ssd;\
u->step = STEP_INDEX;\ u->step = STEP_INDEX;\
u->sample2 = nodes[j]->sample1;\ u->sample2 = nodes[j]->sample1;\
u->sample1 = dec_sample;\ u->sample1 = dec_sample;\
paths[u->path].nibble = nibble;\ paths[u->path].nibble = nibble;\
paths[u->path].prev = nodes[j]->path;\ paths[u->path].prev = nodes[j]->path;\
/* Sift the newly inserted node down in the heap to \ /* Sift the newly inserted node down in the heap to \
* restore the heap property. */\ * restore the heap property. */\
while (pos > 0) {\ while (pos > 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