summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJerome Jiang <jianj@google.com>2019-03-27 16:12:04 -0700
committerJerome Jiang <jianj@google.com>2019-03-27 17:02:44 -0700
commita1857812ea6a727d9bda91b852f7b8a9f506ac3f (patch)
tree520c98b5f851556b2a68b56e78f2ab0e978c3e44 /examples
parentc09e95fc7da1c91db3cef34dc61010ab33443eea (diff)
downloadlibvpx-a1857812ea6a727d9bda91b852f7b8a9f506ac3f.tar
libvpx-a1857812ea6a727d9bda91b852f7b8a9f506ac3f.tar.gz
libvpx-a1857812ea6a727d9bda91b852f7b8a9f506ac3f.tar.bz2
libvpx-a1857812ea6a727d9bda91b852f7b8a9f506ac3f.zip
Disable mismatch check on vp9 svc examples.
Change-Id: I49902a750758ba0ffe733be9b1efd0cdea44f936
Diffstat (limited to 'examples')
-rw-r--r--examples/vp9_spatial_svc_encoder.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/vp9_spatial_svc_encoder.c b/examples/vp9_spatial_svc_encoder.c
index b987989a8..bd04a52b3 100644
--- a/examples/vp9_spatial_svc_encoder.c
+++ b/examples/vp9_spatial_svc_encoder.c
@@ -1196,7 +1196,8 @@ int main(int argc, const char **argv) {
vpx_codec_control(&encoder, VP9E_GET_SVC_LAYER_ID, &layer_id);
// Don't look for mismatch on top spatial and top temporal layers as they
// are non reference frames.
- if ((enc_cfg.ss_number_layers > 1 || enc_cfg.ts_number_layers > 1) &&
+ // TODO(jianj): Investigate mismatch on 3SL when denoiser is on.
+ if (enc_cfg.ss_number_layers == 1 &&
!(layer_id.temporal_layer_id > 0 &&
layer_id.temporal_layer_id == (int)enc_cfg.ts_number_layers - 1 &&
cx_pkt->data.frame