[FFmpeg-cvslog] tta: Fix comment about channel number; TTA supports >2 channels.
Aneesh Dogra
git at videolan.org
Wed May 16 22:36:01 CEST 2012
ffmpeg | branch: master | Aneesh Dogra <lionaneesh at gmail.com> | Tue May 15 22:20:02 2012 +0530| [46ea46357a1f9adf7a8266125308803d00024b75] | committer: Diego Biurrun
tta: Fix comment about channel number; TTA supports >2 channels.
Signed-off-by: Diego Biurrun <diego at biurrun.de>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=46ea46357a1f9adf7a8266125308803d00024b75
---
libavcodec/tta.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/tta.c b/libavcodec/tta.c
index e28023f..0650086 100644
--- a/libavcodec/tta.c
+++ b/libavcodec/tta.c
@@ -416,7 +416,7 @@ static int tta_decode_frame(AVCodecContext *avctx, void *data,
if (cur_chan < (s->channels-1))
cur_chan++;
else {
- // decorrelate in case of stereo integer
+ // decorrelate in case of multiple channels
if (s->channels > 1) {
int32_t *r = p - 1;
for (*p += *r / 2; r > p - s->channels; r--)
More information about the ffmpeg-cvslog
mailing list