more static inlining (missed on the previous commit)

This commit is contained in:
nu774 2013-01-07 13:24:09 +09:00
parent 5e1168a4dd
commit 158dc13cc8
2 changed files with 2 additions and 1 deletions

View File

@ -164,6 +164,7 @@ inline int16_t pcm_u32be_to_s16(int32_t n)
{
return pcm_quantize_s32(m4af_btoh32(n) ^ 0x80000000);
}
static
inline int16_t pcm_f32le_to_s16(int32_t n)
{
return pcm_quantize_f64(pcm_i2f(m4af_ltoh32(n)));

View File

@ -1,4 +1,4 @@
#ifndef VERSION_H
#define VERSION_H
const char *fdkaac_version = "0.0.6";
const char *fdkaac_version = "0.0.7";
#endif