summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_encodeframe.c
diff options
context:
space:
mode:
authorYaowu Xu <yaowu@google.com>2013-06-24 16:43:26 -0700
committerYaowu Xu <yaowu@google.com>2013-06-24 16:43:26 -0700
commite371cd73a346339d467ec9dcc0af59511f6c23cc (patch)
treed34276a73b3fee4cb80819681143a00e0324e25b /vp9/encoder/vp9_encodeframe.c
parent4eb8c565874ef5b6e934f1cc20a318304073b7df (diff)
downloadlibvpx-e371cd73a346339d467ec9dcc0af59511f6c23cc.tar
libvpx-e371cd73a346339d467ec9dcc0af59511f6c23cc.tar.gz
libvpx-e371cd73a346339d467ec9dcc0af59511f6c23cc.tar.bz2
libvpx-e371cd73a346339d467ec9dcc0af59511f6c23cc.zip
change to enable use_largest_txform feature
for all regular inter frames at speed 1 Change-Id: I0a8b301273ecf2b8730ab1f6b7a05f89f4d498e0
Diffstat (limited to 'vp9/encoder/vp9_encodeframe.c')
-rw-r--r--vp9/encoder/vp9_encodeframe.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/vp9/encoder/vp9_encodeframe.c b/vp9/encoder/vp9_encodeframe.c
index f655d456b..836a234b2 100644
--- a/vp9/encoder/vp9_encodeframe.c
+++ b/vp9/encoder/vp9_encodeframe.c
@@ -1617,6 +1617,12 @@ static void switch_lossless_mode(VP9_COMP *cpi, int lossless) {
}
}
+static void switch_txfm_mode(VP9_COMP *cpi) {
+ if (cpi->sf.use_largest_txform &&
+ cpi->common.txfm_mode >= ALLOW_32X32)
+ cpi->common.txfm_mode = ALLOW_32X32;
+}
+
static void encode_frame_internal(VP9_COMP *cpi) {
int mi_row;
MACROBLOCK * const x = &cpi->mb;
@@ -1661,6 +1667,7 @@ static void encode_frame_internal(VP9_COMP *cpi) {
vp9_initialize_rd_consts(cpi, cm->base_qindex + cm->y_dc_delta_q);
vp9_initialize_me_consts(cpi, cm->base_qindex);
+ switch_txfm_mode(cpi);
if (cpi->oxcf.tuning == VP8_TUNE_SSIM) {
// Initialize encode frame context.