2010-05-18 17:58:33 +02:00
|
|
|
/*
|
2010-09-09 14:16:39 +02:00
|
|
|
* Copyright (c) 2010 The WebM project authors. All Rights Reserved.
|
2010-05-18 17:58:33 +02:00
|
|
|
*
|
2010-06-18 18:39:21 +02:00
|
|
|
* Use of this source code is governed by a BSD-style license
|
2010-06-04 22:19:40 +02:00
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
2010-06-18 18:39:21 +02:00
|
|
|
* in the file PATENTS. All contributing project authors may
|
2010-06-04 22:19:40 +02:00
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
2010-05-18 17:58:33 +02:00
|
|
|
*/
|
|
|
|
|
2013-02-06 23:22:17 +01:00
|
|
|
#include <assert.h>
|
2013-03-20 18:22:20 +01:00
|
|
|
#include <limits.h>
|
2014-03-21 20:00:26 +01:00
|
|
|
|
|
|
|
#include "./vpx_scale_rtcd.h"
|
2016-06-24 21:44:23 +02:00
|
|
|
#include "vpx_dsp/psnr.h"
|
2014-03-21 20:00:26 +01:00
|
|
|
#include "vpx_mem/vpx_mem.h"
|
2015-05-12 04:09:22 +02:00
|
|
|
#include "vpx_ports/mem.h"
|
2014-03-21 20:00:26 +01:00
|
|
|
|
|
|
|
#include "vp9/common/vp9_loopfilter.h"
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/common/vp9_onyxc_int.h"
|
2014-03-21 20:00:26 +01:00
|
|
|
#include "vp9/common/vp9_quant_common.h"
|
|
|
|
|
2014-04-19 03:27:47 +02:00
|
|
|
#include "vp9/encoder/vp9_encoder.h"
|
2012-11-27 22:59:17 +01:00
|
|
|
#include "vp9/encoder/vp9_picklpf.h"
|
2012-11-28 19:41:40 +01:00
|
|
|
#include "vp9/encoder/vp9_quantize.h"
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-04-12 00:33:50 +02:00
|
|
|
static int get_max_filter_level(const VP9_COMP *cpi) {
|
2014-08-08 23:27:34 +02:00
|
|
|
if (cpi->oxcf.pass == 2) {
|
2014-05-09 18:32:05 +02:00
|
|
|
return cpi->twopass.section_intra_rating > 8 ? MAX_LOOP_FILTER * 3 / 4
|
|
|
|
: MAX_LOOP_FILTER;
|
|
|
|
} else {
|
|
|
|
return MAX_LOOP_FILTER;
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
|
|
|
|
2014-12-19 17:58:05 +01:00
|
|
|
static int64_t try_filter_frame(const YV12_BUFFER_CONFIG *sd,
|
2016-07-27 05:43:23 +02:00
|
|
|
VP9_COMP *const cpi, int filt_level,
|
|
|
|
int partial_frame) {
|
2014-03-21 20:00:26 +01:00
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
2014-12-19 17:58:05 +01:00
|
|
|
int64_t filt_err;
|
2014-01-25 00:00:48 +01:00
|
|
|
|
2015-09-29 14:20:49 +02:00
|
|
|
vp9_build_mask_frame(cm, filt_level, partial_frame);
|
|
|
|
|
2015-01-06 23:14:26 +01:00
|
|
|
if (cpi->num_workers > 1)
|
|
|
|
vp9_loop_filter_frame_mt(cm->frame_to_show, cm, cpi->td.mb.e_mbd.plane,
|
2016-07-27 05:43:23 +02:00
|
|
|
filt_level, 1, partial_frame, cpi->workers,
|
|
|
|
cpi->num_workers, &cpi->lf_row_sync);
|
2015-01-06 23:14:26 +01:00
|
|
|
else
|
|
|
|
vp9_loop_filter_frame(cm->frame_to_show, cm, &cpi->td.mb.e_mbd, filt_level,
|
|
|
|
1, partial_frame);
|
|
|
|
|
2014-09-24 15:36:34 +02:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
|
|
|
if (cm->use_highbitdepth) {
|
2016-06-24 21:44:23 +02:00
|
|
|
filt_err = vpx_highbd_get_y_sse(sd, cm->frame_to_show);
|
2014-09-24 15:36:34 +02:00
|
|
|
} else {
|
2016-06-24 21:44:23 +02:00
|
|
|
filt_err = vpx_get_y_sse(sd, cm->frame_to_show);
|
2014-09-24 15:36:34 +02:00
|
|
|
}
|
|
|
|
#else
|
2016-06-24 21:44:23 +02:00
|
|
|
filt_err = vpx_get_y_sse(sd, cm->frame_to_show);
|
2014-09-24 15:36:34 +02:00
|
|
|
#endif // CONFIG_VP9_HIGHBITDEPTH
|
2014-01-25 00:00:48 +01:00
|
|
|
|
|
|
|
// Re-instate the unfiltered frame
|
|
|
|
vpx_yv12_copy_y(&cpi->last_frame_uf, cm->frame_to_show);
|
|
|
|
|
|
|
|
return filt_err;
|
|
|
|
}
|
|
|
|
|
2014-04-12 00:33:50 +02:00
|
|
|
static int search_filter_level(const YV12_BUFFER_CONFIG *sd, VP9_COMP *cpi,
|
|
|
|
int partial_frame) {
|
|
|
|
const VP9_COMMON *const cm = &cpi->common;
|
|
|
|
const struct loopfilter *const lf = &cm->lf;
|
2014-03-04 00:16:25 +01:00
|
|
|
const int min_filter_level = 0;
|
|
|
|
const int max_filter_level = get_max_filter_level(cpi);
|
2012-07-14 00:21:29 +02:00
|
|
|
int filt_direction = 0;
|
2014-12-19 17:58:05 +01:00
|
|
|
int64_t best_err;
|
|
|
|
int filt_best;
|
2014-04-12 00:33:50 +02:00
|
|
|
|
2014-01-17 04:28:02 +01:00
|
|
|
// Start the search at the previous frame filter level unless it is now out of
|
|
|
|
// range.
|
2016-07-27 05:43:23 +02:00
|
|
|
int filt_mid = clamp(lf->last_filt_level, min_filter_level, max_filter_level);
|
2014-01-17 04:28:02 +01:00
|
|
|
int filter_step = filt_mid < 16 ? 4 : filt_mid / 4;
|
2014-01-25 00:57:40 +01:00
|
|
|
// Sum squared error at each filter level
|
2014-12-19 17:58:05 +01:00
|
|
|
int64_t ss_err[MAX_LOOP_FILTER + 1];
|
2014-01-25 00:57:40 +01:00
|
|
|
|
|
|
|
// Set each entry to -1
|
2015-04-24 05:47:40 +02:00
|
|
|
memset(ss_err, 0xFF, sizeof(ss_err));
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-17 04:28:02 +01:00
|
|
|
// Make a copy of the unfiltered / processed recon buffer
|
|
|
|
vpx_yv12_copy_y(cm->frame_to_show, &cpi->last_frame_uf);
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-03-21 20:00:26 +01:00
|
|
|
best_err = try_filter_frame(sd, cpi, filt_mid, partial_frame);
|
2012-07-14 00:21:29 +02:00
|
|
|
filt_best = filt_mid;
|
2014-01-25 00:57:40 +01:00
|
|
|
ss_err[filt_mid] = best_err;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
while (filter_step > 0) {
|
2015-08-18 03:19:22 +02:00
|
|
|
const int filt_high = VPXMIN(filt_mid + filter_step, max_filter_level);
|
|
|
|
const int filt_low = VPXMAX(filt_mid - filter_step, min_filter_level);
|
2014-01-17 04:28:02 +01:00
|
|
|
|
|
|
|
// Bias against raising loop filter in favor of lowering it.
|
2014-12-19 17:58:05 +01:00
|
|
|
int64_t bias = (best_err >> (15 - (filt_mid / 8))) * filter_step;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-08-08 23:27:34 +02:00
|
|
|
if ((cpi->oxcf.pass == 2) && (cpi->twopass.section_intra_rating < 20))
|
2014-05-09 18:32:05 +02:00
|
|
|
bias = (bias * cpi->twopass.section_intra_rating) / 20;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// yx, bias less for large block size
|
2016-07-27 05:43:23 +02:00
|
|
|
if (cm->tx_mode != ONLY_4X4) bias >>= 1;
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-01-17 04:28:02 +01:00
|
|
|
if (filt_direction <= 0 && filt_low != filt_mid) {
|
2012-07-14 00:21:29 +02:00
|
|
|
// Get Low filter error score
|
2014-01-25 00:57:40 +01:00
|
|
|
if (ss_err[filt_low] < 0) {
|
2014-09-06 22:35:37 +02:00
|
|
|
ss_err[filt_low] = try_filter_frame(sd, cpi, filt_low, partial_frame);
|
2014-01-25 00:57:40 +01:00
|
|
|
}
|
2013-10-05 02:08:41 +02:00
|
|
|
// If value is close to the best so far then bias towards a lower loop
|
|
|
|
// filter value.
|
2014-09-06 22:35:37 +02:00
|
|
|
if ((ss_err[filt_low] - bias) < best_err) {
|
2012-07-14 00:21:29 +02:00
|
|
|
// Was it actually better than the previous best?
|
2016-07-27 05:43:23 +02:00
|
|
|
if (ss_err[filt_low] < best_err) best_err = ss_err[filt_low];
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
filt_best = filt_low;
|
|
|
|
}
|
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2012-07-14 00:21:29 +02:00
|
|
|
// Now look at filt_high
|
2014-01-17 04:28:02 +01:00
|
|
|
if (filt_direction >= 0 && filt_high != filt_mid) {
|
2014-01-25 00:57:40 +01:00
|
|
|
if (ss_err[filt_high] < 0) {
|
2014-09-06 22:35:37 +02:00
|
|
|
ss_err[filt_high] = try_filter_frame(sd, cpi, filt_high, partial_frame);
|
2014-01-25 00:57:40 +01:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
// Was it better than the previous best?
|
2014-09-06 22:35:37 +02:00
|
|
|
if (ss_err[filt_high] < (best_err - bias)) {
|
|
|
|
best_err = ss_err[filt_high];
|
2012-07-14 00:21:29 +02:00
|
|
|
filt_best = filt_high;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Half the step distance if the best filter value was the same as last time
|
|
|
|
if (filt_best == filt_mid) {
|
2014-03-21 20:00:26 +01:00
|
|
|
filter_step /= 2;
|
2012-07-14 00:21:29 +02:00
|
|
|
filt_direction = 0;
|
|
|
|
} else {
|
|
|
|
filt_direction = (filt_best < filt_mid) ? -1 : 1;
|
|
|
|
filt_mid = filt_best;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2012-07-14 00:21:29 +02:00
|
|
|
}
|
2010-05-18 17:58:33 +02:00
|
|
|
|
2014-04-12 00:33:50 +02:00
|
|
|
return filt_best;
|
2010-05-18 17:58:33 +02:00
|
|
|
}
|
2014-01-23 22:24:20 +01:00
|
|
|
|
2014-01-24 23:21:39 +01:00
|
|
|
void vp9_pick_filter_level(const YV12_BUFFER_CONFIG *sd, VP9_COMP *cpi,
|
2014-03-21 22:59:26 +01:00
|
|
|
LPF_PICK_METHOD method) {
|
2014-01-23 22:24:20 +01:00
|
|
|
VP9_COMMON *const cm = &cpi->common;
|
|
|
|
struct loopfilter *const lf = &cm->lf;
|
|
|
|
|
2016-07-27 05:43:23 +02:00
|
|
|
lf->sharpness_level = cm->frame_type == KEY_FRAME ? 0 : cpi->oxcf.sharpness;
|
2014-01-23 22:24:20 +01:00
|
|
|
|
2014-06-28 00:23:02 +02:00
|
|
|
if (method == LPF_PICK_MINIMAL_LPF && lf->filter_level) {
|
2016-07-27 05:43:23 +02:00
|
|
|
lf->filter_level = 0;
|
2014-06-28 00:23:02 +02:00
|
|
|
} else if (method >= LPF_PICK_FROM_Q) {
|
2014-03-04 00:16:25 +01:00
|
|
|
const int min_filter_level = 0;
|
|
|
|
const int max_filter_level = get_max_filter_level(cpi);
|
2014-09-03 01:34:09 +02:00
|
|
|
const int q = vp9_ac_quant(cm->base_qindex, 0, cm->bit_depth);
|
2016-07-27 05:43:23 +02:00
|
|
|
// These values were determined by linear fitting the result of the
|
|
|
|
// searched level, filt_guess = q * 0.316206 + 3.87252
|
2014-12-04 12:01:46 +01:00
|
|
|
#if CONFIG_VP9_HIGHBITDEPTH
|
2014-09-24 15:36:34 +02:00
|
|
|
int filt_guess;
|
|
|
|
switch (cm->bit_depth) {
|
|
|
|
case VPX_BITS_8:
|
|
|
|
filt_guess = ROUND_POWER_OF_TWO(q * 20723 + 1015158, 18);
|
|
|
|
break;
|
|
|
|
case VPX_BITS_10:
|
|
|
|
filt_guess = ROUND_POWER_OF_TWO(q * 20723 + 4060632, 20);
|
|
|
|
break;
|
|
|
|
case VPX_BITS_12:
|
|
|
|
filt_guess = ROUND_POWER_OF_TWO(q * 20723 + 16242526, 22);
|
|
|
|
break;
|
|
|
|
default:
|
2016-07-27 05:43:23 +02:00
|
|
|
assert(0 &&
|
|
|
|
"bit_depth should be VPX_BITS_8, VPX_BITS_10 "
|
|
|
|
"or VPX_BITS_12");
|
2014-09-24 15:36:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#else
|
2014-03-21 20:00:26 +01:00
|
|
|
int filt_guess = ROUND_POWER_OF_TWO(q * 20723 + 1015158, 18);
|
2017-01-27 19:42:29 +01:00
|
|
|
#endif // CONFIG_VP9_HIGHBITDEPTH
|
2016-09-26 18:57:49 +02:00
|
|
|
if (cpi->oxcf.pass == 0 && cpi->oxcf.rc_mode == VPX_CBR &&
|
2017-02-23 00:06:28 +01:00
|
|
|
cpi->oxcf.aq_mode == CYCLIC_REFRESH_AQ && cm->seg.enabled &&
|
2016-09-26 18:57:49 +02:00
|
|
|
cpi->oxcf.content != VP9E_CONTENT_SCREEN && cm->frame_type != KEY_FRAME)
|
|
|
|
filt_guess = 5 * filt_guess >> 3;
|
|
|
|
|
2016-07-27 05:43:23 +02:00
|
|
|
if (cm->frame_type == KEY_FRAME) filt_guess -= 4;
|
2014-01-23 22:24:20 +01:00
|
|
|
lf->filter_level = clamp(filt_guess, min_filter_level, max_filter_level);
|
|
|
|
} else {
|
2016-07-27 05:43:23 +02:00
|
|
|
lf->filter_level =
|
|
|
|
search_filter_level(sd, cpi, method == LPF_PICK_FROM_SUBIMAGE);
|
2014-01-23 22:24:20 +01:00
|
|
|
}
|
|
|
|
}
|