mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
vmdaudio: validate block type
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
(cherry picked from commit 22f893e1c9
)
This commit is contained in:
parent
149d36877a
commit
ebed7b6865
@ -518,6 +518,10 @@ static int vmdaudio_decode_frame(AVCodecContext *avctx,
|
||||
return buf_size;
|
||||
|
||||
block_type = buf[6];
|
||||
if (block_type < BLOCK_TYPE_AUDIO || block_type > BLOCK_TYPE_SILENCE) {
|
||||
av_log(avctx, AV_LOG_ERROR, "unknown block type: %d\n", block_type);
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
if (block_type == BLOCK_TYPE_AUDIO) {
|
||||
/* the chunk contains audio */
|
||||
|
Loading…
Reference in New Issue
Block a user