00001
00002
00003 #ifndef _UTIL_OPENGL_H_
00004 #define _UTIL_OPENGL_H_
00005
00006 #ifdef USING_OPENGL
00007
00008
00009 #include <QSize>
00010
00011 void pack_yv12progressive(const unsigned char *source, const unsigned char *dest,
00012 const int *offsets, const int *pitches,
00013 const QSize &size);
00014
00015 void pack_yv12interlaced(const unsigned char *source, const unsigned char *dest,
00016 const int *offsets, const int *pitches,
00017 const QSize &size);
00018
00019 #endif // USING_OPENGL
00020 #endif // _UTIL_OPENGL_H_