asterisk/codecs
Kevin P. Fleming 8d5deb312b Merged revisions 157859 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r157859 | kpfleming | 2008-11-19 15:34:47 -0600 (Wed, 19 Nov 2008) | 7 lines
  
  the gcc optimizer frequently finds broken code (use of uninitalized variables, unreachable code, etc.), which is good. however, developers usually compile with the optimizer turned off, because if they need to debug the resulting code, optimized code makes that process very difficult. this means that we get code changes committed that weren't adequately checked over for these sorts of problems.
  
  with this build system change, if (and only if) --enable-dev-mode was used and DONT_OPTIMIZE is turned on, when a source file is compiled it will actually be preprocessed (into a .i or .ii file), then compiled once with optimization (with the result sent to /dev/null) and again without optimization (but only if the first compile succeeded, of course).
  
  while making these changes, i did some cleanup work in Makefile.rules to move commonly-used combinations of flag variables into their own variables, to make the file easier to read and maintain
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@157974 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2008-11-20 00:08:12 +00:00
..
g722 clean up assembler and preprocessor files if they are here too 2007-10-29 22:24:44 +00:00
gsm Merged revisions 157859 via svnmerge from 2008-11-20 00:08:12 +00:00
ilbc Merged revisions 110880 via svnmerge from 2008-03-26 17:10:28 +00:00
lpc10 fix a few small things found by using sparse 2008-10-30 16:49:02 +00:00
Makefile More merges from resolve-shadow warnings: 2008-08-07 15:16:48 +00:00
codec_a_mu.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_adpcm.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_alaw.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_dahdi.c Create a new config file status, CONFIG_STATUS_FILEINVALID for differentiating 2008-09-12 23:30:03 +00:00
codec_g722.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_g726.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_gsm.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_ilbc.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_lpc10.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_resample.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_speex.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
codec_ulaw.c Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_adpcm.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_alaw.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_g722.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_g726.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_gsm.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_ilbc.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_lpc10.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_speex.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
ex_ulaw.h Merge codec_consistency branch. This should make sample usage much happier. 2008-10-17 21:35:23 +00:00
log2comp.h Merged revisions 109648 via svnmerge from 2008-03-18 19:24:15 +00:00