If you try to use this library with clean ffmpeg (libraries) build, you would get this error (ffmpeg.h):
unknown type name 'AVCodecContext'; did you mean 'AVFormatContext'?
16 | int codec_context(AVCodecContext** avcc, int* stream, AVFormatContext
I assume it's most likely because ffmpeg.h is not including libavcodec/avcodec.h, which declares AVCodecContext.
If you try to use this library with clean ffmpeg (libraries) build, you would get this error (
ffmpeg.h):I assume it's most likely because
ffmpeg.his not includinglibavcodec/avcodec.h, which declaresAVCodecContext.