[xiph-cvs] cvs commit: w3d yuv.h
Holger Waechtler
holger at xiph.org
Wed Mar 28 04:55:55 PST 2001
holger 01/03/28 04:55:55
Modified: . yuv.h
Log:
- moved to <stdint.h> (int16_t, int32_t etc.) types instead of int16, int32 ...
Revision Changes Path
1.2 +3 -3 w3d/yuv.h
Index: yuv.h
===================================================================
RCS file: /usr/local/cvsroot/w3d/yuv.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- yuv.h 2001/02/13 00:56:02 1.1
+++ yuv.h 2001/03/28 12:55:54 1.2
@@ -2,10 +2,10 @@
#ifndef __YUV_H
#define __YUF_H
-#include "global_defs.h"
+#include <stdint.h>
-extern void rgb2yuv (uint8 *rgb, int16 *y, int16 *u, int16 *v, uint32 count, uint32 stride);
-extern void yuv2rgb (int16 *y, int16 *u, int16 *v, uint8 *rgb, uint32 count, uint32 stride);
+extern void rgb2yuv (uint8_t *rgb, int16_t *y, int16_t *u, int16_t *v, uint32_t count, uint32_t rgbstride);
+extern void yuv2rgb (int16_t *y, int16_t *u, int16_t *v, uint8_t *rgb, uint32_t count, uint32_t rgbstride);
#endif
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list