Issue #1937 - Part 2: Update libaom source.

This commit is contained in:
Job Bautista 2022-06-25 18:15:40 +08:00 committed by roytam1
commit ecb7ec7377
948 changed files with 244949 additions and 88095 deletions

View file

@ -193,6 +193,7 @@ class DummyVideoSource : public VideoSource {
void ReallocImage() {
aom_img_free(img_);
img_ = aom_img_alloc(NULL, format_, width_, height_, 32);
ASSERT_NE(img_, nullptr);
raw_sz_ = ((img_->w + 31) & ~31) * img_->h * img_->bps / 8;
}