Windows RT related code cleanup.

Windows RT sample cleanup.
Video I/O code cleanup.
This commit is contained in:
Alexander Smorkalov
2013-06-24 01:10:18 -07:00
parent 91c519467d
commit 347c86d9b5
51 changed files with 8 additions and 5127 deletions

View File

@@ -558,7 +558,7 @@ CVAPI(int) cvGetCaptureDomain( CvCapture* capture);
/* "black box" video file writer structure */
typedef struct CvVideoWriter CvVideoWriter;
#define CV_FOURCC_MACRO(c1, c2, c3, c4) ((c1 & 255) + ((c2 & 255) << 8) + ((c3 & 255) << 16) + ((c4 & 255) << 24))
#define CV_FOURCC_MACRO(c1, c2, c3, c4) (((c1) & 255) + (((c2) & 255) << 8) + (((c3) & 255) << 16) + (((c4) & 255) << 24))
CV_INLINE int CV_FOURCC(char c1, char c2, char c3, char c4)
{