projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2a0241a
)
Get rid of INIT_VLC_USE_STATIC in rv10/rv20.
author
Michael Niedermayer
<michaelni@gmx.at>
Sat, 11 Apr 2009 13:53:34 +0000
(13:53 +0000)
committer
Michael Niedermayer
<michaelni@gmx.at>
Sat, 11 Apr 2009 13:53:34 +0000
(13:53 +0000)
Originally committed as revision 18436 to svn://svn.ffmpeg.org/ffmpeg/trunk
libavcodec/rv10.c
patch
|
blob
|
history
diff --git
a/libavcodec/rv10.c
b/libavcodec/rv10.c
index c7ecd33a8cc1a2c19bf31ffb8f2e115604d740d4..a73917a0b9181e7dbd42cb0b11119f20b1da085c 100644
(file)
--- a/
libavcodec/rv10.c
+++ b/
libavcodec/rv10.c
@@
-584,12
+584,12
@@
static av_cold int rv10_decode_init(AVCodecContext *avctx)
/* init rv vlc */
if (!done) {
-
init_vlc
(&rv_dc_lum, DC_VLC_BITS, 256,
+
INIT_VLC_STATIC
(&rv_dc_lum, DC_VLC_BITS, 256,
rv_lum_bits, 1, 1,
- rv_lum_code, 2, 2,
INIT_VLC_USE_STATIC
);
-
init_vlc
(&rv_dc_chrom, DC_VLC_BITS, 256,
+ rv_lum_code, 2, 2,
16384
);
+
INIT_VLC_STATIC
(&rv_dc_chrom, DC_VLC_BITS, 256,
rv_chrom_bits, 1, 1,
- rv_chrom_code, 2, 2,
INIT_VLC_USE_STATIC
);
+ rv_chrom_code, 2, 2,
16388
);
done = 1;
}