diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-07 05:50:23 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-12-07 05:50:23 +0000 |
commit | ea61e33a7f8587c7f8fdb2524e933632f8274d60 (patch) | |
tree | 1f0e1381537b7172b02959c2fc0a20d867adb39c /libavcodec/rv30.c | |
parent | 52b917536d96e4b3dfd5980e21d001cd60b916c3 (diff) | |
download | ffmpeg-ea61e33a7f8587c7f8fdb2524e933632f8274d60.tar.gz |
Intra types will be stored in int8_t array
Originally committed as revision 11183 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv30.c')
-rw-r--r-- | libavcodec/rv30.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv30.c b/libavcodec/rv30.c index 81a11e8ada..d6ca922380 100644 --- a/libavcodec/rv30.c +++ b/libavcodec/rv30.c @@ -60,7 +60,7 @@ static int rv30_parse_slice_header(RV34DecContext *r, GetBitContext *gb, SliceIn /** * Decode 4x4 intra types array. */ -static int rv30_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int *dst) +static int rv30_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int8_t *dst) { int i, j, k; |