| 4 | #include <cstdint> |
| 5 | |
| 6 | typedef struct TestFrameData { |
| 7 | int64_t PTS; |
| 8 | int64_t Duration; |
| 9 | int Width; |
| 10 | int Height; |
| 11 | const char *PixelFormat; |
| 12 | bool Keyframe; |
| 13 | uint8_t SHA256[32]; // SHA256 of the frame's decode planes |
| 14 | } TestFrameData; |
| 15 | |
| 16 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected