diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-07-12 03:10:15 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-07-12 03:10:15 +0000 |
commit | db35ded6b3685806459f15a5c81de2e7addec7b9 (patch) | |
tree | 4baf6b0f8448e08bce5c860b2c0ad79650227b57 /src/xine-utils/xineutils.h | |
parent | be7ab6cfabcad7e7d14ce324b56746cbd820473a (diff) | |
download | xine-lib-db35ded6b3685806459f15a5c81de2e7addec7b9.tar.gz xine-lib-db35ded6b3685806459f15a5c81de2e7addec7b9.tar.bz2 |
add yuy2_to_yv12 conversion
CVS patchset: 5146
CVS date: 2003/07/12 03:10:15
Diffstat (limited to 'src/xine-utils/xineutils.h')
-rw-r--r-- | src/xine-utils/xineutils.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index a53dddca4..dc05f2057 100644 --- a/src/xine-utils/xineutils.h +++ b/src/xine-utils/xineutils.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xineutils.h,v 1.54 2003/06/20 20:57:29 andruil Exp $ + * $Id: xineutils.h,v 1.55 2003/07/12 03:10:15 miguelfreitas Exp $ * */ #ifndef XINEUTILS_H @@ -773,6 +773,12 @@ extern void (*yv12_to_yuy2) unsigned char *v_src, int v_src_pitch, unsigned char *yuy2_map, int yuy2_pitch, int width, int height, int progressive); +extern void (*yuy2_to_yv12) + (unsigned char *yuy2_map, int yuy2_pitch, + unsigned char *y_dst, int y_dst_pitch, + unsigned char *u_dst, int u_dst_pitch, + unsigned char *v_dst, int v_dst_pitch, + int width, int height); #define SCALEFACTOR 65536 #define CENTERSAMPLE 128 |