PR #22724 opened by michaelni URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22724 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/22724.patch
Signed-off-by: Michael Niedermayer <[email protected]> >From afbb5e254ee19a1f51e67746865608b5e8f2fb96 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <[email protected]> Date: Sun, 5 Apr 2026 22:03:14 +0200 Subject: [PATCH] avcodec/cbs_sei: document thet the prefix flag is not checked against the spec Signed-off-by: Michael Niedermayer <[email protected]> --- libavcodec/cbs_sei.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavcodec/cbs_sei.h b/libavcodec/cbs_sei.h index e3e3097104..800f017808 100644 --- a/libavcodec/cbs_sei.h +++ b/libavcodec/cbs_sei.h @@ -240,6 +240,8 @@ void ff_cbs_sei_free_message_list(SEIRawMessageList *list); * If set, payload_ref must be a RefStruct reference backing payload_data. * This function creates a new reference to payload_ref in this case. * If payload_ref is NULL, the new message will not be reference counted. + * + * @param prefix flag switching between prefix and suffix, note the given value is used without verification */ int ff_cbs_sei_add_message(CodedBitstreamContext *ctx, CodedBitstreamFragment *au, -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
