mirror of
https://github.com/opencv/opencv.git
synced 2025-08-06 06:26:29 +08:00
videoio: fix ffmpeg standalone build
This commit is contained in:
parent
a079acc0d9
commit
a22dd28e02
@ -67,6 +67,10 @@
|
||||
#ifndef CV_UNUSED // Required for standalone compilation mode (OpenCV defines this in base.hpp)
|
||||
#define CV_UNUSED(name) (void)name
|
||||
#endif
|
||||
#ifndef CV_Assert // Required for standalone compilation mode (OpenCV defines this in base.hpp)
|
||||
#include <assert.h>
|
||||
#define CV_Assert(expr) assert(expr)
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
Loading…
Reference in New Issue
Block a user