I added ffmpeg to my project. I add USE_FFMPEG=1 flags to compiler and linker (via cmake).
I see ffmpeg correctly downloaded and built in my local .emscripten_cache, in asmjs/port-builds I see ffmpeg directory and all headers as well as libffmpeg-mt.bc
The project builds but during linkage I get unresolved externals errors from avformat library. This is my output:
Hi,
I added ffmpeg to my project. I add USE_FFMPEG=1 flags to compiler and linker (via cmake).
I see ffmpeg correctly downloaded and built in my local
.emscripten_cache
, inasmjs/port-builds
I see ffmpeg directory and all headers as well aslibffmpeg-mt.bc
The project builds but during linkage I get unresolved externals errors from avformat library. This is my output:
I have no ideas left. Clearly it has issues with libffmpeg functions like avformat_open_input, avformat_alloc_context etc.
Any ideas?