ericmckean / webm

Automatically exported from code.google.com/p/webm
0 stars 0 forks source link

defined functions in headers should be inlined #694

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
In Libvpx we have a set of functions in headers that are not inlined.  

This means the function gets pulled into object code that doesn't use it and we 
get unused function warnings in various compilers...    

If the function isn't to be inlined - it should ideally only have one copy.

Convert all functions that shouldn't be inlined to properly decorated ( vp8_, 
vp9_, vpx_) functions, and make the appropriate changes to the lib.   

Original issue reported on code.google.com by jimbankoski@google.com on 15 Jan 2014 at 11:41