Home
last modified time | relevance | path

Searched refs:plane_type (Results 1 – 25 of 26) sorted by relevance

12

/external/libaom/libaom/av1/decoder/
Ddecodetxb.c119 const PLANE_TYPE plane_type = get_plane_type(plane); in av1_read_coeffs_txb() local
162 const TX_TYPE tx_type = av1_get_tx_type(plane_type, xd, blk_row, blk_col, in av1_read_coeffs_txb()
180 aom_read_symbol(r, ec_ctx->eob_flag_cdf16[plane_type][eob_multi_ctx], in av1_read_coeffs_txb()
186 aom_read_symbol(r, ec_ctx->eob_flag_cdf32[plane_type][eob_multi_ctx], in av1_read_coeffs_txb()
192 aom_read_symbol(r, ec_ctx->eob_flag_cdf64[plane_type][eob_multi_ctx], in av1_read_coeffs_txb()
198 aom_read_symbol(r, ec_ctx->eob_flag_cdf128[plane_type][eob_multi_ctx], in av1_read_coeffs_txb()
204 aom_read_symbol(r, ec_ctx->eob_flag_cdf256[plane_type][eob_multi_ctx], in av1_read_coeffs_txb()
210 aom_read_symbol(r, ec_ctx->eob_flag_cdf512[plane_type][eob_multi_ctx], in av1_read_coeffs_txb()
217 r, ec_ctx->eob_flag_cdf1024[plane_type][eob_multi_ctx], 11, in av1_read_coeffs_txb()
227 r, ec_ctx->eob_extra_cdf[txs_ctx][plane_type][eob_ctx], 2, ACCT_STR); in av1_read_coeffs_txb()
[all …]
Ddecodeframe.c223 PLANE_TYPE plane_type = get_plane_type(plane); in predict_and_reconstruct_intra_block() local
231 const TX_TYPE tx_type = av1_get_tx_type(plane_type, xd, row, col, tx_size, in predict_and_reconstruct_intra_block()
252 PLANE_TYPE plane_type = get_plane_type(plane); in inverse_transform_inter_block() local
256 const TX_TYPE tx_type = av1_get_tx_type(plane_type, xd, blk_row, blk_col, in inverse_transform_inter_block()
/external/libaom/libaom/av1/encoder/
Dencodetxb.c514 const PLANE_TYPE plane_type = get_plane_type(plane); local
515 const TX_TYPE tx_type = av1_get_tx_type(plane_type, xd, blk_row, blk_col,
539 ec_ctx->eob_flag_cdf16[plane_type][eob_multi_ctx], 5);
543 ec_ctx->eob_flag_cdf32[plane_type][eob_multi_ctx], 6);
547 ec_ctx->eob_flag_cdf64[plane_type][eob_multi_ctx], 7);
551 ec_ctx->eob_flag_cdf128[plane_type][eob_multi_ctx], 8);
555 ec_ctx->eob_flag_cdf256[plane_type][eob_multi_ctx], 9);
559 ec_ctx->eob_flag_cdf512[plane_type][eob_multi_ctx], 10);
563 ec_ctx->eob_flag_cdf1024[plane_type][eob_multi_ctx], 11);
573 ec_ctx->eob_extra_cdf[txs_ctx][plane_type][eob_ctx], 2);
[all …]
Drdopt.h80 const PLANE_TYPE plane_type = get_plane_type(plane); in av1_cost_skip_txb() local
82 &x->coeff_costs[txs_ctx][plane_type]; in av1_cost_skip_txb()
Dencodemb.c227 TX_TYPE tx_type = av1_get_tx_type(pd->plane_type, xd, blk_row, blk_col, in encode_block()
255 TX_TYPE tx_type = av1_get_tx_type(pd->plane_type, xd, blk_row, blk_col, in encode_block()
565 PLANE_TYPE plane_type = get_plane_type(plane); in av1_encode_block_intra() local
566 const TX_TYPE tx_type = av1_get_tx_type(plane_type, xd, blk_row, blk_col, in av1_encode_block_intra()
Dbitstream.c812 PLANE_TYPE plane_type = get_plane_type(plane); in av1_write_tx_type() local
813 TX_TYPE tx_type = av1_get_tx_type(plane_type, xd, blk_row, blk_col, tx_size, in av1_write_tx_type()
/external/libvpx/libvpx/vp8/encoder/
Dtokenize.c355 int plane_type; in vp8_tokenize_mb() local
373 plane_type = 3; in vp8_tokenize_mb()
376 plane_type = 0; in vp8_tokenize_mb()
379 tokenize1st_order_b(x, t, plane_type, cpi); in vp8_tokenize_mb()
438 int plane_type; in vp8_stuff_mb() local
440 plane_type = 3; in vp8_stuff_mb()
445 plane_type = 0; in vp8_stuff_mb()
450 plane_type, cpi, x); in vp8_stuff_mb()
/external/webrtc/webrtc/common_video/libyuv/
Dlibyuv_unittest.cc47 PlaneType plane_type = static_cast<PlaneType>(plane_num); in PrintFrame() local
50 ret += PrintBuffer(frame->buffer(plane_type), width, height, in PrintFrame()
51 frame->stride(plane_type)); in PrintFrame()
67 PlaneType plane_type = static_cast<PlaneType>(plane_num); in CreateImage() local
68 uint8_t *data = frame->buffer(plane_type); in CreateImage()
73 data += frame->stride(plane_type); in CreateImage()
Dwebrtc_libyuv.cc113 PlaneType plane_type = static_cast<PlaneType>(planeNum); in PrintVideoFrame() local
114 const uint8_t* plane_buffer = frame.buffer(plane_type); in PrintVideoFrame()
120 plane_buffer += frame.stride(plane_type); in PrintVideoFrame()
/external/libvpx/libvpx/vp9/common/
Dvp9_blockd.h214 static INLINE TX_TYPE get_tx_type(PLANE_TYPE plane_type, in get_tx_type() argument
218 if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(mi)) in get_tx_type()
224 static INLINE TX_TYPE get_tx_type_4x4(PLANE_TYPE plane_type, in get_tx_type_4x4() argument
228 if (plane_type != PLANE_TYPE_Y || xd->lossless || is_inter_block(mi)) in get_tx_type_4x4()
/external/webrtc/webrtc/modules/video_processing/test/
Dvideo_processing_unittest.cc383 webrtc::PlaneType plane_type = static_cast<webrtc::PlaneType>(plane); local
384 int allocated_size1 = frame1.allocated_size(plane_type);
385 int allocated_size2 = frame2.allocated_size(plane_type);
388 const uint8_t* plane_buffer1 = frame1.buffer(plane_type);
389 const uint8_t* plane_buffer2 = frame2.buffer(plane_type);
/external/libaom/libaom/av1/common/
Dblockd.h397 PLANE_TYPE plane_type; member
638 PLANE_TYPE plane_type) { in intra_mode_to_tx_type() argument
655 (plane_type == PLANE_TYPE_Y) ? mbmi->mode : get_uv_mode(mbmi->uv_mode); in intra_mode_to_tx_type()
769 static INLINE TX_TYPE get_default_tx_type(PLANE_TYPE plane_type, in get_default_tx_type() argument
775 if (is_inter_block(mbmi) || plane_type != PLANE_TYPE_Y || in get_default_tx_type()
780 return intra_mode_to_tx_type(mbmi, plane_type); in get_default_tx_type()
847 static INLINE TX_TYPE av1_get_tx_type(PLANE_TYPE plane_type, in av1_get_tx_type() argument
852 const struct macroblockd_plane *const pd = &xd->plane[plane_type]; in av1_get_tx_type()
860 if (plane_type == PLANE_TYPE_Y) { in av1_get_tx_type()
Dblockd.c98 xd->plane[i].plane_type = get_plane_type(i); in av1_setup_block_planes()
Donyxc_int.h764 if (xd->plane[i].plane_type == PLANE_TYPE_Y) { in av1_init_macroblockd()
/external/webrtc/webrtc/modules/video_capture/test/
Dvideo_capture_unittest.cc77 webrtc::PlaneType plane_type = static_cast<webrtc::PlaneType>(plane); in CompareFrames() local
78 int allocated_size1 = frame1.allocated_size(plane_type); in CompareFrames()
79 int allocated_size2 = frame2.allocated_size(plane_type); in CompareFrames()
82 const uint8_t* plane_buffer1 = frame1.buffer(plane_type); in CompareFrames()
83 const uint8_t* plane_buffer2 = frame2.buffer(plane_type); in CompareFrames()
/external/libkmsxx/kms++util/src/
Dresourcemanager.cpp147 if (plane->plane_type() != type) in reserve_plane()
182 if (plane->plane_type() == PlaneType::Cursor) in reserve_generic_plane()
/external/libkmsxx/kms++/inc/kms++/
Dplane.h24 PlaneType plane_type() const;
/external/libkmsxx/py/tests/
Diact.py33 if p.plane_type == pykms.PlaneType.Overlay:
/external/minigbm/
Dhelpers.c523 uint64_t plane_type, use_flag; in drv_query_kms() local
562 plane_type = props->prop_values[j]; in drv_query_kms()
569 switch (plane_type) { in drv_query_kms()
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dsimulcast_unittest.h237 PlaneType plane_type = static_cast<PlaneType>(plane_num); in CreateImage() local
238 uint8_t* data = frame->buffer(plane_type); in CreateImage()
242 memset(frame->buffer(plane_type), 0, frame->allocated_size(plane_type)); in CreateImage()
245 data += frame->stride(plane_type); in CreateImage()
/external/libkmsxx/kms++/src/
Dplane.cpp52 PlaneType Plane::plane_type() const in plane_type() function in kms::Plane
Dcrtc.cpp123 if (p->plane_type() != PlaneType::Primary) in get_primary_plane()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemb.c72 const PLANE_TYPE plane_type = get_plane_type(plane); in vp9_optimize_b() local
77 const scan_order *const so = get_scan(xd, tx_size, plane_type, block); in vp9_optimize_b()
82 const int64_t rdadj = (int64_t)mb->rdmult * plane_rd_mult[ref][plane_type]; in vp9_optimize_b()
99 mb->token_costs[tx_size][plane_type][ref]; in vp9_optimize_b()
112 assert((!plane_type && !plane) || (plane_type && plane)); in vp9_optimize_b()
/external/libkmsxx/py/pykms/
Dpykmsbase.cpp105 .def_property_readonly("plane_type", &Plane::plane_type) in init_pykmsbase()
/external/libkmsxx/utils/
Dkmscapture.cpp364 if (p->plane_type() != PlaneType::Overlay) in main()

12