mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
ac3dec: Add some inline hints
Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
parent
3db51bf671
commit
8495d84f01
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue