mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-19 13:50:58 +00:00
aacenc: Mark psy_3gpp_window() as av_unused.
It is intentionally left in to allow adding 3GPP-style windowing in the future. Marking it av_unused silences an annoying unused function warning.
This commit is contained in:
parent
b36518dcf4
commit
3a0d0ff5e6
@ -377,9 +377,10 @@ static const uint8_t window_grouping[9] = {
|
|||||||
* Tell encoder which window types to use.
|
* Tell encoder which window types to use.
|
||||||
* @see 3GPP TS26.403 5.4.1 "Blockswitching"
|
* @see 3GPP TS26.403 5.4.1 "Blockswitching"
|
||||||
*/
|
*/
|
||||||
static FFPsyWindowInfo psy_3gpp_window(FFPsyContext *ctx,
|
static av_unused FFPsyWindowInfo psy_3gpp_window(FFPsyContext *ctx,
|
||||||
const int16_t *audio, const int16_t *la,
|
const int16_t *audio,
|
||||||
int channel, int prev_type)
|
const int16_t *la,
|
||||||
|
int channel, int prev_type)
|
||||||
{
|
{
|
||||||
int i, j;
|
int i, j;
|
||||||
int br = ctx->avctx->bit_rate / ctx->avctx->channels;
|
int br = ctx->avctx->bit_rate / ctx->avctx->channels;
|
||||||
|
Loading…
Reference in New Issue
Block a user