Displaying 2 results from an estimated 2 matches for "override_speex_warning".
2007 Jun 19
1
Blackfin inline assembler and VisualDSP++ toolchain
...either
through conditional compilation or may be even with configuration perl script) would be
simple than specific DISABLE_VOCODER.
Another potential saving could be achieved by replacing speex_warning, speex_notification
and speex_error with user-modifiable defines. The existing DISABLE_WARNING/
OVERRIDE_SPEEX_WARNING method is not efficient in reducing the code footprint because the
majority of the overhead happens in the points of invocation of the speex_warning rather than
in the function itself.
With all my suggestion applied there is an opportunity that minimized speex would fit in on-chip
code memory of B...
2007 Jun 19
1
Blackfin inline assembler and VisualDSP++ toolchain
...e of internal functioning
of the library. I think, DISABLE_VBR is a good candidate for official release.
>> Another potential saving could be achieved by replacing speex_warning, speex_notification
>> and speex_error with user-modifiable defines. The existing DISABLE_WARNING/
>> OVERRIDE_SPEEX_WARNING method is not efficient in reducing the code footprint because the
>> majority of the overhead happens in the points of invocation of the speex_warning rather than
>> in the function itself.
>
>How about:
>#define OVERRIDE_SPEEX_WARNING
>#define speex_warning(x) {}
>in us...