Browse Source

aacdec: fix strict prototype warning

Function protoypes without arguments require a void argument in C,
instead of an empty list.
tags/n3.0
Hendrik Leppkes 10 years ago
parent
commit
4da52e3630
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/aacdec_template.c

+ 1
- 1
libavcodec/aacdec_template.c View File

@@ -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);


Loading…
Cancel
Save