Skip to content
Snippets Groups Projects
Commit bef320aa authored by James Zern's avatar James Zern Committed by Gerrit Code Review
Browse files

Merge "vpx_scale: correct pixel spelling"

parents b85367a6 735b3a71
No related branches found
No related tags found
No related merge requests found
......@@ -134,8 +134,8 @@ void vp9_extend_frame_borders_c(YV12_BUFFER_CONFIG *ybf,
void vp9_extend_frame_inner_borders_c(YV12_BUFFER_CONFIG *ybf,
int subsampling_x, int subsampling_y) {
const int inner_bw = ybf->border > VP9INNERBORDERINPIXLES ?
VP9INNERBORDERINPIXLES : ybf->border;
const int inner_bw = ybf->border > VP9INNERBORDERINPIXELS ?
VP9INNERBORDERINPIXELS : ybf->border;
extend_frame(ybf, subsampling_x, subsampling_y, inner_bw);
}
#endif
......
......@@ -18,7 +18,7 @@ extern "C" {
#include "vpx/vpx_integer.h"
#define VP8BORDERINPIXELS 32
#define VP9INNERBORDERINPIXLES 96
#define VP9INNERBORDERINPIXELS 96
#define VP9BORDERINPIXELS 160
#define VP9_INTERP_EXTEND 4
......
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