1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-04-11 15:07:07 +00:00

hints for the code analysis.

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7653 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2008-02-17 05:27:14 +00:00
parent f1de784d11
commit 2f8db0d750

@ -276,6 +276,10 @@ int oki_adpcm_decode(oki_adpcm_state_t *s,
int samples;
float z;
#if (_MSC_VER >= 1400)
__analysis_assume(s->phase >=0 && s->phase <= 4);
#endif
samples = 0;
if (s->bit_rate == 32000)
{