diff options
author | Guo, Yejun <yejun.guo@intel.com> | 2020-12-31 09:19:39 +0800 |
---|---|---|
committer | Guo, Yejun <yejun.guo@intel.com> | 2020-12-31 09:21:31 +0800 |
commit | 477dd2df60e6419ad8776a9865c421e8d42f68fe (patch) | |
tree | e92f8938108e01921d699e40749171144bd382dc | |
parent | 6b0cfa8399d34e34ba68d98a837dec82c88d49c6 (diff) | |
download | ffmpeg-477dd2df60e6419ad8776a9865c421e8d42f68fe.tar.gz |
dnn_interface.h: fix redefining typedefs
Signed-off-by: Guo, Yejun <yejun.guo@intel.com>
-rw-r--r-- | libavfilter/dnn_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/dnn_interface.h b/libavfilter/dnn_interface.h index 1e2842425a..9533c88829 100644 --- a/libavfilter/dnn_interface.h +++ b/libavfilter/dnn_interface.h @@ -28,7 +28,7 @@ #include <stdint.h> #include "libavutil/frame.h" -typedef struct AVFilterContext AVFilterContext; +#include "avfilter.h" typedef enum {DNN_SUCCESS, DNN_ERROR} DNNReturnType; |