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

Function av_frame_side_data_get_c

libavutil/side_data.c:306–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

304}
305
306const AVFrameSideData *av_frame_side_data_get_c(const AVFrameSideData * const *sd,
307 const int nb_sd,
308 enum AVFrameSideDataType type)
309{
310 for (int i = 0; i < nb_sd; i++) {
311 if (sd[i]->type == type)
312 return sd[i];
313 }
314 return NULL;
315}

Callers 1

av_frame_side_data_getFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected