Recently, I am compiling the ffmpeg codes under windows use the VS2010 with intel compiler. For the following codes:
void ff_dcadsp_init(DCADSPContext *s)
{
s->lfe_fir = dca_lfe_fir_c;
if (ARCH_ARM) ff_dcadsp_init_arm(s);
}
the macro ARCH_ARM
is defined as 0
.
When I compile it under linux, there is no function in ff_dcadsp_init_arm()
in the object file, while it does under windows? So I want to make sure if the compiler will do something about the useless codes and how to set it for INTEL compiler.