X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=resize_effect.cpp;h=5fd761a7acee1f55cfc0cd78c1a9e10352d0e576;hp=70efea0d78e36b3218d8a0686fd896df9cb1d15a;hb=refs%2Fheads%2Fepoxy;hpb=85f9719bf3519b1f1942738d11601584f5d38725 diff --git a/resize_effect.cpp b/resize_effect.cpp index 70efea0..5fd761a 100644 --- a/resize_effect.cpp +++ b/resize_effect.cpp @@ -3,6 +3,8 @@ using namespace std; +namespace movit { + ResizeEffect::ResizeEffect() : width(1280), height(720) { @@ -20,3 +22,5 @@ void ResizeEffect::get_output_size(unsigned *width, unsigned *height, unsigned * *virtual_width = *width = this->width; *virtual_height = *height = this->height; } + +} // namespace movit