comparison rv30.c @ 5993:5dfff8f6f524 libavcodec

Intra types will be stored in int8_t array
author kostya
date Fri, 07 Dec 2007 05:50:23 +0000
parents 61f0987be684
children a33699306850
comparison
equal deleted inserted replaced
5992:61f0987be684 5993:5dfff8f6f524
58 } 58 }
59 59
60 /** 60 /**
61 * Decode 4x4 intra types array. 61 * Decode 4x4 intra types array.
62 */ 62 */
63 static int rv30_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int *dst) 63 static int rv30_decode_intra_types(RV34DecContext *r, GetBitContext *gb, int8_t *dst)
64 { 64 {
65 int i, j, k; 65 int i, j, k;
66 66
67 for(i = 0; i < 4; i++, dst += r->s.b4_stride - 4){ 67 for(i = 0; i < 4; i++, dst += r->s.b4_stride - 4){
68 for(j = 0; j < 4; j+= 2){ 68 for(j = 0; j < 4; j+= 2){