summaryrefslogtreecommitdiff
path: root/vp9/encoder
diff options
context:
space:
mode:
authorJingning Han <jingning@google.com>2014-09-02 18:05:03 -0700
committerJingning Han <jingning@google.com>2014-09-02 18:17:33 -0700
commit801fef26ecf7c50f99442d3d27562c784971f676 (patch)
treec81b8a1cfab5ff4aa25c88334853942fc44ce898 /vp9/encoder
parent33176fef872c5d812d7ce8f9875d5166de460c5d (diff)
downloadlibvpx-801fef26ecf7c50f99442d3d27562c784971f676.tar
libvpx-801fef26ecf7c50f99442d3d27562c784971f676.tar.gz
libvpx-801fef26ecf7c50f99442d3d27562c784971f676.tar.bz2
libvpx-801fef26ecf7c50f99442d3d27562c784971f676.zip
Skip comp inter mode test in RD loop with same frame bias signs
This commit allows the encoder to skip check on compound inter modes in the rate-distortion optimization loop, if the reference frame bias signs are the same. Change-Id: Ib753e6bb11cbdd338aee69dbe2b649671f75a6b0
Diffstat (limited to 'vp9/encoder')
-rw-r--r--vp9/encoder/vp9_rdopt.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/vp9/encoder/vp9_rdopt.c b/vp9/encoder/vp9_rdopt.c
index 7aaa903e5..7ed313805 100644
--- a/vp9/encoder/vp9_rdopt.c
+++ b/vp9/encoder/vp9_rdopt.c
@@ -2779,9 +2779,8 @@ int64_t vp9_rd_pick_inter_mode_sb(VP9_COMP *cpi, MACROBLOCK *x,
comp_pred = second_ref_frame > INTRA_FRAME;
if (comp_pred) {
- if (cpi->sf.alt_ref_search_fp)
- if (!cm->show_frame)
- continue;
+ if (!cm->allow_comp_inter_inter)
+ continue;
if ((mode_search_skip_flags & FLAG_SKIP_COMP_BESTINTRA) &&
best_mode_index >=0 &&
@@ -3384,6 +3383,9 @@ int64_t vp9_rd_pick_inter_mode_sub8x8(VP9_COMP *cpi, MACROBLOCK *x,
comp_pred = second_ref_frame > INTRA_FRAME;
if (comp_pred) {
+ if (!cm->allow_comp_inter_inter)
+ continue;
+
if (!(cpi->ref_frame_flags & flag_list[second_ref_frame]))
continue;
// Do not allow compound prediction if the segment level reference frame