diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-26 13:37:13 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-26 16:26:17 +0200 |
commit | e16942852979c44faaa8fcd6ad95d1ff3642368b (patch) | |
tree | f19044fa7617884d1f878fb2f1a737a2a2d5684a /libavcodec/bink.c | |
parent | 48520772d9eba9725382be612f1dcd87d2fda2e6 (diff) | |
download | ffmpeg-e16942852979c44faaa8fcd6ad95d1ff3642368b.tar.gz |
Mark parameterless function declarations as 'void'.
Diffstat (limited to 'libavcodec/bink.c')
-rw-r--r-- | libavcodec/bink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bink.c b/libavcodec/bink.c index 34d4d10fae..e085aa54e2 100644 --- a/libavcodec/bink.c +++ b/libavcodec/bink.c @@ -1208,7 +1208,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac /** * Caclulate quantization tables for version b */ -static av_cold void binkb_calc_quant() +static av_cold void binkb_calc_quant(void) { uint8_t inv_bink_scan[64]; double s[64]; |