1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/h274: add H274SEIPictureHash struct

Signed-off-by: Wu Jianhua <toqsxw@outlook.com>
This commit is contained in:
Wu Jianhua
2025-04-27 19:44:38 +08:00
committed by Nuo Mi
parent 312f8ef2ca
commit 942cf59e9d

View File

@ -64,4 +64,14 @@ int ff_h274_apply_film_grain(AVFrame *out, const AVFrame *in,
H274FilmGrainDatabase *db,
const AVFilmGrainParams *params);
typedef struct H274SEIPictureHash {
int present;
union {
uint8_t md5[3][16];
uint16_t crc[3];
uint32_t checksum[3];
};
uint8_t hash_type;
} H274SEIPictureHash;
#endif /* AVCODEC_H274_H */