| 401 | } |
| 402 | |
| 403 | static void frame_data_free(void *opaque, uint8_t *data) |
| 404 | { |
| 405 | FrameData *fd = (FrameData *)data; |
| 406 | |
| 407 | av_frame_side_data_free(&fd->side_data, &fd->nb_side_data); |
| 408 | avcodec_parameters_free(&fd->par_enc); |
| 409 | |
| 410 | av_free(data); |
| 411 | } |
| 412 | |
| 413 | static int frame_data_ensure(AVBufferRef **dst, int writable) |
| 414 | { |
nothing calls this directly
no test coverage detected