X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=resize_effect.cpp;h=5fd761a7acee1f55cfc0cd78c1a9e10352d0e576;hp=70efea0d78e36b3218d8a0686fd896df9cb1d15a;hb=cfc161e0289c2169d4835c48751ff56b97355eb2;hpb=0fa51e08f83e0283337216f5b951b3d5a8c0555b 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