diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-03 08:32:39 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-02-06 21:44:38 +0100 |
commit | ca1fe6c0e60808da45d4dfd8728f45e843b9f9b0 (patch) | |
tree | 0a168d2d26718d7a0528f3e59033c5d785cacb7f /libavcodec/ituh263dec.c | |
parent | 9d083d64172ebf94e343a3a269eabba5bbcdf182 (diff) | |
download | ffmpeg-ca1fe6c0e60808da45d4dfd8728f45e843b9f9b0.tar.gz |
h263: remove an unused parameter from ff_h263_decode_init_vlc
Diffstat (limited to 'libavcodec/ituh263dec.c')
-rw-r--r-- | libavcodec/ituh263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ituh263dec.c b/libavcodec/ituh263dec.c index f062b246b4..30cd58efd3 100644 --- a/libavcodec/ituh263dec.c +++ b/libavcodec/ituh263dec.c @@ -101,7 +101,7 @@ static VLC cbpc_b_vlc; /* init vlcs */ /* XXX: find a better solution to handle static init */ -void ff_h263_decode_init_vlc(MpegEncContext *s) +void ff_h263_decode_init_vlc(void) { static int done = 0; |