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

Function av_frame_side_data_get

libavutil/frame.h:1150–1157  ·  view source on GitHub ↗

* Wrapper around av_frame_side_data_get_c() to workaround the limitation * that for any type T the conversion from T * const * to const T * const * * is not performed automatically in C. * @see av_frame_side_data_get_c() */

Source from the content-addressed store, hash-verified

1148 * @see av_frame_side_data_get_c()
1149 */
1150static inline
1151const AVFrameSideData *av_frame_side_data_get(AVFrameSideData * const *sd,
1152 const int nb_sd,
1153 enum AVFrameSideDataType type)
1154{
1155 return av_frame_side_data_get_c((const AVFrameSideData * const *)sd,
1156 nb_sd, type);
1157}
1158
1159/**
1160 * Remove and free all side data instances of the given type from an array.

Callers 15

av_frame_get_side_dataFunction · 0.85
av_frame_side_data_newFunction · 0.85
av_frame_side_data_addFunction · 0.85
av_frame_side_data_cloneFunction · 0.85
fg_createFunction · 0.85
ff_dovi_configureFunction · 0.85
handle_side_dataFunction · 0.85
handle_side_dataFunction · 0.85
nvenc_setup_hevc_configFunction · 0.85
nvenc_setup_av1_configFunction · 0.85
ff_encode_preinitFunction · 0.85

Calls 1

av_frame_side_data_get_cFunction · 0.85

Tested by

no test coverage detected