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

avcodec/h274: add H274SEIFrameFieldInfo struct

Signed-off-by: Wu Jianhua <toqsxw@outlook.com>
This commit is contained in:
Wu Jianhua
2025-04-27 19:44:46 +08:00
committed by Nuo Mi
parent 33d511b581
commit 299544bd0c

View File

@ -81,4 +81,12 @@ int ff_h274_hash_verify(H274HashContext *c, const H274SEIPictureHash *hash,
const AVFrame *frame, int coded_width, int coded_height); const AVFrame *frame, int coded_width, int coded_height);
void ff_h274_hash_freep(H274HashContext **c); void ff_h274_hash_freep(H274HashContext **c);
typedef struct H274SEIFrameFieldInfo {
int present;
int picture_struct;
uint8_t display_elemental_periods;
uint8_t source_scan_type;
uint8_t duplicate_flag;
} H274SEIFrameFieldInfo;
#endif /* AVCODEC_H274_H */ #endif /* AVCODEC_H274_H */