2024-10-08 02:29:00 +00:00
|
|
|
#ifndef CONVERSIONS_H
|
|
|
|
#define CONVERSIONS_H
|
|
|
|
|
2024-10-10 07:23:13 +00:00
|
|
|
extern "C" {
|
2024-10-10 00:00:00 +00:00
|
|
|
#include <libavutil/frame.h>
|
2024-10-10 07:23:13 +00:00
|
|
|
#include <libswscale/swscale.h>
|
|
|
|
}
|
|
|
|
|
2024-10-08 02:29:00 +00:00
|
|
|
#include <mat.h>
|
|
|
|
|
|
|
|
// Convert AVFrame to another pixel format
|
|
|
|
AVFrame *convert_avframe_pix_fmt(AVFrame *src_frame, AVPixelFormat pix_fmt);
|
|
|
|
|
|
|
|
// Convert AVFrame to ncnn::Mat
|
|
|
|
ncnn::Mat avframe_to_ncnn_mat(AVFrame *frame);
|
|
|
|
|
|
|
|
// Convert ncnn::Mat to AVFrame
|
|
|
|
AVFrame *ncnn_mat_to_avframe(const ncnn::Mat &mat, AVPixelFormat pix_fmt);
|
|
|
|
|
|
|
|
#endif // CONVERSIONS_H
|