1
0
Fork 0
android_external_ffmpeg_codec2/ffmpeg_utils/ffmpeg_hwaccel.h
2025-06-24 22:41:51 -05:00

18 lines
353 B
C

#ifndef FFMPEG_HWACCEL_H
#define FFMPEG_HWACCEL_H
#ifdef __cplusplus
extern "C" {
#endif
#include "libavcodec/avcodec.h"
extern int ffmpeg_hwaccel_init(AVCodecContext *avctx);
extern void ffmpeg_hwaccel_deinit(AVCodecContext *avctx);
extern int ffmpeg_hwaccel_get_frame(AVCodecContext *avctx, AVFrame *frame);
#ifdef __cplusplus
};
#endif
#endif