csrc/cffmpeg.cpp
@@ -10,17 +10,17 @@ } #endif #ifndef LIB_CFFMPEG #include "csrc/all.hpp" #endif #include "csrc/wrapper.hpp" using namespace cffmpeg_wrap; cffmpeg c_ffmpeg_create(const int log, const char *logfile){ bool logit = false; if (log != 0) logit = true; return new Wrapper(logit, logfile); cffmpeg c_ffmpeg_create(){ return new Wrapper(); } cffmpeg c_ffmpeg_create2(const char *logfile){ return new Wrapper(logfile); } void c_ffmpeg_destroy(const cffmpeg h){