YUV                54 lib/h.263/swfvideo.c     stream->current = (YUV*)rfx_calloc(width*height*sizeof(YUV));
YUV                55 lib/h.263/swfvideo.c     stream->oldpic = (YUV*)rfx_calloc(width*height*sizeof(YUV));
YUV                98 lib/h.263/swfvideo.c static void getregion(block_t* bb, YUV*pic, int posx, int posy, int linex)
YUV               100 lib/h.263/swfvideo.c     YUV*p1;
YUV               101 lib/h.263/swfvideo.c     YUV*p2;
YUV               124 lib/h.263/swfvideo.c static void getmvdregion(block_t* bb, YUV*pic, int posx, int posy, int mvdx, int mvdy, int linex)
YUV               126 lib/h.263/swfvideo.c     YUV*p1;
YUV               127 lib/h.263/swfvideo.c     YUV*p2;
YUV               242 lib/h.263/swfvideo.c static void rgb2yuv(YUV*dest, RGBA*src, int dlinex, int slinex, int width, int height)
YUV               264 lib/h.263/swfvideo.c static void copyregion(VIDEOSTREAM*s, YUV*dest, YUV*src, int bx, int by)
YUV               266 lib/h.263/swfvideo.c     YUV*p1 = &dest[by*s->linex*16+bx*16];
YUV               267 lib/h.263/swfvideo.c     YUV*p2 = &src[by*s->linex*16+bx*16];
YUV               270 lib/h.263/swfvideo.c 	memcpy(p1, p2, 16*sizeof(YUV));
YUV               275 lib/h.263/swfvideo.c static void yuv2rgb(RGBA*dest, YUV*src, int linex, int width, int height)
YUV               290 lib/h.263/swfvideo.c static void copy_block_pic(VIDEOSTREAM*s, YUV*dest, block_t*b, int bx, int by)
YUV               292 lib/h.263/swfvideo.c     YUV*p1 = &dest[(by*16)*s->linex+bx*16];
YUV               293 lib/h.263/swfvideo.c     YUV*p2 = &dest[(by*16+8)*s->linex+bx*16];
YUV               316 lib/h.263/swfvideo.c static int compare_pic_pic(VIDEOSTREAM*s, YUV*pp1, YUV*pp2, int bx, int by)
YUV               319 lib/h.263/swfvideo.c     YUV*p1 = &pp1[by*linex*16+bx*16];
YUV               320 lib/h.263/swfvideo.c     YUV*p2 = &pp2[by*linex*16+bx*16];
YUV               325 lib/h.263/swfvideo.c 	    YUV*m = &p1[x];
YUV               326 lib/h.263/swfvideo.c 	    YUV*n = &p2[x];
YUV               339 lib/h.263/swfvideo.c static int compare_pic_block(VIDEOSTREAM*s, block_t* b, YUV*pic, int bx, int by)
YUV               342 lib/h.263/swfvideo.c     YUV*y1 = &pic[(by*2)*linex*8+bx*16];
YUV               343 lib/h.263/swfvideo.c     YUV*y2 = &pic[(by*2)*linex*8+bx*16+8];
YUV               344 lib/h.263/swfvideo.c     YUV*y3 = &pic[(by*2+1)*linex*8+bx*16];
YUV               345 lib/h.263/swfvideo.c     YUV*y4 = &pic[(by*2+1)*linex*8+bx*16+8];
YUV               346 lib/h.263/swfvideo.c     YUV*uv1 = y1;
YUV               347 lib/h.263/swfvideo.c     YUV*uv2 = &y1[linex];
YUV              1226 lib/h.263/swfvideo.c     memset(s->current, 0, s->linex*s->height*sizeof(YUV));
YUV              1238 lib/h.263/swfvideo.c     memcpy(s->oldpic, s->current, s->width*s->height*sizeof(YUV));
YUV              1270 lib/h.263/swfvideo.c     memcpy(s->oldpic, s->current, s->width*s->height*sizeof(YUV));
YUV              1284 lib/h.263/swfvideo.c     memset(s->current, 0, s->linex*s->height*sizeof(YUV));
YUV              1298 lib/h.263/swfvideo.c     memcpy(s->oldpic, s->current, s->width*s->height*sizeof(YUV));
YUV              1311 lib/h.263/swfvideo.c     YUV pic[16*16];
YUV              1007 lib/rfxswf.h       YUV*oldpic;
YUV              1008 lib/rfxswf.h       YUV*current;