summaryrefslogtreecommitdiff
path: root/libavcodec/evc_parse.h
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2023-06-17 18:02:26 -0300
committerJames Almer <jamrial@gmail.com>2023-06-19 12:57:31 -0300
commita5663f2d9a3aa322fcba31da5d0e62cd58628477 (patch)
tree59c114ae28ffdd50fc03784d8542bd77adfc68b3 /libavcodec/evc_parse.h
parentff7a4cdf04fcd0bc8deab540fe83f789fcf99301 (diff)
avcodec/evc_parser: make ff_evc_parse_nal_unit() local to the parser
This is in preparation for the following commits. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/evc_parse.h')
-rw-r--r--libavcodec/evc_parse.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/evc_parse.h b/libavcodec/evc_parse.h
index 97825efcd5..f31075ff9c 100644
--- a/libavcodec/evc_parse.h
+++ b/libavcodec/evc_parse.h
@@ -159,6 +159,9 @@ int ff_evc_get_temporal_id(const uint8_t *bits, int bits_size, void *logctx);
int ff_evc_parse_nal_unit(EVCParserContext *ctx, const uint8_t *buf, int buf_size, void *logctx);
+int ff_evc_parse_slice_header(EVCParserSliceHeader *sh, const EVCParamSets *ps,
+ enum EVCNALUnitType nalu_type, const uint8_t *buf, int buf_size);
+
// POC (picture order count of the current picture) derivation
// @see ISO/IEC 23094-1:2020(E) 8.3.1 Decoding process for picture order count
int ff_evc_derive_poc(const EVCParamSets *ps, const EVCParserSliceHeader *sh,