Browse Source

wmaenc: require a large enough output buffer to prevent overwrites

The maximum theoretical frame size is around 17000 bytes. Although in
practice it will generally be much smaller, we require a larger buffer
just to be safe.

CC: libav-stable@libav.org
(cherry picked from commit dfc4fdedf8)

Signed-off-by: Reinhard Tartler <siretart@tauware.de>
tags/n0.8.11
Justin Ruggles Reinhard Tartler 14 years ago
parent
commit
c932844882
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      libavcodec/wmaenc.c

+ 5
- 0
libavcodec/wmaenc.c View File

@@ -355,6 +355,11 @@ static int encode_superframe(AVCodecContext *avctx,
}
}

if (buf_size < 2 * MAX_CODED_SUPERFRAME_SIZE) {
av_log(avctx, AV_LOG_ERROR, "output buffer size is too small\n");
return AVERROR(EINVAL);
}

#if 1
total_gain= 128;
for(i=64; i; i>>=1){


Loading…
Cancel
Save