From: nu774 Date: Mon, 7 Jan 2013 04:24:09 +0000 (+0900) Subject: more static inlining (missed on the previous commit) X-Git-Tag: v0.0.7 X-Git-Url: http://git.ieval.ro/?p=fdkaac.git;a=commitdiff_plain;h=158dc13cc882985fb3c2eac140e86724223b2971 more static inlining (missed on the previous commit) --- diff --git a/src/lpcm.c b/src/lpcm.c index 191eaf9..3fcb8a4 100644 --- a/src/lpcm.c +++ b/src/lpcm.c @@ -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))); diff --git a/version.h b/version.h index edd1057..d850218 100644 --- a/version.h +++ b/version.h @@ -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