| 304 | } |
| 305 | |
| 306 | const 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 | } |
no outgoing calls
no test coverage detected