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/rv40.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/rv40.c')
-rw-r--r-- | libavcodec/rv40.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rv40.c b/libavcodec/rv40.c index 83cfbadaf8..642386c380 100644 --- a/libavcodec/rv40.c +++ b/libavcodec/rv40.c @@ -131,13 +131,13 @@ static int rv40_parse_slice_header(RV34DecContext *r, GetBitContext *gb, SliceIn /** * Decode 4x4 intra types array. */ -static int rv40_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int *dst) +static int rv40_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int8_t *dst) { MpegEncContext *s = &r->s; int i, j, k, v; int A, B, C; int pattern; - int *ptr; + int8_t *ptr; for(i = 0; i < 4; i++, dst += s->b4_stride){ if(!i && s->first_slice_line){ |