|
From: John M M. <jo...@us...> - 2002-09-07 07:34:54
|
Update of /cvsroot/squeak/squeak/platforms/Cross/plugins/Mpeg3Plugin/libmpeg/video In directory usw-pr-cvs1:/tmp/cvs-serv4655/squeak/platforms/Cross/plugins/Mpeg3Plugin/libmpeg/video Modified Files: mpeg3video.h Log Message: 1.3 Add clip arrays and mapping arrays and alpha channel data to video stream structure. Index: mpeg3video.h =================================================================== RCS file: /cvsroot/squeak/squeak/platforms/Cross/plugins/Mpeg3Plugin/libmpeg/video/mpeg3video.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** mpeg3video.h 24 Oct 2001 23:12:18 -0000 1.1.1.1 --- mpeg3video.h 7 Sep 2002 07:34:51 -0000 1.2 *************** *** 159,162 **** --- 159,172 ---- int pict_scal; /* picture spatial scalable extension */ int scalable_mode; /* sequence scalable extension */ + int alphaChannelValue; + unsigned char blueScreenMappingR[256]; + unsigned char blueScreenMappingG[256]; + unsigned char blueScreenMappingB[256]; + unsigned char clipArray_Red[1028]; + unsigned char clipArray_Green[1028]; + unsigned char clipArray_Blue[1028]; + unsigned short clipArray16_Red[1028]; + unsigned short clipArray16_Green[1028]; + unsigned short clipArray16_Blue[1028]; } mpeg3video_t; |