Re: [FFmpeg-devel] [PATCH 1/2] avcodec/tiff: Avoid forward declarations

2021-03-30 Thread Pavel Koshevoy
On Tue, Mar 30, 2021 at 2:11 AM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > In this case it also fixes a potential for compilation failures: > Not all compilers can handle the case in which a function with > a forward declaration declared with an attribute to always inline it > i

[FFmpeg-devel] [PATCH 1/2] avcodec/tiff: Avoid forward declarations

2021-03-30 Thread Andreas Rheinhardt
In this case it also fixes a potential for compilation failures: Not all compilers can handle the case in which a function with a forward declaration declared with an attribute to always inline it is called before the function body appears. Signed-off-by: Andreas Rheinhardt --- This is of course