summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChi Yo Tsai <chiyotsai@google.com>2019-02-04 23:52:24 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-02-04 23:52:24 +0000
commit55677372a0204f8807598b8410d1635eee180b15 (patch)
tree0f69538e46b11cb9d5886b5a808fbdba1373eea8
parent4cab8adc9e6274a62c796f9434459f316f622652 (diff)
parent2020b170b8f7679d2f91ef92c998ab5a6d4643e4 (diff)
downloadlibvpx-55677372a0204f8807598b8410d1635eee180b15.tar
libvpx-55677372a0204f8807598b8410d1635eee180b15.tar.gz
libvpx-55677372a0204f8807598b8410d1635eee180b15.tar.bz2
libvpx-55677372a0204f8807598b8410d1635eee180b15.zip
Merge "Add operator<< to a struct in yuv_temporal_filter_test.cc"
-rw-r--r--test/yuv_temporal_filter_test.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/yuv_temporal_filter_test.cc b/test/yuv_temporal_filter_test.cc
index e8d19672d..9fb170bc3 100644
--- a/test/yuv_temporal_filter_test.cc
+++ b/test/yuv_temporal_filter_test.cc
@@ -38,6 +38,10 @@ struct TemporalFilterWithBd {
int bd;
};
+std::ostream &operator<<(std::ostream &os, const TemporalFilterWithBd &tf) {
+ return os << "Bitdepth: " << tf.bd;
+}
+
int GetFilterWeight(unsigned int row, unsigned int col,
unsigned int block_height, unsigned int block_width,
const int *const blk_fw, int use_32x32) {