Commit 29a599a5 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

windowscodecs: Replace a call to a deprecated libpng function.

It was removed in libpng 1.4.0.
parent 18799129
...@@ -58,8 +58,8 @@ MAKE_FUNCPTR(png_get_pHYs); ...@@ -58,8 +58,8 @@ MAKE_FUNCPTR(png_get_pHYs);
MAKE_FUNCPTR(png_get_PLTE); MAKE_FUNCPTR(png_get_PLTE);
MAKE_FUNCPTR(png_get_tRNS); MAKE_FUNCPTR(png_get_tRNS);
MAKE_FUNCPTR(png_set_bgr); MAKE_FUNCPTR(png_set_bgr);
MAKE_FUNCPTR(png_set_expand_gray_1_2_4_to_8);
MAKE_FUNCPTR(png_set_filler); MAKE_FUNCPTR(png_set_filler);
MAKE_FUNCPTR(png_set_gray_1_2_4_to_8);
MAKE_FUNCPTR(png_set_gray_to_rgb); MAKE_FUNCPTR(png_set_gray_to_rgb);
MAKE_FUNCPTR(png_set_IHDR); MAKE_FUNCPTR(png_set_IHDR);
MAKE_FUNCPTR(png_set_pHYs); MAKE_FUNCPTR(png_set_pHYs);
...@@ -99,8 +99,8 @@ static void *load_libpng(void) ...@@ -99,8 +99,8 @@ static void *load_libpng(void)
LOAD_FUNCPTR(png_get_PLTE); LOAD_FUNCPTR(png_get_PLTE);
LOAD_FUNCPTR(png_get_tRNS); LOAD_FUNCPTR(png_get_tRNS);
LOAD_FUNCPTR(png_set_bgr); LOAD_FUNCPTR(png_set_bgr);
LOAD_FUNCPTR(png_set_expand_gray_1_2_4_to_8);
LOAD_FUNCPTR(png_set_filler); LOAD_FUNCPTR(png_set_filler);
LOAD_FUNCPTR(png_set_gray_1_2_4_to_8);
LOAD_FUNCPTR(png_set_gray_to_rgb); LOAD_FUNCPTR(png_set_gray_to_rgb);
LOAD_FUNCPTR(png_set_IHDR); LOAD_FUNCPTR(png_set_IHDR);
LOAD_FUNCPTR(png_set_pHYs); LOAD_FUNCPTR(png_set_pHYs);
...@@ -282,7 +282,7 @@ static HRESULT WINAPI PngDecoder_Initialize(IWICBitmapDecoder *iface, IStream *p ...@@ -282,7 +282,7 @@ static HRESULT WINAPI PngDecoder_Initialize(IWICBitmapDecoder *iface, IStream *p
{ {
if (bit_depth < 8) if (bit_depth < 8)
{ {
ppng_set_gray_1_2_4_to_8(This->png_ptr); ppng_set_expand_gray_1_2_4_to_8(This->png_ptr);
bit_depth = 8; bit_depth = 8;
} }
ppng_set_gray_to_rgb(This->png_ptr); ppng_set_gray_to_rgb(This->png_ptr);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment