diff options
author | foo86 <foobaz86@gmail.com> | 2016-03-02 22:31:46 +0300 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-03 12:35:21 +0100 |
commit | 89813487491afbca5472e8a4af262eedb4aead02 (patch) | |
tree | f91cf6a13e8538accf8750c65d1dea990c8eba1e /libavcodec/dca_xll.c | |
parent | 256fa2ab1b2878b116d3cf366832c046fc52d0b0 (diff) | |
download | ffmpeg-89813487491afbca5472e8a4af262eedb4aead02.tar.gz |
avcodec/dca: fix av_cold placement in declarations
Reviewed-by: Hendrik Leppkes <h.leppkes@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dca_xll.c')
-rw-r--r-- | libavcodec/dca_xll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dca_xll.c b/libavcodec/dca_xll.c index cd1af81dcc..ffe8ef3369 100644 --- a/libavcodec/dca_xll.c +++ b/libavcodec/dca_xll.c @@ -602,7 +602,7 @@ static int chs_parse_band_data(DCAXllDecoder *s, DCAXllChSet *c, int band, int s return 0; } -static void av_cold chs_clear_band_data(DCAXllDecoder *s, DCAXllChSet *c, int band, int seg) +static av_cold void chs_clear_band_data(DCAXllDecoder *s, DCAXllChSet *c, int band, int seg) { DCAXllBand *b = &c->bands[band]; int i, offset, nsamples; @@ -1242,7 +1242,7 @@ static void scale_down_mix(DCAXllDecoder *s, DCAXllChSet *o, int band) // Clear all band data and replace non-residual encoded channels with lossy // counterparts -static void av_cold force_lossy_output(DCAXllDecoder *s, DCAXllChSet *c) +static av_cold void force_lossy_output(DCAXllDecoder *s, DCAXllChSet *c) { DCAContext *dca = s->avctx->priv_data; int band, ch; |