| 66 | } |
| 67 | |
| 68 | size_t AVFrameSideDataWrapper::getNumberMotionVectors() |
| 69 | { |
| 70 | this->update(); |
| 71 | |
| 72 | if (this->type != AV_FRAME_DATA_MOTION_VECTORS) |
| 73 | return 0; |
| 74 | |
| 75 | return AVMotionVectorWrapper::getNumberOfMotionVectors(this->libVer, this->size); |
| 76 | } |
| 77 | |
| 78 | AVMotionVectorWrapper AVFrameSideDataWrapper::getMotionVector(unsigned idx) |
| 79 | { |
no test coverage detected