File: data.h

package info (click to toggle)
ffms2 5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,000 kB
  • sloc: cpp: 6,513; ansic: 385; makefile: 164; 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