]> git.sesse.net Git - ffmpeg/commitdiff
adpcm: Fix a comment in the trellis heap code
authorMartin Storsjö <martin@martin.st>
Sat, 20 Nov 2010 11:24:19 +0000 (11:24 +0000)
committerMartin Storsjö <martin@martin.st>
Sat, 20 Nov 2010 11:24:19 +0000 (11:24 +0000)
This makes the wording consistent with how people usually talk about heaps.

Originally committed as revision 25775 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/adpcm.c

index 5e7c54f75449b3cb44bbdc2418447be032bc3f2c..1e9ab5b943e5891b2a73afd9f1e829760a5ccb07 100644 (file)
@@ -420,7 +420,7 @@ static void adpcm_compress_trellis(AVCodecContext *avctx, const short *samples,
                     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 \
+                    /* Sift the newly inserted node up in the heap to \
                      * restore the heap property. */\
                     while (pos > 0) {\
                         int parent = (pos - 1) >> 1;\