comparison libmpeg2/decode.c @ 2080:f91ad6d23ce9

gcc3 warning fixed
author arpi
date Thu, 04 Oct 2001 18:30:30 +0000
parents 7de4eceac32f
children c568f4fffb0a
comparison
equal deleted inserted replaced
2079:38281c32f7da 2080:f91ad6d23ce9
113 #ifdef MPEG12_POSTPROC 113 #ifdef MPEG12_POSTPROC
114 for(i=0;i<4;i++){ 114 for(i=0;i<4;i++){
115 #else 115 #else
116 for(i=0;i<3;i++){ 116 for(i=0;i<3;i++){
117 #endif 117 #endif
118 base = memalign(64,buff_size); 118 base = (unsigned char *)memalign(64,buff_size);
119 frames[i].base[0] = base; 119 frames[i].base[0] = base;
120 frames[i].base[1] = base + frame_size * 5 / 4; 120 frames[i].base[1] = base + frame_size * 5 / 4;
121 frames[i].base[2] = base + frame_size; 121 frames[i].base[2] = base + frame_size;
122 frames[i].copy = NULL; 122 frames[i].copy = NULL;
123 frames[i].vo = NULL; 123 frames[i].vo = NULL;