Commit 76e0c95d authored by John Koleszar's avatar John Koleszar Committed by Gerrit Code Review
Browse files

Trap reference frames of invalid size

A corrupt bitstream could refer to a reference frame that has no size.

Change-Id: I56c3b71a9dbb58b498e9969403e289c0e574f948
parent 2bcc4736
Branches
Tags
No related merge requests found
Showing with 4 additions and 0 deletions
...@@ -807,6 +807,10 @@ static void setup_frame_size_with_refs(VP9D_COMP *pbi, ...@@ -807,6 +807,10 @@ static void setup_frame_size_with_refs(VP9D_COMP *pbi,
if (!found) if (!found)
read_frame_size(cm, rb, &width, &height); read_frame_size(cm, rb, &width, &height);
if (!width || !height)
vpx_internal_error(&cm->error, VPX_CODEC_CORRUPT_FRAME,
"Referenced frame with invalid size");
setup_display_size(pbi, rb); setup_display_size(pbi, rb);
apply_frame_size(pbi, width, height); apply_frame_size(pbi, width, height);
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment