/external/webp/src/dec/ |
common.h | 32 H_PRED = B_HE_PRED, TM_PRED = B_TM_PRED,
|
tree.c | 304 VP8GetBit(br, 156) ? (VP8GetBit(br, 128) ? TM_PRED : H_PRED) 346 : VP8GetBit(br, 183) ? TM_PRED : H_PRED;
|
/external/libvpx/libvpx/vp8/common/ |
entropymode.c | 109 -TM_PRED, -B_PRED 117 -H_PRED, -TM_PRED 124 -H_PRED, -TM_PRED
|
blockd.h | 79 TM_PRED, /* Truemotion prediction */ 105 #define VP8_UV_MODES (TM_PRED + 1)
|
findnearmv.h | 152 case TM_PRED: 180 case TM_PRED:
|
reconintra.c | 38 pred[TM_PRED][SIZE_##sz] = vpx_tm_predictor_##sz##x##sz; \
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ |
entropymode.c | 109 -TM_PRED, -B_PRED 117 -H_PRED, -TM_PRED 124 -H_PRED, -TM_PRED
|
blockd.h | 79 TM_PRED, /* Truemotion prediction */ 105 #define VP8_UV_MODES (TM_PRED + 1)
|
findnearmv.h | 149 case TM_PRED: 176 case TM_PRED:
|
reconintra.c | 107 case TM_PRED: 240 case TM_PRED:
|
/external/libvpx/libvpx/vp9/common/ |
vp9_enums.h | 121 #define TM_PRED 9 // True-motion 129 #define INTRA_MODES (TM_PRED + 1)
|
vp9_reconintra.c | 85 INIT_ALL_SIZES(pred[TM_PRED], tm); 101 INIT_ALL_SIZES(pred_high[TM_PRED], highbd_tm);
|
vp9_entropymode.c | 225 -TM_PRED, 4, /* 1 = TM_NODE */
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_speed_features.h | 26 (1 << TM_PRED), 28 INTRA_DC_TM = (1 << DC_PRED) | (1 << TM_PRED), 30 INTRA_DC_TM_H_V = (1 << DC_PRED) | (1 << TM_PRED) | (1 << V_PRED) |
|
vp9_rd.c | 80 vp9_kf_uv_mode_prob[TM_PRED], vp9_intra_mode_tree); 82 fc->uv_mode_prob[TM_PRED], vp9_intra_mode_tree);
|
/external/opencv3/3rdparty/libwebp/enc/ |
tree.c | 298 if (VP8PutBit(bw, (mode == TM_PRED || mode == H_PRED), 156)) { 299 VP8PutBit(bw, mode == TM_PRED, 128); // TM or HE 308 VP8PutBit(bw, uv_mode != H_PRED, 183); // else: TM_PRED
|
vp8enci.h | 50 H_PRED = B_HE_PRED, TM_PRED = B_TM_PRED,
|
/external/webp/src/enc/ |
tree.c | 293 if (VP8PutBit(bw, (mode == TM_PRED || mode == H_PRED), 156)) { 294 VP8PutBit(bw, mode == TM_PRED, 128); // TM or HE 303 VP8PutBit(bw, uv_mode != H_PRED, 183); // else: TM_PRED
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/ |
recon_wrapper_sse2.c | 50 case TM_PRED: fn = tm_func; break; 142 case TM_PRED: fn = tm_func; break;
|
/external/opencv3/3rdparty/libwebp/dec/ |
tree.c | 47 -TM_PRED, -B_PRED 346 VP8GetBit(br, 156) ? (VP8GetBit(br, 128) ? TM_PRED : H_PRED) 387 : VP8GetBit(br, 183) ? TM_PRED : H_PRED;
|
vp8i.h | 52 H_PRED = B_HE_PRED, TM_PRED = B_TM_PRED,
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_blockd.h | 74 TM_PRED, // True-motion 86 #define INTRA_MODES (TM_PRED + 1)
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_speed_features.c | 21 (1 << TM_PRED)) 23 #define INTRA_DC_TM ((1 << TM_PRED) | (1 << DC_PRED))
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
pickinter.c | 359 pred_error[TM_PRED] += diff * diff; 361 pred_error[TM_PRED] += diff * diff; 380 for (i = DC_PRED; i <= TM_PRED; i++) 837 case TM_PRED: [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/ |
intrapred_test.cc | 204 SCOPED_TRACE("TM_PRED"); 206 Predict(TM_PRED);
|