diff options
author | Martin Storsjö <martin@martin.st> | 2010-11-14 10:23:58 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-11-14 10:23:58 +0000 |
commit | 86abf868ec28b84efe014dbf5566bcff69382cc1 (patch) | |
tree | f29ee1021ba27d3af66372e6c835d31f31e40686 /libavcodec | |
parent | bad1117b8cecf740ff7fd5d8edf5ec754c53cf7b (diff) | |
download | ffmpeg-86abf868ec28b84efe014dbf5566bcff69382cc1.tar.gz |
adpcm: Fix a comment
Originally committed as revision 25751 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/adpcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 60adebe8d0..56eb602df1 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -355,7 +355,7 @@ static void adpcm_compress_trellis(AVCodecContext *avctx, const short *samples, int heap_pos = 0; memset(nodes_next, 0, frontier*sizeof(TrellisNode*)); for(j=0; j<frontier && nodes[j]; j++) { - // higher j have higher ssd already, so they're unlikely to use a suboptimal next sample too + // higher j have higher ssd already, so they're likely to yield a suboptimal next sample too const int range = (j < frontier/2) ? 1 : 0; const int step = nodes[j]->step; int nidx; |