Increase ParseScript cache from 30 to 90 seconds
[xy_vsfilter.git] / src / dsutil / vd_asm.h
blobf30ada9f9835c307ffa8b9cb1ac69903dafd081e
1 // VirtualDub - Video processing and capture application
2 // Graphics support library
3 // Copyright (C) 1998-2007 Avery Lee
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 // Notes:
20 // - VDPixmapBlt is from VirtualDub
21 // (- vd.cpp/h should be renamed to something more sensible already :)
23 #pragma once
25 #ifndef _WIN64
26 void yuvtoyuy2row_MMX(BYTE* dst, BYTE* srcy, BYTE* srcu, BYTE* srcv, DWORD width);
27 void yuvtoyuy2row_avg_MMX(BYTE* dst, BYTE* srcy, BYTE* srcu, BYTE* srcv, DWORD width, DWORD pitchuv);
29 void yv12_yuy2_row_sse2();
30 void yv12_yuy2_row_sse2_linear();
31 void yv12_yuy2_row_sse2_linear_interlaced();
32 void yv12_yuy2_sse2(const BYTE *Y, const BYTE *U, const BYTE *V, int halfstride, unsigned halfwidth, unsigned height, BYTE *YUY2, int d_stride);
33 void yv12_yuy2_sse2_interlaced(const BYTE *Y, const BYTE *U, const BYTE *V, int halfstride, unsigned halfwidth, unsigned height, BYTE *YUY2, int d_stride);
34 #endif