# HG changeset patch # User alexc # Date 1273604029 0 # Node ID 15e7486e5c7ae2a361abd9db4d88ea6ab8059825 # Parent a66b535972b784d511d31ef905d2d4eb1249a8a6 Set cur_channel in the AAC encoder context where needed. Most coder functions read it. Carting this around in the context may be suboptimal; a refactor should be considered. diff -r a66b535972b7 -r 15e7486e5c7a aacenc.c --- a/aacenc.c Tue May 11 14:49:48 2010 +0000 +++ b/aacenc.c Tue May 11 18:53:49 2010 +0000 @@ -561,6 +561,7 @@ chans = tag == TYPE_CPE ? 2 : 1; cpe = &s->cpe[i]; for (j = 0; j < chans; j++) { + s->cur_channel = start_ch + j; s->coder->search_for_quantizers(avctx, s, &cpe->ch[j], s->lambda); } cpe->common_window = 0; @@ -576,6 +577,7 @@ } } } + s->cur_channel = start_ch; if (cpe->common_window && s->coder->search_for_ms) s->coder->search_for_ms(s, cpe, s->lambda); adjust_frame_information(s, cpe, chans);