mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2026-01-06 14:15:29 +01:00
bswap: change ME to NE in macro names
Other parts of FFmpeg use NE (native endian) rather than ME (machine). This makes it consistent. Originally committed as revision 24169 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -290,7 +290,7 @@ static int bmp_decode_frame(AVCodecContext *avctx,
|
||||
uint16_t *dst = (uint16_t *) ptr;
|
||||
|
||||
for(j = 0; j < avctx->width; j++)
|
||||
*dst++ = le2me_16(*src++);
|
||||
*dst++ = le2ne_16(*src++);
|
||||
|
||||
buf += n;
|
||||
ptr += linesize;
|
||||
|
||||
Reference in New Issue
Block a user