summaryrefslogtreecommitdiff
path: root/libavcodec/tta.c
diff options
context:
space:
mode:
authorAneesh Dogra <lionaneesh@gmail.com>2012-05-15 22:02:02 +0530
committerDiego Biurrun <diego@biurrun.de>2012-05-15 19:10:46 +0200
commit46ea46357a1f9adf7a8266125308803d00024b75 (patch)
tree258c639bb6aa81d300ec73d40810a6b00ac63683 /libavcodec/tta.c
parent91791ac2edc46ff5f2ab09bbcdc58c3053f23075 (diff)
tta: Fix comment about channel number; TTA supports >2 channels.
Signed-off-by: Diego Biurrun <diego@biurrun.de>
Diffstat (limited to 'libavcodec/tta.c')
-rw-r--r--libavcodec/tta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tta.c b/libavcodec/tta.c
index e28023f941..0650086dcd 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--)