avcodec/parser_internal: Remove prefix from parser_{init,parse,close}

Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-10-26 14:42:59 +01:00
parent e0b0ca8111
commit 7c43cc4cb7
69 changed files with 160 additions and 160 deletions
+2 -2
View File
@@ -375,6 +375,6 @@ static av_cold void evc_parser_close(AVCodecParserContext *s)
const FFCodecParser ff_evc_parser = {
PARSER_CODEC_LIST(AV_CODEC_ID_EVC),
.priv_data_size = sizeof(EVCParserContext),
.parser_parse = evc_parse,
.parser_close = evc_parser_close,
.parse = evc_parse,
.close = evc_parser_close,
};