diff mbox series

[FFmpeg-devel,1/5] dnn: Delete unused global variable

Message ID 20210121213956.991629-1-sw@jkqxz.net
State Accepted
Commit c6a3ca2db491a66af9b1f5b12cbe3058713caf0b
Headers show
Series [FFmpeg-devel,1/5] dnn: Delete unused global variable | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Mark Thompson Jan. 21, 2021, 9:39 p.m. UTC
---
 libavfilter/dnn/dnn_backend_native_layer_mathbinary.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Guo, Yejun Jan. 22, 2021, 2:22 a.m. UTC | #1
> -----Original Message-----
> From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of Mark
> Thompson
> Sent: 2021年1月22日 5:40
> To: ffmpeg-devel@ffmpeg.org
> Subject: [FFmpeg-devel] [PATCH 1/5] dnn: Delete unused global variable
> 
> ---
>  libavfilter/dnn/dnn_backend_native_layer_mathbinary.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/libavfilter/dnn/dnn_backend_native_layer_mathbinary.c
> b/libavfilter/dnn/dnn_backend_native_layer_mathbinary.c
> index 998a75245c..fc48242093 100644
> --- a/libavfilter/dnn/dnn_backend_native_layer_mathbinary.c
> +++ b/libavfilter/dnn/dnn_backend_native_layer_mathbinary.c
> @@ -28,7 +28,6 @@
>  #include "dnn_backend_native_layer_mathbinary.h"
> 
>  typedef float (*FunType)(float src0, float src1); -FunType pfun;
> 
>  static float sub(float src0, float src1)  {
> --
thanks, will change the title from dnn to dnn_backend_native_layer_mathbinary.c, and push soon
diff mbox series

Patch

diff --git a/libavfilter/dnn/dnn_backend_native_layer_mathbinary.c b/libavfilter/dnn/dnn_backend_native_layer_mathbinary.c
index 998a75245c..fc48242093 100644
--- a/libavfilter/dnn/dnn_backend_native_layer_mathbinary.c
+++ b/libavfilter/dnn/dnn_backend_native_layer_mathbinary.c
@@ -28,7 +28,6 @@ 
 #include "dnn_backend_native_layer_mathbinary.h"
 
 typedef float (*FunType)(float src0, float src1);
-FunType pfun;
 
 static float sub(float src0, float src1)
 {