mux.h doc: WebPMuxGetFrame() can return WEBP_MUX_MEMORY_ERROR too.

Change-Id: Icc0305f162d1f5d15ad1b4713ac08e210c85c306
This commit is contained in:
Urvang Joshi 2013-09-17 14:37:12 -07:00
parent 0e6747f88d
commit d9662658d9

View File

@ -253,6 +253,7 @@ WEBP_EXTERN(WebPMuxError) WebPMuxPushFrame(
// WEBP_MUX_INVALID_ARGUMENT - if mux or frame is NULL.
// WEBP_MUX_NOT_FOUND - if there are less than nth frames in the mux object.
// WEBP_MUX_BAD_DATA - if nth frame chunk in mux is invalid.
// WEBP_MUX_MEMORY_ERROR - on memory allocation error.
// WEBP_MUX_OK - on success.
WEBP_EXTERN(WebPMuxError) WebPMuxGetFrame(
const WebPMux* mux, uint32_t nth, WebPMuxFrameInfo* frame);