split monolithic picture.c into picture_{tools,psnr,rescale}.c

Change-Id: Ia5eb5496e4337e5bac8203872c5b014cad21c4f9
This commit is contained in:
Pascal Massimino
2014-07-12 09:13:33 -07:00
parent c76f07ecc2
commit fbadb48026
9 changed files with 655 additions and 578 deletions

View File

@ -553,6 +553,13 @@ void VP8AdjustFilterStrength(VP8EncIterator* const it);
// step of 'delta', given a sharpness parameter 'sharpness'.
int VP8FilterStrengthFromDelta(int sharpness, int delta);
// misc utils for picture_*.c:
// Grab the 'specs' (writer, *opaque, width, height...) from 'src' and copy them
// into 'dst'. Mark 'dst' as not owning any memory.
void WebPPictureGrabSpecs(const WebPPicture* const src,
WebPPicture* const dst);
//------------------------------------------------------------------------------
#ifdef __cplusplus