HomeSort by relevance Sort by last modified time
    Searched refs:mb_w_ (Results 1 - 12 of 12) sorted by null

  /external/webp/src/enc/
iterator.c 33 const size_t top_size = enc->mb_w_ * 16;
35 memset(enc->nz_, 0, enc->mb_w_ * sizeof(*enc->nz_));
45 it->mb_ = enc->mb_info_ + y * enc->mb_w_;
54 VP8IteratorSetCountDown(it, enc->mb_w_ * enc->mb_h_); // default
291 if (x < enc->mb_w_ - 1) { // left
318 if (it->x_ == it->enc_->mb_w_) {
414 if (it->x_ < enc->mb_w_ - 1) {
analysis.c 30 const int w = enc->mb_w_;
213 for (n = 0; n < enc->mb_w_ * enc->mb_h_; ++n) {
380 for (n = 0; n < enc->mb_w_ * enc->mb_h_; ++n) {
433 VP8IteratorSetCountDown(&job->it, (end_row - start_row) * enc->mb_w_);
453 const int total_mb = last_row * enc->mb_w_;
frame.c 116 const int nb_mbs = enc->mb_w_ * enc->mb_h_;
196 for (n = 0; n < enc->mb_w_ * enc->mb_h_; ++n) {
498 uint8_t* const info = &pic->extra_info[it->x_ + it->y_ * enc->mb_w_];
590 int nb_mbs = enc->mb_w_ * enc->mb_h_;
650 enc->mb_w_ * enc->mb_h_ * average_bytes_per_MB / enc->num_parts_;
742 int max_count = (enc->mb_w_ * enc->mb_h_) >> 3;
748 const uint64_t pixel_count = enc->mb_w_ * enc->mb_h_ * 384;
webpenc.c 61 for (i = -1; i < 4 * enc->mb_w_; ++i) {
198 enc->mb_w_ = mb_w;
vp8enci.h 410 int mb_w_, mb_h_; member in struct:VP8Encoder
457 VP8MBInfo* mb_info_; // contextual macroblock infos (mb_w_ + 1)
syntax.c 268 const int mb_size = enc->mb_w_ * enc->mb_h_;
quant.c 350 int i = enc->mb_w_ * enc->mb_h_;
    [all...]
  /external/webp/src/dec/
tree.c 351 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) {
vp8i.h 243 int mb_w_, mb_h_; member in struct:VP8Decoder
267 uint8_t* intra_t_; // top intra modes values: 4 * mb_w_
272 VP8MB* mb_info_; // contextual macroblock info (mb_w_ + 1)
frame.c 436 if (dec->br_mb_x_ > dec->mb_w_) {
437 dec->br_mb_x_ = dec->mb_w_;
536 const int mb_w = dec->mb_w_;
717 for (mb_x = 0; mb_x < dec->mb_w_; ++mb_x) {
767 if (mb_x >= dec->mb_w_ - 1) { // on rightmost border
vp8.c 305 dec->mb_w_ = (pic_hdr->width_ + 15) >> 4;
594 for (; dec->mb_x_ < dec->mb_w_; ++dec->mb_x_) {
idec.c 457 for (; dec->mb_x_ < dec->mb_w_; ++dec->mb_x_) {

Completed in 9828 milliseconds