| 33 | #include "imagerotate.h" |
| 34 | |
| 35 | WELSVP_NAMESPACE_BEGIN |
| 36 | |
| 37 | /////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
| 38 | |
| 39 | CImageRotating::CImageRotating (int32_t iCpuFlag) { |
| 40 | m_iCPUFlag = iCpuFlag; |
| 41 | m_eMethod = METHOD_IMAGE_ROTATE; |
| 42 | WelsMemset (&m_pfRotateImage, 0, sizeof (m_pfRotateImage)); |
| 43 | InitImageRotateFuncs (m_pfRotateImage, m_iCPUFlag); |
| 44 | } |
| 45 | |
| 46 | CImageRotating::~CImageRotating() { |
| 47 | } |
nothing calls this directly
no test coverage detected