comparison libswscale/rgb2rgb.h @ 27467:239a049163eb

Change header inclusion guard names in line with FFmpeg r15120.
author stefano
date Sun, 31 Aug 2008 07:42:11 +0000
parents 65b8334df960
children e05965c550fc
comparison
equal deleted inserted replaced
27466:ea01824701a5 27467:239a049163eb
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 FFMPEG_RGB2RGB_H 26 #ifndef SWSCALE_RGB2RGB_H
27 #define FFMPEG_RGB2RGB_H 27 #define SWSCALE_RGB2RGB_H
28 28
29 #include <inttypes.h> 29 #include <inttypes.h>
30 30
31 /* A full collection of RGB to RGB(BGR) converters */ 31 /* A full collection of RGB to RGB(BGR) converters */
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);
137 long srcStride1, long srcStride2, 137 long srcStride1, long srcStride2,
138 long srcStride3, long dstStride); 138 long srcStride3, long dstStride);
139 139
140 void sws_rgb2rgb_init(int flags); 140 void sws_rgb2rgb_init(int flags);
141 141
142 #endif /* FFMPEG_RGB2RGB_H */ 142 #endif /* SWSCALE_RGB2RGB_H */