vp9: Fix to scene cut/content change detection.

Use proper conditon on resolution check.

Change-Id: Idf563eb4391f373baf79546414a075b6516a5d35
This commit is contained in:
Marco 2016-03-15 10:30:24 -07:00
parent 68f2b4100d
commit 2bf51c76e3

View File

@ -2006,8 +2006,8 @@ void vp9_avg_source_sad(VP9_COMP *cpi) {
RATE_CONTROL *const rc = &cpi->rc;
rc->high_source_sad = 0;
if (cpi->Last_Source != NULL &&
cpi->Last_Source->y_width == cm->width &&
cpi->Last_Source->y_height == cm->height) {
cpi->Last_Source->y_width == cpi->Source->y_width &&
cpi->Last_Source->y_height == cpi->Source->y_height) {
const uint8_t *src_y = cpi->Source->y_buffer;
const int src_ystride = cpi->Source->y_stride;
const uint8_t *last_src_y = cpi->Last_Source->y_buffer;