diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-06-29 11:24:08 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-12-01 11:00:41 +0100 |
commit | 3bafc4ead42668a60b479e4e37b91efe2d46413f (patch) | |
tree | 65e2f1abfe555b7029f45a137e2e7108ff96a3c4 /libavcodec/h2645_sei.h | |
parent | f89825e60a38497abe5f39ff3192b6f276599ef9 (diff) | |
download | ffmpeg-3bafc4ead42668a60b479e4e37b91efe2d46413f.tar.gz |
avcodec/h2645_sei: Factor out applying SEIs to frames
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/h2645_sei.h')
-rw-r--r-- | libavcodec/h2645_sei.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/h2645_sei.h b/libavcodec/h2645_sei.h index 3e088f3307..4600caab29 100644 --- a/libavcodec/h2645_sei.h +++ b/libavcodec/h2645_sei.h @@ -134,4 +134,8 @@ int ff_h2645_sei_ctx_replace(H2645SEI *dst, const H2645SEI *src); void ff_h2645_sei_reset(H2645SEI *s); +int ff_h2645_sei_to_frame(AVFrame *frame, H2645SEI *sei, + enum AVCodecID codec_id, + AVCodecContext *avctx); + #endif /* AVCODEC_H2645_SEI_H */ |