comparison libswscale/rgb2rgb.h @ 24772:fff1db0add79

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Thu, 18 Oct 2007 09:30:33 +0000
parents 5159b5f8784e
children e2cd504bcd70
comparison
equal deleted inserted replaced
24771:14e4e1ca7988 24772:fff1db0add79
21 * You should have received a copy of the GNU Lesser General Public 21 * You should have received a copy of the GNU Lesser General Public
22 * License along with FFmpeg; if not, write to the Free Software 22 * License along with FFmpeg; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
24 */ 24 */
25 25
26 #ifndef RGB2RGB_INCLUDED 26 #ifndef FFMPEG_RGB2RGB_H
27 #define RGB2RGB_INCLUDED 27 #define FFMPEG_RGB2RGB_H
28 28
29 #include <inttypes.h> 29 #include <inttypes.h>
30 30
31 /* A full collection of rgb to rgb(bgr) convertors */ 31 /* A full collection of rgb to rgb(bgr) convertors */
32 extern void (*rgb24to32) (const uint8_t *src, uint8_t *dst, long src_size); 32 extern void (*rgb24to32) (const uint8_t *src, uint8_t *dst, long src_size);
141 long srcStride1, long srcStride2, 141 long srcStride1, long srcStride2,
142 long srcStride3, long dstStride); 142 long srcStride3, long dstStride);
143 143
144 void sws_rgb2rgb_init(int flags); 144 void sws_rgb2rgb_init(int flags);
145 145
146 #endif 146 #endif /* RGB2RGB_INCLUDED */