[PATCH 1/7] gdiplus: Don't create new instance of IWICBitmapDecoder to encode every frame of animation (try2)

Vincent Povirk madewokherd at gmail.com
Wed Mar 11 20:52:14 CDT 2015


@@ -4288,7 +4341,8 @@ static const struct image_codec codecs[NUM_CODECS] = {
             /* SigMask */            emf_sig_mask,
         },
         NULL,
-        decode_image_olepicture_metafile
+        decode_image_olepicture_metafile,
+        select_frame_wic
     },
     {
         { /* WMF */
@@ -4307,7 +4361,8 @@ static const struct image_codec codecs[NUM_CODECS] = {
             /* SigMask */            wmf_sig_mask,
         },
         NULL,
-        decode_image_olepicture_metafile
+        decode_image_olepicture_metafile,
+        select_frame_wic
     },

You have a later patch changing these to NULL, I'm guessing you meant
to do that in this one?



More information about the wine-devel mailing list