mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-28 06:59:11 +00:00
cd2006b4d9
* feat: updated PKGBUILD description * feat: updated workflow syntax and dependencies * feat: switched logging to spdlog * chore: adjusted library defaults * ci: fixed spdlog format string issues * docs: fixed docs for libvideo2x functions * feat: organized header files * fix: fixed header installation directory * feat: link spdlog statically if compiled from source * feat: adjusted libvideo2x log level enum names * feat: added version.h header Signed-off-by: k4yt3x <i@k4yt3x.com>
21 lines
474 B
C
21 lines
474 B
C
#ifndef CONVERSIONS_H
|
|
#define CONVERSIONS_H
|
|
|
|
extern "C" {
|
|
#include <libavutil/frame.h>
|
|
#include <libswscale/swscale.h>
|
|
}
|
|
|
|
#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
|