Commit ccffac2b authored by Johann's avatar Johann Committed by Gerrit Code Review
Browse files

Merge "Avoid mixed comparison"

Showing with 1 addition and 1 deletion
......@@ -164,7 +164,7 @@ int vp9_realloc_frame_buffer(YV12_BUFFER_CONFIG *ybf,
if (ext_fb != NULL) {
const int align_addr_extra_size = 31;
const int external_frame_size = frame_size + align_addr_extra_size;
const size_t external_frame_size = frame_size + align_addr_extra_size;
if (external_frame_size > ext_fb->size) {
// Allocation to hold larger frame, or first allocation.
if (cb(user_priv, external_frame_size, ext_fb) < 0) {
......
Supports Markdown
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