Commit 46ea4635 authored by Aneesh Dogra's avatar Aneesh Dogra Committed by Diego Biurrun

tta: Fix comment about channel number; TTA supports >2 channels.

Signed-off-by: 's avatarDiego Biurrun <diego@biurrun.de>
parent 91791ac2
......@@ -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--)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment