summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2018-12-10 23:01:01 -0800
committerJames Zern <jzern@google.com>2018-12-10 23:01:01 -0800
commit7fb77b33ef362df235fe6da3dc202ca5e0bdb350 (patch)
treeac2fbc2eabe76b058d39d29ef0c6ee1815fb4fe8 /test
parent16282c36f3d030121715c17b83e94afd12259f89 (diff)
downloadlibvpx-7fb77b33ef362df235fe6da3dc202ca5e0bdb350.tar
libvpx-7fb77b33ef362df235fe6da3dc202ca5e0bdb350.tar.gz
libvpx-7fb77b33ef362df235fe6da3dc202ca5e0bdb350.tar.bz2
libvpx-7fb77b33ef362df235fe6da3dc202ca5e0bdb350.zip
test/svc_end_to_end_test: fix SetConfig() signature
make the parameter constant to match the base class and mark the function virtual. virtual is used to match the rest of the code base, but now that c++11 is required all such functions could be changed to override. since: bb3a82ec3 vp9 svc: add test for scaling partition on 1080p crash. Change-Id: I4717f0116a231ea954b34da9cfec69c462c21699
Diffstat (limited to 'test')
-rw-r--r--test/svc_end_to_end_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/svc_end_to_end_test.cc b/test/svc_end_to_end_test.cc
index 07c6581bf..2f8cf3083 100644
--- a/test/svc_end_to_end_test.cc
+++ b/test/svc_end_to_end_test.cc
@@ -57,7 +57,7 @@ class ScalePartitionOnePassCbrSvc
++mismatch_nframes_;
}
- virtual void SetConfig(int /* num_temporal_layer*/) {}
+ virtual void SetConfig(const int /*num_temporal_layer*/) {}
unsigned int GetMismatchFrames() const { return mismatch_nframes_; }