[FFmpeg-cvslog] r25732 - trunk/libavcodec/adpcm.c
mstorsjo
subversion
Fri Nov 12 13:28:02 CET 2010
Author: mstorsjo
Date: Fri Nov 12 13:28:02 2010
New Revision: 25732
Log:
Reindent
Modified:
trunk/libavcodec/adpcm.c
Modified: trunk/libavcodec/adpcm.c
==============================================================================
--- trunk/libavcodec/adpcm.c Fri Nov 12 13:27:27 2010 (r25731)
+++ trunk/libavcodec/adpcm.c Fri Nov 12 13:28:02 2010 (r25732)
@@ -402,18 +402,18 @@ static void adpcm_compress_trellis(AVCod
goto next_##NAME;\
}\
u = nodes_next[pos];\
- if(!u) {\
- assert(pathn < FREEZE_INTERVAL<<avctx->trellis);\
- u = t++;\
- nodes_next[pos] = u;\
- u->path = pathn++;\
- }\
- u->ssd = ssd;\
- u->step = STEP_INDEX;\
- u->sample2 = nodes[j]->sample1;\
- u->sample1 = dec_sample;\
- paths[u->path].nibble = nibble;\
- paths[u->path].prev = nodes[j]->path;\
+ if(!u) {\
+ assert(pathn < FREEZE_INTERVAL<<avctx->trellis);\
+ u = t++;\
+ nodes_next[pos] = u;\
+ u->path = pathn++;\
+ }\
+ u->ssd = ssd;\
+ u->step = STEP_INDEX;\
+ u->sample2 = nodes[j]->sample1;\
+ u->sample1 = dec_sample;\
+ paths[u->path].nibble = nibble;\
+ paths[u->path].prev = nodes[j]->path;\
/* Sift the newly inserted node down in the heap to \
* restore the heap property. */\
while (pos > 0) {\
More information about the ffmpeg-cvslog
mailing list