[FFmpeg-cvslog] dnn-layer-conv2d-test.c: remove dependency of dnn_native_class

Guo, Yejun git at videolan.org
Fri Jan 22 07:33:17 EET 2021


ffmpeg | branch: master | Guo, Yejun <yejun.guo at intel.com> | Fri Jan 22 10:39:19 2021 +0800| [5235634b615110dc5cf6a23141a4bd72730f4ac6] | committer: Guo, Yejun

dnn-layer-conv2d-test.c: remove dependency of dnn_native_class

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=5235634b615110dc5cf6a23141a4bd72730f4ac6
---

 tests/dnn/dnn-layer-conv2d-test.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/tests/dnn/dnn-layer-conv2d-test.c b/tests/dnn/dnn-layer-conv2d-test.c
index 378a05eafc..b623ddac0d 100644
--- a/tests/dnn/dnn-layer-conv2d-test.c
+++ b/tests/dnn/dnn-layer-conv2d-test.c
@@ -25,8 +25,6 @@
 
 #define EPSON 0.00001
 
-extern const AVClass dnn_native_class;
-
 static int test_with_same_dilate(void)
 {
     // the input data and expected data are generated with below python code.
@@ -99,7 +97,7 @@ static int test_with_same_dilate(void)
     float bias[2] = { -1.6574852, -0.72915393 };
 
     NativeContext ctx;
-    ctx.class = &dnn_native_class;
+    ctx.class = NULL;
     ctx.options.conv2d_threads = 1;
 
     params.activation = TANH;
@@ -203,7 +201,7 @@ static int test_with_valid(void)
     float bias[2] = { -0.4773722, -0.19620377 };
 
     NativeContext ctx;
-    ctx.class = &dnn_native_class;
+    ctx.class = NULL;
     ctx.options.conv2d_threads = 1;
 
     params.activation = TANH;



More information about the ffmpeg-cvslog mailing list