You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/aacenc: mark output as const as its not written to
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -154,7 +154,7 @@ static void apply_window_and_mdct(AACEncContext *s, SingleChannelElement *sce,
|
|||||||
float *audio)
|
float *audio)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
float *output = sce->ret_buf;
|
const float *output = sce->ret_buf;
|
||||||
|
|
||||||
apply_window[sce->ics.window_sequence[0]](s->fdsp, sce, audio);
|
apply_window[sce->ics.window_sequence[0]](s->fdsp, sce, audio);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user