File: data.h

package info (click to toggle)
ffms2 2.40%2Bgit20211209-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 904 kB
  • sloc: cpp: 6,690; ansic: 384; makefile: 152; perl: 85; sh: 22
file content (16 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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