diff options
author | James Almer <jamrial@gmail.com> | 2024-11-11 20:00:34 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2024-11-13 12:49:52 -0300 |
commit | 2d3281b9dd040a2cc5b0eccb6d8ccc2900a06246 (patch) | |
tree | 3a6a47d70bc2c0974dc6884f5623814b8bd573a6 | |
parent | 66014c79abb5a1e00fc43fb335840b2063e8adc4 (diff) | |
download | ffmpeg-2d3281b9dd040a2cc5b0eccb6d8ccc2900a06246.tar.gz |
avcodec/hevc/sei: remove unused inline function
It's also a pointless indirection.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/hevc/sei.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/hevc/sei.h b/libavcodec/hevc/sei.h index 806540fac6..ee640003bc 100644 --- a/libavcodec/hevc/sei.h +++ b/libavcodec/hevc/sei.h @@ -109,11 +109,6 @@ struct HEVCParamSets; int ff_hevc_decode_nal_sei(GetBitContext *gb, void *logctx, HEVCSEI *s, const struct HEVCParamSets *ps, enum HEVCNALUnitType type); -static inline int ff_hevc_sei_ctx_replace(HEVCSEI *dst, const HEVCSEI *src) -{ - return ff_h2645_sei_ctx_replace(&dst->common, &src->common); -} - /** * Reset SEI values that are stored on the Context. * e.g. Caption data that was extracted during NAL |