• Home
  • Raw
  • Download

Lines Matching refs:WebPMuxImage

222 void MuxImageInit(WebPMuxImage* const wpi) {  in MuxImageInit()
227 WebPMuxImage* MuxImageRelease(WebPMuxImage* const wpi) { in MuxImageRelease()
228 WebPMuxImage* next; in MuxImageRelease()
246 static WebPChunk** GetChunkListFromId(const WebPMuxImage* const wpi, in GetChunkListFromId()
257 int MuxImageCount(const WebPMuxImage* wpi_list, WebPChunkId id) { in MuxImageCount()
259 const WebPMuxImage* current; in MuxImageCount()
277 static int SearchImageToGetOrDelete(WebPMuxImage** wpi_list, uint32_t nth, in SearchImageToGetOrDelete()
278 WebPMuxImage*** const location) { in SearchImageToGetOrDelete()
289 WebPMuxImage* const cur_wpi = *wpi_list; in SearchImageToGetOrDelete()
301 WebPMuxError MuxImagePush(const WebPMuxImage* wpi, WebPMuxImage** wpi_list) { in MuxImagePush()
302 WebPMuxImage* new_wpi; in MuxImagePush()
305 WebPMuxImage* const cur_wpi = *wpi_list; in MuxImagePush()
310 new_wpi = (WebPMuxImage*)WebPSafeMalloc(1ULL, sizeof(*new_wpi)); in MuxImagePush()
326 WebPMuxImage* MuxImageDelete(WebPMuxImage* const wpi) { in MuxImageDelete()
328 WebPMuxImage* const next = MuxImageRelease(wpi); in MuxImageDelete()
333 WebPMuxError MuxImageDeleteNth(WebPMuxImage** wpi_list, uint32_t nth) { in MuxImageDeleteNth()
345 WebPMuxError MuxImageGetNth(const WebPMuxImage** wpi_list, uint32_t nth, in MuxImageGetNth()
346 WebPMuxImage** wpi) { in MuxImageGetNth()
349 if (!SearchImageToGetOrDelete((WebPMuxImage**)wpi_list, nth, in MuxImageGetNth()
350 (WebPMuxImage***)&wpi_list)) { in MuxImageGetNth()
353 *wpi = (WebPMuxImage*)*wpi_list; in MuxImageGetNth()
361 size_t MuxImageDiskSize(const WebPMuxImage* const wpi) { in MuxImageDiskSize()
386 uint8_t* MuxImageEmit(const WebPMuxImage* const wpi, uint8_t* dst) { in MuxImageEmit()
404 int MuxHasAlpha(const WebPMuxImage* images) { in MuxHasAlpha()
505 const WebPMuxImage* images = mux->images_; in MuxValidate()