[2/5] windowscodecs: Implement IWICBitmapScaler::GetPixelFormat.

Vincent Povirk madewokherd at gmail.com
Thu Jun 28 11:04:25 CDT 2012


-------------- next part --------------
From 35ee9b93d08817ce8cf066eaae13490bcb48e48d Mon Sep 17 00:00:00 2001
From: Vincent Povirk <vincent at codeweavers.com>
Date: Tue, 28 Feb 2012 16:31:00 -0600
Subject: [PATCH 2/6] windowscodecs: Implement
 IWICBitmapScaler::GetPixelFormat.

---
 dlls/windowscodecs/scaler.c |   11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/dlls/windowscodecs/scaler.c b/dlls/windowscodecs/scaler.c
index f7ac48a..2289a9d 100644
--- a/dlls/windowscodecs/scaler.c
+++ b/dlls/windowscodecs/scaler.c
@@ -120,9 +120,16 @@ static HRESULT WINAPI BitmapScaler_GetSize(IWICBitmapScaler *iface,
 static HRESULT WINAPI BitmapScaler_GetPixelFormat(IWICBitmapScaler *iface,
     WICPixelFormatGUID *pPixelFormat)
 {
-    FIXME("(%p,%p): stub\n", iface, pPixelFormat);
+    BitmapScaler *This = impl_from_IWICBitmapScaler(iface);
+    TRACE("(%p,%p)\n", iface, pPixelFormat);
 
-    return E_NOTIMPL;
+    if (!pPixelFormat)
+        return E_INVALIDARG;
+
+    if (!This->source)
+        return WINCODEC_ERR_WRONGSTATE;
+
+    return IWICBitmapSource_GetPixelFormat(This->source, pPixelFormat);
 }
 
 static HRESULT WINAPI BitmapScaler_GetResolution(IWICBitmapScaler *iface,
-- 
1.7.9.5


More information about the wine-patches mailing list