windowscodecs: Optimise copy_pixels in case the whole bitmap is copied.
[wine] / dlls / windowscodecs / main.c
1 /*
2  * Copyright 2009 Vincent Povirk for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19
20 #include "config.h"
21
22 #include <stdarg.h>
23
24 #include "windef.h"
25 #include "winbase.h"
26 #include "objbase.h"
27 #include "wincodec.h"
28
29 #include "wincodecs_private.h"
30
31 #include "wine/debug.h"
32
33 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
34
35 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
36 {
37
38     switch (fdwReason)
39     {
40         case DLL_PROCESS_ATTACH:
41             DisableThreadLibraryCalls(hinstDLL);
42             break;
43         case DLL_PROCESS_DETACH:
44             break;
45     }
46
47     return TRUE;
48 }
49
50 HRESULT copy_pixels(UINT bpp, const BYTE *srcbuffer,
51     UINT srcwidth, UINT srcheight, INT srcstride,
52     const WICRect *rc, UINT dststride, UINT dstbuffersize, BYTE *dstbuffer)
53 {
54     UINT bytesperrow;
55     UINT row_offset; /* number of bits into the source rows where the data starts */
56     WICRect rect;
57
58     if (!rc)
59     {
60         rect.X = 0;
61         rect.Y = 0;
62         rect.Width = srcwidth;
63         rect.Height = srcheight;
64         rc = &rect;
65     }
66     else
67     {
68         if (rc->X < 0 || rc->Y < 0 || rc->X+rc->Width > srcwidth || rc->Y+rc->Height > srcheight)
69             return E_INVALIDARG;
70     }
71
72     bytesperrow = ((bpp * rc->Width)+7)/8;
73
74     if (dststride < bytesperrow)
75         return E_INVALIDARG;
76
77     if ((dststride * rc->Height) > dstbuffersize)
78         return E_INVALIDARG;
79
80     /* if the whole bitmap is copied and the buffer format matches then it's a matter of a single memcpy */
81     if (rc->X == 0 && rc->Y == 0 && rc->Width == srcwidth && rc->Height == srcheight && srcstride == dststride)
82     {
83         memcpy(dstbuffer, srcbuffer, srcstride * srcheight);
84         return S_OK;
85     }
86
87     row_offset = rc->X * bpp;
88
89     if (row_offset % 8 == 0)
90     {
91         /* everything lines up on a byte boundary */
92         UINT row;
93         const BYTE *src;
94         BYTE *dst;
95
96         src = srcbuffer + (row_offset / 8) + srcstride * rc->Y;
97         dst = dstbuffer;
98         for (row=0; row < rc->Height; row++)
99         {
100             memcpy(dst, src, bytesperrow);
101             src += srcstride;
102             dst += dststride;
103         }
104         return S_OK;
105     }
106     else
107     {
108         /* we have to do a weird bitwise copy. eww. */
109         FIXME("cannot reliably copy bitmap data if bpp < 8\n");
110         return E_FAIL;
111     }
112 }