dyne / frei0r

A large collection of free and portable video plugins
https://frei0r.dyne.org/
GNU General Public License v2.0
419 stars 90 forks source link

using the void keyword in function declaration #104

Closed mypopydev closed 3 years ago

mypopydev commented 3 years ago

Using the void keyword in function declaration to fix the build warning when enable frei0r in FFmpeg, the warning message like" frei0r.h:230:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes] 230 | int f0r_init(); | ^~~ CC libavfilter/vf_gblur.o frei0r.h:236:1: warning: function declaration isn’t a prototype [-Wstrict-prototypes] 236 | void f0r_deinit(); | ^~~~ " Signed-off-by: Jun Zhao barryjzhao@tencent.com