]> git.sesse.net Git - ffmpeg/commit
avcodec/x86/diracdsp_init: Make functions only used here static
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Fri, 19 Feb 2021 00:32:25 +0000 (01:32 +0100)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Wed, 24 Feb 2021 08:17:40 +0000 (09:17 +0100)
commit68bd6c7dac6aa8077110b6794afd8928060371c2
tree967eefab16ee90d55096f4a9b03fcd8af94dbf7a
parent3a80b1ac121670c2235d92779546c5c789620842
avcodec/x86/diracdsp_init: Make functions only used here static

This allowed to remove forward declarations. Because compilers expect
declarations for all functions they encounter even when it is within
blocks disabled via "if (0 && foo)", one has to use a real #if in
ff_diracdsp_init_x86.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavcodec/x86/diracdsp_init.c