Home
last modified time | relevance | path

Searched refs:VP8_STATUS_OK (Results 1 – 12 of 12) sorted by relevance

/external/webp/src/dec/
Dwebp.c88 return VP8_STATUS_OK; in ParseRIFF()
141 return VP8_STATUS_OK; in ParseVP8X()
204 return VP8_STATUS_OK; // Found. in ParseOptionalChunks()
258 return VP8_STATUS_OK; in ParseVP8Header()
294 if (status != VP8_STATUS_OK) { in ParseHeadersInternal()
303 if (status != VP8_STATUS_OK) { in ParseHeadersInternal()
313 return VP8_STATUS_OK; // Return features from VP8X header. in ParseHeadersInternal()
324 if (status != VP8_STATUS_OK) { in ParseHeadersInternal()
332 if (status != VP8_STATUS_OK) { in ParseHeadersInternal()
369 return VP8_STATUS_OK; // Return features from VP8 header. in ParseHeadersInternal()
[all …]
Didec.c276 } else if (status != VP8_STATUS_OK) { in DecodeWebPHeaders()
305 return VP8_STATUS_OK; in DecodeWebPHeaders()
327 return VP8_STATUS_OK; in DecodeVP8FrameHeader()
381 if (dec->status_ != VP8_STATUS_OK) { in DecodePartition0()
390 if (VP8EnterCritical(dec, io) != VP8_STATUS_OK) { in DecodePartition0()
401 return VP8_STATUS_OK; in DecodePartition0()
449 return VP8_STATUS_OK; in DecodeRemaining()
477 if (dec->status_ != VP8_STATUS_OK) { in DecodeVP8LHeader()
482 return VP8_STATUS_OK; in DecodeVP8LHeader()
502 return VP8_STATUS_OK; in DecodeVP8LData()
[all …]
Dvp8.c33 dec->status_ = VP8_STATUS_OK; in SetOk()
82 if (dec->status_ == VP8_STATUS_OK) { in VP8SetError()
212 return (part_start < buf_end) ? VP8_STATUS_OK : in ParsePartitions()
265 if (status != VP8_STATUS_OK) { in VP8GetHeaders()
373 if (status != VP8_STATUS_OK) { in VP8GetHeaders()
741 ok = (VP8EnterCritical(dec, io) == VP8_STATUS_OK); in VP8Decode()
Dvp8l.c895 dec->status_ = VP8_STATUS_OK; in VP8LNew()
1094 dec->status_ = VP8_STATUS_OK; in VP8LDecodeAlphaImageStream()
1125 dec->status_ = VP8_STATUS_OK; in VP8LDecodeHeader()
1141 assert(dec->status_ != VP8_STATUS_OK); in VP8LDecodeHeader()
1183 assert(dec->status_ != VP8_STATUS_OK); in VP8LDecodeImage()
Dbuffer.c72 return ok ? VP8_STATUS_OK : VP8_STATUS_INVALID_PARAM; in CheckDecBuffer()
Dframe.c340 return VP8_STATUS_OK; in VP8EnterCritical()
/external/skia/src/images/
DSkImageDecoder_libwebp.cpp75 if (status != VP8_STATUS_OK) { in webp_parse_header()
197 if (VP8_STATUS_OK != status && VP8_STATUS_SUSPENDED != status) { in webp_idecode()
201 } while (VP8_STATUS_OK != status); in webp_idecode()
/external/webkit/Source/WebCore/platform/image-decoders/webp/
DWEBPImageDecoder.cpp125 if (status != VP8_STATUS_OK && status != VP8_STATUS_SUSPENDED) in decode()
/external/skia/legacy/src/images/
DSkImageDecoder_libwebp.cpp75 if (status != VP8_STATUS_OK) { in webp_parse_header()
198 if (status == VP8_STATUS_OK || status == VP8_STATUS_SUSPENDED) { in webp_idecode()
/external/webp/
DREADME412 decoding is not finished yet or VP8_STATUS_OK when decoding is done. Any other
443 CHECK(WebPGetFeatures(data, data_size, &config.input) == VP8_STATUS_OK);
469 CHECK(WebPDecode(data, data_size, &config) == VP8_STATUS_OK);
476 if (status == VP8_STATUS_OK || status == VP8_STATUS_SUSPENDED) {
/external/webp/include/webp/
Ddecode.h224 VP8_STATUS_OK = 0, enumerator
/external/webp/src/demux/
Ddemux.c246 } else if (vp8_status != VP8_STATUS_OK) { in StoreFrame()