|
MythTV
0.26-pre
|
00001 // -*- Mode: c++ -*- 00002 00003 #ifndef _UTIL_OPENGL_H_ 00004 #define _UTIL_OPENGL_H_ 00005 00006 #ifdef USING_OPENGL 00007 00008 // Qt headers 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_
1.7.6.1