Skip to content
Snippets Groups Projects
Commit b4466c9c authored by Andreas Cadhalpun's avatar Andreas Cadhalpun
Browse files

oggparsedaala: check number of planes in pixel format map


This fixes crashes caused by out-of-bounds writes.

Reviewed-by: default avatarRostislav Pehlivanov <atomnuker@gmail.com>
Signed-off-by: default avatarAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
parent 4a44bc55
No related branches found
No related tags found
No related merge requests found
...@@ -130,6 +130,12 @@ static int daala_header(AVFormatContext *s, int idx) ...@@ -130,6 +130,12 @@ static int daala_header(AVFormatContext *s, int idx)
hdr->fpr = bytestream2_get_byte(&gb); hdr->fpr = bytestream2_get_byte(&gb);
hdr->format.planes = bytestream2_get_byte(&gb); hdr->format.planes = bytestream2_get_byte(&gb);
if (hdr->format.planes > 4) {
av_log(s, AV_LOG_ERROR,
"Invalid number of planes %d in daala pixel format map.\n",
hdr->format.planes);
return AVERROR_INVALIDDATA;
}
for (i = 0; i < hdr->format.planes; i++) { for (i = 0; i < hdr->format.planes; i++) {
hdr->format.xdec[i] = bytestream2_get_byte(&gb); hdr->format.xdec[i] = bytestream2_get_byte(&gb);
hdr->format.ydec[i] = bytestream2_get_byte(&gb); hdr->format.ydec[i] = bytestream2_get_byte(&gb);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment