| | |
| | | |
| | | |
| | | //////passive api |
| | | void c_ffmpeg_set_record_duration(const cffmpeg h, const int min, const int max){ |
| | | Wrapper *s = (Wrapper*)h; |
| | | s->SetRecMinCacheTime(min); |
| | | } |
| | | |
| | | void c_ffmpeg_build_recorder(const cffmpeg h, const char* id, const char *dir, int mind, int maxd, int audio){ |
| | | Wrapper *s = (Wrapper*)h; |
| | | |
| | |
| | | } |
| | | |
| | | void *c_ffmpeg_create_conv(const int srcW, const int srcH, const int srcFormat, |
| | | const int dstW, const int dstH, const int flag){ |
| | | return CreateConvertor(srcW, srcH, srcFormat, dstW, dstH, flag); |
| | | const int dstW, const int dstH, const int dstFormat, const int flag){ |
| | | return CreateConvertor(srcW, srcH, srcFormat, dstW, dstH, dstFormat, flag); |
| | | } |
| | | |
| | | void *c_ffmpeg_conv(void *h, uint8_t *in){ |