diff options
author | Mike Melanson <mike@multimedia.cx> | 2003-02-02 06:07:20 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2003-02-02 06:07:20 +0000 |
commit | 452ee5f29185608bda21270dfc471f199f386524 (patch) | |
tree | 6aefd77ad7c95073a0138e4cfebc92a9538a970c /src/xine-utils/xineutils.h | |
parent | 260ae0d2726f8a89f49f45ecd1fe819035b2090c (diff) | |
download | xine-lib-452ee5f29185608bda21270dfc471f199f386524.tar.gz xine-lib-452ee5f29185608bda21270dfc471f199f386524.tar.bz2 |
added YUV411P -> YV12 converter
CVS patchset: 4083
CVS date: 2003/02/02 06:07:20
Diffstat (limited to 'src/xine-utils/xineutils.h')
-rw-r--r-- | src/xine-utils/xineutils.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h index a82f92c59..0656a5f1f 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.32 2002/12/31 19:30:53 esnel Exp $ + * $Id: xineutils.h,v 1.33 2003/02/02 06:07:20 tmmm Exp $ * */ #ifndef XINEUTILS_H @@ -732,6 +732,11 @@ extern void (*yuv9_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 (*yuv411_to_yv12) + (unsigned char *y_src, int y_src_pitch, unsigned char *y_dest, int y_dest_pitch, + 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); #define SCALEFACTOR 65536 #define CENTERSAMPLE 128 |