| 657 | } |
| 658 | |
| 659 | AVFrameSideData *av_frame_get_side_data(const AVFrame *frame, |
| 660 | enum AVFrameSideDataType type) |
| 661 | { |
| 662 | return (AVFrameSideData *)av_frame_side_data_get( |
| 663 | frame->side_data, frame->nb_side_data, |
| 664 | type |
| 665 | ); |
| 666 | } |
| 667 | |
| 668 | static int frame_copy_video(AVFrame *dst, const AVFrame *src) |
| 669 | { |
no test coverage detected