singe/ffms2/test/data/data.h
2019-11-18 20:30:00 -06:00

16 lines
300 B
C++

#ifndef _TEST_DATA_H
#define _TEST_DATA_H
#include <cstdint>
typedef struct TestFrameData {
int64_t PTS;
int64_t Duration;
int Width;
int Height;
const char *PixelFormat;
bool Keyframe;
uint8_t SHA256[32]; // SHA256 of the frame's decode planes
} TestFrameData;
#endif