ee438c28954a6b6d4ed342e83e4ca2498dfa771c
[platform/upstream/gst-plugins-good.git] / gst / goom / ppc_drawings.h
1 /*
2  *  ppc_drawings.h
3  *  Goom
4  *
5  *  Created by Guillaume Borios on Sun Dec 28 2003.
6  *  Copyright (c) 2003 iOS. All rights reserved.
7  *
8  */
9
10 /* Generic PowerPC Code */
11 void ppc_brightness_generic(Pixel *src, Pixel *dest, int size, int coeff);
12
13 /* G4 Specific PowerPC Code (Possible use of Altivec and Data Streams) */
14 void ppc_brightness_G4(Pixel *src, Pixel *dest, int size, int coeff);
15
16 /* G5 Specific PowerPC Code (Possible use of Altivec) */
17 void ppc_brightness_G5(Pixel *src, Pixel *dest, int size, int coeff);
18