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/rv10.c | |
parent | 9d083d64172ebf94e343a3a269eabba5bbcdf182 (diff) | |
download | ffmpeg-ca1fe6c0e60808da45d4dfd8728f45e843b9f9b0.tar.gz |
h263: remove an unused parameter from ff_h263_decode_init_vlc
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 9239cf7d94..8cce6cf699 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -472,7 +472,7 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx) if (ff_MPV_common_init(s) < 0) return -1; - ff_h263_decode_init_vlc(s); + ff_h263_decode_init_vlc(); /* init rv vlc */ if (!done) { |