| 271 | } |
| 272 | |
| 273 | FFMS_API(int) FFMS_GetNumFrames(FFMS_Track *T) { |
| 274 | return T->VisibleFrameCount(); |
| 275 | } |
| 276 | |
| 277 | FFMS_API(const FFMS_FrameInfo *) FFMS_GetFrameInfo(FFMS_Track *T, int Frame) { |
| 278 | return T->GetFrameInfo(static_cast<size_t>(Frame)); |
no test coverage detected