* 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() */
| 1148 | * @see av_frame_side_data_get_c() |
| 1149 | */ |
| 1150 | static inline |
| 1151 | const 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. |
no test coverage detected