Searched refs:dmux (Results 1 – 4 of 4) sorted by relevance
/third_party/skia/third_party/externals/libwebp/src/demux/ |
D | demux.c | 84 ParseStatus (*parse)(WebPDemuxer* const dmux); 85 int (*valid)(const WebPDemuxer* const dmux); 88 static ParseStatus ParseSingleImage(WebPDemuxer* const dmux); 89 static ParseStatus ParseVP8X(WebPDemuxer* const dmux); 90 static int IsValidSimpleFormat(const WebPDemuxer* const dmux); 91 static int IsValidExtendedFormat(const WebPDemuxer* const dmux); 177 static void AddChunk(WebPDemuxer* const dmux, Chunk* const chunk) { in AddChunk() argument 178 *dmux->chunks_tail_ = chunk; in AddChunk() 180 dmux->chunks_tail_ = &chunk->next_; in AddChunk() 185 static int AddFrame(WebPDemuxer* const dmux, Frame* const frame) { in AddFrame() argument [all …]
|
/third_party/skia/third_party/externals/libwebp/examples/ |
D | vwebp.c | 70 WebPDemuxer* dmux; member 88 WebPDemuxDelete(kParams.dmux); in ClearParams() 89 kParams.dmux = NULL; in ClearParams() 194 if (kParams.dmux != NULL) { in decode_callback() 198 if (WebPDemuxGetFrame(kParams.dmux, 1, curr)) { in decode_callback() 250 (int)WebPDemuxGetI(kParams.dmux, WEBP_FF_LOOP_COUNT) + 1; in HandleKey() 562 kParams.dmux = WebPDemux(&kParams.data); in main() 563 if (kParams.dmux == NULL) { in main() 568 kParams.canvas_width = WebPDemuxGetI(kParams.dmux, WEBP_FF_CANVAS_WIDTH); in main() 569 kParams.canvas_height = WebPDemuxGetI(kParams.dmux, WEBP_FF_CANVAS_HEIGHT); in main() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/webp/ |
D | demux.h | 112 WEBP_EXTERN void WebPDemuxDelete(WebPDemuxer* dmux); 138 const WebPDemuxer* dmux, WebPFormatFeature feature); 168 const WebPDemuxer* dmux, int frame_number, WebPIterator* iter); 205 WEBP_EXTERN int WebPDemuxGetChunk(const WebPDemuxer* dmux,
|
/third_party/skia/src/codec/ |
D | SkWebpCodec.h | 23 void WebPDemuxDelete(WebPDemuxer* dmux);
|