Lines Matching refs:status_
409 const VP8StatusCode status = dec->status_; in DecodePartition0()
419 dec->status_ = WebPAllocateDecBuffer(io->width, io->height, params->options, in DecodePartition0()
421 if (dec->status_ != VP8_STATUS_OK) { in DecodePartition0()
422 return IDecError(idec, dec->status_); in DecodePartition0()
429 dec->status_ = CopyParts0Data(idec); in DecodePartition0()
430 if (dec->status_ != VP8_STATUS_OK) { in DecodePartition0()
431 return IDecError(idec, dec->status_); in DecodePartition0()
436 return IDecError(idec, dec->status_); in DecodePartition0()
444 return IDecError(idec, dec->status_); in DecodePartition0()
518 dec->status_ = VP8_STATUS_SUSPENDED; in DecodeVP8LHeader()
519 return ErrorStatusLossless(idec, dec->status_); in DecodeVP8LHeader()
523 if (dec->status_ == VP8_STATUS_BITSTREAM_ERROR && in DecodeVP8LHeader()
525 dec->status_ = VP8_STATUS_SUSPENDED; in DecodeVP8LHeader()
527 return ErrorStatusLossless(idec, dec->status_); in DecodeVP8LHeader()
530 dec->status_ = WebPAllocateDecBuffer(io->width, io->height, params->options, in DecodeVP8LHeader()
532 if (dec->status_ != VP8_STATUS_OK) { in DecodeVP8LHeader()
533 return IDecError(idec, dec->status_); in DecodeVP8LHeader()
549 return ErrorStatusLossless(idec, dec->status_); in DecodeVP8LData()
551 assert(dec->status_ == VP8_STATUS_OK || dec->status_ == VP8_STATUS_SUSPENDED); in DecodeVP8LData()
552 return (dec->status_ == VP8_STATUS_SUSPENDED) ? dec->status_ in DecodeVP8LData()