Commit 9006567b authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/aacenc: mark output as const as its not written to

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 0634c542
......@@ -154,7 +154,7 @@ static void apply_window_and_mdct(AACEncContext *s, SingleChannelElement *sce,
float *audio)
{
int i;
float *output = sce->ret_buf;
const float *output = sce->ret_buf;
apply_window[sce->ics.window_sequence[0]](s->fdsp, sce, audio);
......
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