mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-07-24 16:27:06 +00:00
fix the warning: "function declaration isn’t a prototype", in C int foo() and int foo(void) are different functions. int foo() accepts an arbitrary number of arguments, while int foo(void) accepts 0 arguments. Signed-off-by: Jun Zhao <mypopydev@gmail.com>