[FFmpeg-devel] [PATCH 03/14] avutil/frame: allow the addition of internal fields to AVFrameSideData
James Almer
jamrial at gmail.com
Sat Jan 25 22:21:31 EET 2025
Will be useful in the following commits to add fields that don't need to be
exposed.
Signed-off-by: James Almer <jamrial at gmail.com>
---
libavutil/side_data.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/libavutil/side_data.c b/libavutil/side_data.c
index 5770be0639..eb6e001f94 100644
--- a/libavutil/side_data.c
+++ b/libavutil/side_data.c
@@ -24,6 +24,10 @@
#include "mem.h"
#include "side_data.h"
+typedef struct FFFrameSideData {
+ AVFrameSideData p;
+} FFFrameSideData;
+
typedef struct FFSideDataDescriptor {
AVSideDataDescriptor p;
} FFSideDataDescriptor;
@@ -147,6 +151,7 @@ static AVFrameSideData *add_side_data_from_buf_ext(AVFrameSideData ***sd,
AVBufferRef *buf, uint8_t *data,
size_t size)
{
+ FFFrameSideData *sdp;
AVFrameSideData *ret, **tmp;
// *nb_sd + 1 needs to fit into an int and a size_t.
@@ -158,10 +163,11 @@ static AVFrameSideData *add_side_data_from_buf_ext(AVFrameSideData ***sd,
return NULL;
*sd = tmp;
- ret = av_mallocz(sizeof(*ret));
- if (!ret)
+ sdp = av_mallocz(sizeof(*sdp));
+ if (!sdp)
return NULL;
+ ret = &sdp->p;
ret->buf = buf;
ret->data = data;
ret->size = size;
--
2.48.1
More information about the ffmpeg-devel
mailing list