]> git.sesse.net Git - movit/blobdiff - resample_effect_test.cpp
Move everything into “namespace movit”.
[movit] / resample_effect_test.cpp
index dee08e3584c2f90c9da43aaff82c2e99a35817d2..971e694347e28d8e61760b13abb5027341413a83 100644 (file)
@@ -11,6 +11,8 @@
 #include "resample_effect.h"
 #include "test_util.h"
 
+namespace movit {
+
 namespace {
 
 float sinc(float x)
@@ -208,3 +210,5 @@ TEST(ResampleEffectTest, HeavyResampleGetsSumRight) {
        // for 8-bit accuracy, though.
        expect_equal(expected_data, out_data, dwidth, dheight, 0.5 / 1023.0);
 }
+
+}  // namespace movit