mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-29 16:09:10 +00:00
37c2c4c647
* feat: added Makefile target for debian * fix: fixed Dockerfile installing the wrong package * feat: added hwaccel for encoder and decoder * feat: added benchmark mode * feat: removed hard-coded keyframe info * chore: cleaned up headers and organized code * style: cleaned up headers and includes * feat: added a progress bar for CLI * feat: removed atomicity requirements on processed frames * feat: added pause and abort for CLI * chore: updated default preset and crf settings * feat: added support for copying audio and subtitle streams * fix: fixed syntax issues for MSVC * fix: fixed audio/subtitle timestamp rescaling Signed-off-by: k4yt3x <i@k4yt3x.com>
20 lines
445 B
C
20 lines
445 B
C
#ifndef CONVERSIONS_H
|
|
#define CONVERSIONS_H
|
|
|
|
extern "C" {
|
|
#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
|