Browse Source

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

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Michael Niedermayer 10 years ago
parent
commit
9006567bae
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/aacenc.c

+ 1
- 1
libavcodec/aacenc.c View File

@@ -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);



Loading…
Cancel
Save