MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ff_frame_side_data_add_from_buf

Function ff_frame_side_data_add_from_buf

libavutil/side_data.c:173–182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171}
172
173AVFrameSideData *ff_frame_side_data_add_from_buf(AVFrameSideData ***sd,
174 int *nb_sd,
175 enum AVFrameSideDataType type,
176 AVBufferRef *buf)
177{
178 if (!buf)
179 return NULL;
180
181 return add_side_data_from_buf_ext(sd, nb_sd, type, buf, buf->data, buf->size);
182}
183
184static AVFrameSideData *replace_side_data_from_buf(AVFrameSideData *dst,
185 AVBufferRef *buf, int flags)

Callers 3

av_frame_side_data_newFunction · 0.85
av_frame_side_data_addFunction · 0.85

Calls 1

Tested by

no test coverage detected