Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2017-03-15 23:58:13 +0300
committerClément Bœsch <u@pkh.me>2017-03-15 23:58:13 +0300
commit4ac44520e5269a6d376bb6bbac34824251570262 (patch)
tree1dd725f7a9e24013981d5a23e05759b750d0f58e /libavcodec/ac3dec.c
parent151b5e4a53c29d3866774366ad3c30231f1ec81b (diff)
parent8495d84f0101464b15517860db33e8605586d87e (diff)
Merge commit '8495d84f0101464b15517860db33e8605586d87e'
* commit '8495d84f0101464b15517860db33e8605586d87e': ac3dec: Add some inline hints Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/ac3dec.c')
-rw-r--r--libavcodec/ac3dec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c
index 3cb46bb930..003ce17a16 100644
--- a/libavcodec/ac3dec.c
+++ b/libavcodec/ac3dec.c
@@ -593,8 +593,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);
@@ -613,7 +613,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;