diff bmp.c @ 12129:8b28e74de2c0 libavcodec

Add av_ prefix to bswap macros
author mru
date Sat, 10 Jul 2010 22:12:30 +0000
parents ee740a4e80c5
children
line wrap: on
line diff
--- a/bmp.c	Sat Jul 10 22:09:01 2010 +0000
+++ b/bmp.c	Sat Jul 10 22:12:30 2010 +0000
@@ -290,7 +290,7 @@
                 uint16_t *dst = (uint16_t *) ptr;
 
                 for(j = 0; j < avctx->width; j++)
-                    *dst++ = le2ne_16(*src++);
+                    *dst++ = av_le2ne16(*src++);
 
                 buf += n;
                 ptr += linesize;