Commit a33086f9 authored by Yaowu Xu's avatar Yaowu Xu Committed by Gerrit Code Review
Browse files

Merge "added missed replacement"

Showing with 2 additions and 2 deletions
...@@ -103,9 +103,9 @@ static void extend_frame(YV12_BUFFER_CONFIG *ybf, ...@@ -103,9 +103,9 @@ static void extend_frame(YV12_BUFFER_CONFIG *ybf,
const int c_h = (ybf->y_crop_height + subsampling_y) >> subsampling_y; const int c_h = (ybf->y_crop_height + subsampling_y) >> subsampling_y;
const int c_et = ext_size >> subsampling_y; const int c_et = ext_size >> subsampling_y;
const int c_el = ext_size >> subsampling_x; const int c_el = ext_size >> subsampling_x;
const int c_eb = (ybf->border + ybf->y_height - ybf->y_crop_height + const int c_eb = (ext_size + ybf->y_height - ybf->y_crop_height +
subsampling_y) >> subsampling_y; subsampling_y) >> subsampling_y;
const int c_er = (ybf->border + ybf->y_width - ybf->y_crop_width + const int c_er = (ext_size + ybf->y_width - ybf->y_crop_width +
subsampling_x) >> subsampling_x; subsampling_x) >> subsampling_x;
assert(ybf->y_height - ybf->y_crop_height < 16); assert(ybf->y_height - ybf->y_crop_height < 16);
......
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