[gegl/video-rejuvenation: 12/60] ff-load: be explicit about extent set



commit 6fbaac540b6a378812fba267538e3d366e301156
Author: Øyvind Kolås <pippin gimp org>
Date:   Thu Oct 8 14:44:42 2015 +0200

    ff-load: be explicit about extent set

 operations/external/ff-load.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/operations/external/ff-load.c b/operations/external/ff-load.c
index 1e9f50a..34876bd 100644
--- a/operations/external/ff-load.c
+++ b/operations/external/ff-load.c
@@ -572,7 +572,10 @@ process (GeglOperation       *operation,
               ysrc ++;
               }
           }
-        gegl_buffer_set (output, NULL, 0, NULL, buf, GEGL_AUTO_ROWSTRIDE);
+        {
+          GeglRectangle extent = {0,0,p->width,p->height};
+          gegl_buffer_set (output, &extent, 0, NULL, buf, GEGL_AUTO_ROWSTRIDE);
+        }
         g_free (buf);
       }
   }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]