comparison libswscale/swscale_internal.h @ 27695:9cf6c7c5c7cd

Change variable types from int to enum PixelFormat. Fixes icc warning #188: enumerated type mixed with another type
author cehoyos
date Tue, 07 Oct 2008 19:44:39 +0000
parents 203ac2c7f613
children 2b4929069763
comparison
equal deleted inserted replaced
27694:1b7eb875ce11 27695:9cf6c7c5c7cd
69 SwsFunc swScale; 69 SwsFunc swScale;
70 int srcW, srcH, dstH; 70 int srcW, srcH, dstH;
71 int chrSrcW, chrSrcH, chrDstW, chrDstH; 71 int chrSrcW, chrSrcH, chrDstW, chrDstH;
72 int lumXInc, chrXInc; 72 int lumXInc, chrXInc;
73 int lumYInc, chrYInc; 73 int lumYInc, chrYInc;
74 int dstFormat, srcFormat; ///< format 4:2:0 type is always YV12 74 enum PixelFormat dstFormat, srcFormat; ///< format 4:2:0 type is always YV12
75 int origDstFormat, origSrcFormat; ///< format 75 int origDstFormat, origSrcFormat; ///< format
76 int chrSrcHSubSample, chrSrcVSubSample; 76 int chrSrcHSubSample, chrSrcVSubSample;
77 int chrIntHSubSample, chrIntVSubSample; 77 int chrIntHSubSample, chrIntVSubSample;
78 int chrDstHSubSample, chrDstVSubSample; 78 int chrDstHSubSample, chrDstVSubSample;
79 int vChrDrop; 79 int vChrDrop;