Commit 4da52e36 authored by Hendrik Leppkes's avatar Hendrik Leppkes

aacdec: fix strict prototype warning

Function protoypes without arguments require a void argument in C,
instead of an empty list.
parent 0f87cbdd
......@@ -1065,7 +1065,7 @@ static void reset_predictor_group(PredictorState *ps, int group_num)
static void aacdec_init(AACContext *ac);
static av_cold void aac_static_table_init()
static av_cold void aac_static_table_init(void)
{
AAC_INIT_VLC_STATIC( 0, 304);
AAC_INIT_VLC_STATIC( 1, 270);
......
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