diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-31 13:54:27 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2003-05-31 13:54:27 +0000 |
commit | 0306990681bdf214741c6ab2798b47bf8e578c97 (patch) | |
tree | f43a27309afe964044303c90b09cef5335ef9ae7 /src/xine-utils/xineutils.h | |
parent | 3228b320ac0c2c46d695a7ac2913db1ff74eb0ba (diff) | |
download | xine-lib-0306990681bdf214741c6ab2798b47bf8e578c97.tar.gz xine-lib-0306990681bdf214741c6ab2798b47bf8e578c97.tar.bz2 |
provide yv12 to yuy2 conversion
CVS patchset: 4993
CVS date: 2003/05/31 13:54:27
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 23edb48e6..fee9f6e3f 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.50 2003/05/20 13:54:57 mroi Exp $ + * $Id: xineutils.h,v 1.51 2003/05/31 13:54:27 miguelfreitas Exp $ * */ #ifndef XINEUTILS_H @@ -771,6 +771,12 @@ extern void (*yuv411_to_yv12) unsigned char *u_src, int u_src_pitch, unsigned char *u_dest, int u_dest_pitch, unsigned char *v_src, int v_src_pitch, unsigned char *v_dest, int v_dest_pitch, int width, int height); +extern void (*yv12_to_yuy2) + (unsigned char *y_src, int y_src_pitch, + unsigned char *u_src, int u_src_pitch, + unsigned char *v_src, int v_src_pitch, + unsigned char *yuy2_map, int yuy2_pitch, + int width, int height); #define SCALEFACTOR 65536 #define CENTERSAMPLE 128 |