mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
Merge commit '8495d84f0101464b15517860db33e8605586d87e'
* commit '8495d84f0101464b15517860db33e8605586d87e': ac3dec: Add some inline hints Merged-by: Clément Bœsch <u@pkh.me>
This commit is contained in:
commit
4ac44520e5
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user