shithub: libvpx

Download patch

ref: 55677372a0204f8807598b8410d1635eee180b15
parent: 4cab8adc9e6274a62c796f9434459f316f622652
parent: 2020b170b8f7679d2f91ef92c998ab5a6d4643e4
author: Chi Yo Tsai <chiyotsai@google.com>
date: Mon Feb 4 18:52:24 EST 2019

Merge "Add operator<< to a struct in yuv_temporal_filter_test.cc"

--- a/test/yuv_temporal_filter_test.cc
+++ b/test/yuv_temporal_filter_test.cc
@@ -38,6 +38,10 @@
   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) {