mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
nellymoserenc: fix crash due to memsetting the wrong area.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
ba24f12982
commit
439c3d5bcc
@ -389,7 +389,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
|
||||
memcpy(s->buf + NELLY_BUF_LEN, frame->data[0],
|
||||
frame->nb_samples * sizeof(*s->buf));
|
||||
if (frame->nb_samples < NELLY_SAMPLES) {
|
||||
memset(s->buf + NELLY_BUF_LEN + avctx->frame_size, 0,
|
||||
memset(s->buf + NELLY_BUF_LEN + frame->nb_samples, 0,
|
||||
(NELLY_SAMPLES - frame->nb_samples) * sizeof(*s->buf));
|
||||
if (frame->nb_samples >= NELLY_BUF_LEN)
|
||||
s->last_frame = 1;
|
||||
|
Loading…
Reference in New Issue
Block a user