diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-27 16:50:18 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-05-05 12:34:25 +0200 |
commit | 60da5b87ad5823707254aa2930fa5950e45facc2 (patch) | |
tree | 322ee1049acd06b84b03f3ae1a74ded700295888 | |
parent | 6c69251b038944b4deee4e5fa7dd32b78492ae60 (diff) | |
download | ffmpeg-60da5b87ad5823707254aa2930fa5950e45facc2.tar.gz |
avcodec/bmpenc: Use memcpy when data has desired endianness
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/bmpenc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/bmpenc.c b/libavcodec/bmpenc.c index 557e0be285..40c2f056fa 100644 --- a/libavcodec/bmpenc.c +++ b/libavcodec/bmpenc.c @@ -20,6 +20,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" + #include "libavutil/imgutils.h" #include "libavutil/avassert.h" #include "avcodec.h" @@ -139,7 +141,7 @@ static int bmp_encode_frame(AVCodecContext *avctx, AVPacket *pkt, ptr = p->data[0] + (avctx->height - 1) * p->linesize[0]; buf = pkt->data + hsize; for(i = 0; i < avctx->height; i++) { - if (bit_count == 16) { + if (HAVE_BIGENDIAN && bit_count == 16) { const uint16_t *src = (const uint16_t *) ptr; for(n = 0; n < avctx->width; n++) AV_WL16(buf + 2 * n, src[n]); |