[FFmpeg-cvslog] r25751 - trunk/libavcodec/adpcm.c
mstorsjo
subversion
Sun Nov 14 11:23:58 CET 2010
Author: mstorsjo
Date: Sun Nov 14 11:23:58 2010
New Revision: 25751
Log:
adpcm: Fix a comment
Modified:
trunk/libavcodec/adpcm.c
Modified: trunk/libavcodec/adpcm.c
==============================================================================
--- trunk/libavcodec/adpcm.c Sun Nov 14 10:35:51 2010 (r25750)
+++ trunk/libavcodec/adpcm.c Sun Nov 14 11:23:58 2010 (r25751)
@@ -355,7 +355,7 @@ static void adpcm_compress_trellis(AVCod
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;
More information about the ffmpeg-cvslog
mailing list