[SCM] libav/experimental: adpcm: Fix a comment
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 17:19:02 UTC 2013
The following commit has been merged in the experimental branch:
commit 86abf868ec28b84efe014dbf5566bcff69382cc1
Author: Martin Storsjö <martin at martin.st>
Date: Sun Nov 14 10:23:58 2010 +0000
adpcm: Fix a comment
Originally committed as revision 25751 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c
index 60adebe..56eb602 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;
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list