From 0b8a71643de0f6c5f76a292828cbcbeee0b4f7f7 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Tue, 28 Feb 2012 16:31:00 -0600 Subject: [PATCH] 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 f7ac48a4ae2..2289a9d0437 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,