/external/opencv3/3rdparty/libwebp/enc/ |
vp8enci.h | 74 // The predicted blocks can be accessed using offsets to yuv_p_ and 91 // +----+ Prediction area ('yuv_p_', size = PRED_SIZE) 279 uint8_t* yuv_p_; // '' member in struct:__anon21906 441 uint8_t* yuv_p_; // scratch buffer for prediction member in struct:VP8Encoder 481 // Form all the four Intra16x16 predictions in the yuv_p_ cache 483 // Form all the four Chroma8x8 predictions in the yuv_p_ cache 485 // Form all the ten Intra4x4 predictions in the yuv_p_ cache
|
quant.c | 373 VP8EncPredLuma16(it->yuv_p_, left, top); 380 VP8EncPredChroma8(it->yuv_p_, left, top); 384 VP8EncPredLuma4(it->yuv_p_, it->i4_top_); 652 const uint8_t* const ref = it->yuv_p_ + VP8I16ModeOffsets[mode]; 699 const uint8_t* const ref = it->yuv_p_ + VP8I4ModeOffsets[mode]; 720 const uint8_t* const ref = it->yuv_p_ + VP8UVModeOffsets[mode]; 845 uint8_t* tmp_dst = it->yuv_p_ + I4TMP; // scratch buffer. [all...] |
analysis.c | 250 it->yuv_p_ + VP8I16ModeOffsets[mode], 284 VP8CollectHistogram(src, it->yuv_p_ + VP8I4ModeOffsets[mode], 318 it->yuv_p_ + VP8UVModeOffsets[mode],
|
iterator.c | 68 it->yuv_p_ = enc->yuv_p_;
|
webpenc.c | 242 enc->yuv_p_ = (uint8_t*)mem;
|
/external/webp/src/enc/ |
vp8enci.h | 55 // The predicted blocks can be accessed using offsets to yuv_p_ and 66 // * Prediction area ('yuv_p_', size = PRED_SIZE_ENC) 227 uint8_t* yuv_p_; // scratch buffer for prediction member in struct:__anon27466 440 // Form all the four Intra16x16 predictions in the yuv_p_ cache 442 // Form all the four Chroma8x8 predictions in the yuv_p_ cache 444 // Form all the ten Intra4x4 predictions in the yuv_p_ cache
|
quant.c | 454 VP8EncPredLuma16(it->yuv_p_, left, top); 460 VP8EncPredChroma8(it->yuv_p_, left, top); 464 VP8EncPredLuma4(it->yuv_p_, it->i4_top_); 742 const uint8_t* const ref = it->yuv_p_ + VP8I16ModeOffsets[mode]; 795 const uint8_t* const ref = it->yuv_p_ + VP8I4ModeOffsets[mode]; 816 const uint8_t* const ref = it->yuv_p_ + VP8UVModeOffsets[mode]; [all...] |
analysis.c | 253 it->yuv_p_ + VP8I16ModeOffsets[mode], 286 VP8CollectHistogram(src, it->yuv_p_ + VP8I4ModeOffsets[mode], 320 it->yuv_p_ + VP8UVModeOffsets[mode],
|
iterator.c | 76 it->yuv_p_ = it->yuv_out2_ + YUV_SIZE_ENC;
|