mirror of
https://github.com/k4yt3x/video2x.git
synced 2024-12-29 16:09:10 +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>
19 lines
336 B
C
19 lines
336 B
C
#ifndef DECODER_H
|
|
#define DECODER_H
|
|
|
|
extern "C" {
|
|
#include <libavcodec/avcodec.h>
|
|
#include <libavformat/avformat.h>
|
|
}
|
|
|
|
int init_decoder(
|
|
AVHWDeviceType hw_type,
|
|
AVBufferRef *hw_ctx,
|
|
const char *input_filename,
|
|
AVFormatContext **fmt_ctx,
|
|
AVCodecContext **dec_ctx,
|
|
int *video_stream_index
|
|
);
|
|
|
|
#endif // DECODER_H
|