On Thu, 14 May 2009 j...@bitminer.ca wrote:
> A simple fix, the png library needs to free memory after every read of a
> png image.
>
> + png_destroy_read_struct(&png_ptr, &info_ptr, &end_info);
>fclose(pngfile);
>
>return 1;
Fix checked in. Interestingly enough the memory _w
A simple fix, the png library needs to free memory after every read of a
png image.
--- lavtools/png2yuv.c.orig Fri May 15 03:23:58 2009
+++ lavtools/png2yuv.c Fri May 15 03:24:44 2009
@@ -407,6 +407,7 @@ int decode_png(const char *pngname, int process, param
return 2;
}
+ png_des