diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2004-02-29 17:26:45 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2004-02-29 17:26:45 +0000 |
commit | 21272e4f1caa9d0b3fe81f68929e8bbba125a977 (patch) | |
tree | 34e6b88093d79653a2bdd60a9a127a18cfda2f1d /src/post | |
parent | a657c3df2f453941b115de0ece3ad8d849d58a6b (diff) | |
download | xine-lib-21272e4f1caa9d0b3fe81f68929e8bbba125a977.tar.gz xine-lib-21272e4f1caa9d0b3fe81f68929e8bbba125a977.tar.bz2 |
Various compilation fixes and updates:
- xine compilable without iconv (scream if I something broke)
- update MSVC port, fixes in avi demux
- add iff.h into makefiles
- ffmpeg depends on zlib (build was OK only when freetype was installed)
- commit a patch for goom
CVS patchset: 6192
CVS date: 2004/02/29 17:26:45
Diffstat (limited to 'src/post')
-rw-r--r-- | src/post/goom/filters.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/post/goom/filters.h b/src/post/goom/filters.h index 935d13574..2470fdb18 100644 --- a/src/post/goom/filters.h +++ b/src/post/goom/filters.h @@ -34,8 +34,8 @@ ZoomFilterData; #define YONLY_MODE 8 #define SPEEDWAY_MODE 9 -void pointFilter (guint32 * pix1, Color c, - float t1, float t2, float t3, float t4, guint32 cycle); +void pointFilter (Uint * pix1, Color c, + float t1, float t2, float t3, float t4, Uint cycle); /* filtre de zoom : * le contenu de pix1 est copie dans pix2. @@ -43,10 +43,10 @@ void pointFilter (guint32 * pix1, Color c, * resx,resy : taille des buffers. */ -void zoomFilterFastRGB (guint32 * pix1, - guint32 * pix2, +void zoomFilterFastRGB (Uint * pix1, + Uint * pix2, ZoomFilterData * zf, - guint32 resx, guint32 resy, + Uint resx, Uint resy, int switchIncr, float switchMult); |