Commit 4ac44520 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '8495d84f'

* commit '8495d84f':
  ac3dec: Add some inline hints
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents 151b5e4a 8495d84f
...@@ -593,8 +593,8 @@ static void remove_dithering(AC3DecodeContext *s) { ...@@ -593,8 +593,8 @@ static void remove_dithering(AC3DecodeContext *s) {
} }
} }
static void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk, int ch, static inline void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk,
mant_groups *m) int ch, mant_groups *m)
{ {
if (!s->channel_uses_aht[ch]) { if (!s->channel_uses_aht[ch]) {
ac3_decode_transform_coeffs_ch(s, ch, m); ac3_decode_transform_coeffs_ch(s, ch, m);
...@@ -613,7 +613,7 @@ static void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk, int ch, ...@@ -613,7 +613,7 @@ static void decode_transform_coeffs_ch(AC3DecodeContext *s, int blk, int ch,
/** /**
* Decode the transform coefficients. * 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 ch, end;
int got_cplchan = 0; int got_cplchan = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment