]> git.sesse.net Git - ffmpeg/commitdiff
avfilter/drawutils: Fix ff_fill_rectangle() on big endian
authorMichael Niedermayer <michael@niedermayer.cc>
Wed, 24 Feb 2016 22:11:54 +0000 (23:11 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Wed, 24 Feb 2016 23:07:51 +0000 (00:07 +0100)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
libavfilter/drawutils.c

index 7edaa4ac6c6d481e6beed69a323a11eb526dbbed..876a859e1fc60d0a662da3d5300720ce9a365b00 100644 (file)
@@ -298,6 +298,7 @@ void ff_fill_rectangle(FFDrawContext *draw, FFDrawColor *color,
 {
     int plane, x, y, wp, hp;
     uint8_t *p0, *p;
+    FFDrawColor color_tmp = *color;
 
     for (plane = 0; plane < draw->nb_planes; plane++) {
         p0 = pointer_at(draw, dst, dst_linesize, plane, dst_x, dst_y);
@@ -306,9 +307,15 @@ void ff_fill_rectangle(FFDrawContext *draw, FFDrawColor *color,
         if (!hp)
             return;
         p = p0;
+
+        if (HAVE_BIGENDIAN && draw->desc->comp[0].depth > 8) {
+            for (x = 0; 2*x < draw->pixelstep[plane]; x++)
+                color_tmp.comp[plane].u16[x] = av_bswap16(color_tmp.comp[plane].u16[x]);
+        }
+
         /* copy first line from color */
         for (x = 0; x < wp; x++) {
-            memcpy(p, color->comp[plane].u8, draw->pixelstep[plane]);
+            memcpy(p, color_tmp.comp[plane].u8, draw->pixelstep[plane]);
             p += draw->pixelstep[plane];
         }
         wp *= draw->pixelstep[plane];