[Ffmpeg-devel] [PATCH] last_coeff_flag_offset_8x8 link error
Alexander Strange
astrange
Thu Mar 22 04:02:27 CET 2007
On Mar 21, 2007, at 4:59 PM, M?ns Rullg?rd wrote:
>
> What were you doing when this happened, and where was the unresolved
> reference to this? It's working fine for me, so you'll have to submit
> a full bug report.
>
> --
> M?ns Rullg?rd
> mans at mansr.com
cabac.h defines an asm function that uses the table, declared static
inline. If unused static inline functions aren't pruned, it will end
up compiled in cabac.c and cause this error.
gcc doesn't prune static inlines at -O0 unless you specify -funit-at-
a-time.
I forget how I found this out, since these parts don't usually
compile with -O0 anyway...
More information about the ffmpeg-devel
mailing list