[FFmpeg-cvslog] ac3dec: Add some inline hints
Luca Barbato
git at videolan.org
Wed Mar 15 22:58:33 EET 2017
ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Mon Jul 18 19:50:34 2016 +0200| [8495d84f0101464b15517860db33e8605586d87e] | committer: Diego Biurrun
ac3dec: Add some inline hints
Signed-off-by: Diego Biurrun <diego at biurrun.de>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=8495d84f0101464b15517860db33e8605586d87e
---
libavcodec/ac3dec.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index a263164..9afc54d 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -548,8 +548,8 @@ static void remove_dithering(AC3DecodeContext *s) {
}
}
-static void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk, int ch,
- mant_groups *m)
+static inline void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk,
+ int ch, mant_groups *m)
{
if (!s->channel_uses_aht[ch]) {
ac3_decode_transform_coeffs_ch(s, ch, m);
@@ -568,7 +568,7 @@ static void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk, int ch,
/**
* Decode the transform coefficients.
*/
-static void decode_transform_coeffs(AC3DecodeContext *s, int blk)
+static inline void decode_transform_coeffs(AC3DecodeContext *s, int blk)
{
int ch, end;
int got_cplchan = 0;
More information about the ffmpeg-cvslog
mailing list