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/h263dec.c | |
parent | 9d083d64172ebf94e343a3a269eabba5bbcdf182 (diff) | |
download | ffmpeg-ca1fe6c0e60808da45d4dfd8728f45e843b9f9b0.tar.gz |
h263: remove an unused parameter from ff_h263_decode_init_vlc
Diffstat (limited to 'libavcodec/h263dec.c')
-rw-r--r-- | libavcodec/h263dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263dec.c b/libavcodec/h263dec.c index 169fd35281..0eaf4d7f61 100644 --- a/libavcodec/h263dec.c +++ b/libavcodec/h263dec.c @@ -117,7 +117,7 @@ av_cold int ff_h263_decode_init(AVCodecContext *avctx) if (ff_MPV_common_init(s) < 0) return -1; - ff_h263_decode_init_vlc(s); + ff_h263_decode_init_vlc(); return 0; } |