Re: [FFmpeg-devel] [PATCH 8/8] avutil/vulkan: Move functions only used by lavfi to it

2024-03-03 Thread Lynne
Mar 3, 2024, 19:42 by andreas.rheinha...@outlook.com: > lavu/vulkan.c is duplicated into lavfi, lavc and lavu, > yet lots of functions in it are only used by lavfi. > This commit moves them to lavfi, saving 6544B of .text > from both lavc and lavu as well as some .rodata and > .data.rel.ro (in tot

[FFmpeg-devel] [PATCH 8/8] avutil/vulkan: Move functions only used by lavfi to it

2024-03-03 Thread Andreas Rheinhardt
lavu/vulkan.c is duplicated into lavfi, lavc and lavu, yet lots of functions in it are only used by lavfi. This commit moves them to lavfi, saving 6544B of .text from both lavc and lavu as well as some .rodata and .data.rel.ro (in total 7880B each for lavc and lavu). Signed-off-by: Andreas Rheinha