Home
last modified time | relevance | path

Searched refs:h265 (Results 1 – 25 of 27) sorted by relevance

12

/third_party/mesa3d/src/gallium/frontends/va/
Dpicture_hevc.c37 context->desc.h265.pps->sps->chroma_format_idc = hevc->pic_fields.bits.chroma_format_idc; in vlVaHandlePictureParameterBufferHEVC()
38 context->desc.h265.pps->sps->separate_colour_plane_flag = in vlVaHandlePictureParameterBufferHEVC()
40 context->desc.h265.pps->sps->pic_width_in_luma_samples = hevc->pic_width_in_luma_samples; in vlVaHandlePictureParameterBufferHEVC()
41 context->desc.h265.pps->sps->pic_height_in_luma_samples = hevc->pic_height_in_luma_samples; in vlVaHandlePictureParameterBufferHEVC()
42 context->desc.h265.pps->sps->bit_depth_luma_minus8 = hevc->bit_depth_luma_minus8; in vlVaHandlePictureParameterBufferHEVC()
43 context->desc.h265.pps->sps->bit_depth_chroma_minus8 = hevc->bit_depth_chroma_minus8; in vlVaHandlePictureParameterBufferHEVC()
44 context->desc.h265.pps->sps->log2_max_pic_order_cnt_lsb_minus4 = in vlVaHandlePictureParameterBufferHEVC()
46 context->desc.h265.pps->sps->sps_max_dec_pic_buffering_minus1 = in vlVaHandlePictureParameterBufferHEVC()
48 context->desc.h265.pps->sps->log2_min_luma_coding_block_size_minus3 = in vlVaHandlePictureParameterBufferHEVC()
50 context->desc.h265.pps->sps->log2_diff_max_min_luma_coding_block_size = in vlVaHandlePictureParameterBufferHEVC()
[all …]
Dpicture_hevc_enc.c43 VAEncPictureParameterBufferHEVC *h265; in vlVaHandleVAEncPictureParameterBufferTypeHEVC() local
47 h265 = buf->data; in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
48 context->desc.h265enc.decoded_curr_pic = h265->decoded_curr_pic.picture_id; in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
51 context->desc.h265enc.reference_frames[i] = h265->reference_frames[i].picture_id; in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
53 context->desc.h265enc.pic_order_cnt = h265->decoded_curr_pic.pic_order_cnt; in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
54 coded_buf = handle_table_get(drv->htab, h265->coded_buf); in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
61 …context->desc.h265enc.pic.log2_parallel_merge_level_minus2 = h265->log2_parallel_merge_level_minus… in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
62 context->desc.h265enc.pic.nal_unit_type = h265->nal_unit_type; in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
63 context->desc.h265enc.rc.quant_i_frames = h265->pic_init_qp; in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
65 switch(h265->pic_fields.bits.coding_type) { in vlVaHandleVAEncPictureParameterBufferTypeHEVC()
[all …]
Dcontext.c308 context->desc.h265.pps = CALLOC_STRUCT(pipe_h265_pps); in vlVaCreateContext()
309 if (!context->desc.h265.pps) { in vlVaCreateContext()
313 context->desc.h265.pps->sps = CALLOC_STRUCT(pipe_h265_sps); in vlVaCreateContext()
314 if (!context->desc.h265.pps->sps) { in vlVaCreateContext()
315 FREE(context->desc.h265.pps); in vlVaCreateContext()
391 FREE(context->desc.h265.pps->sps); in vlVaDestroyContext()
392 FREE(context->desc.h265.pps); in vlVaDestroyContext()
Dva_private.h290 struct pipe_h265_picture_desc h265; member
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/
Dvid_dec_h265.c128 priv->picture.h265.CurrPicOrderCntVal = i; in set_poc()
130 if (priv->codec_data.h265.temporal_id == 0 && in set_poc()
135 priv->codec_data.h265.slice_prev_poc = i; in set_poc()
140 return priv->picture.h265.CurrPicOrderCntVal; in get_poc()
313 priv->codec_data.h265.ref_pic_set_list + idx - (delta_idx_minus1 + 1); in st_ref_pic_set()
400 if (id >= ARRAY_SIZE(priv->codec_data.h265.sps)) in seq_parameter_set_id()
403 return &priv->codec_data.h265.sps[id]; in seq_parameter_set_id()
423 priv->codec_data.h265.level_idc = in seq_parameter_set()
437 priv->codec_data.h265.pic_width_in_luma_samples = in seq_parameter_set()
440 priv->codec_data.h265.pic_height_in_luma_samples = in seq_parameter_set()
[all …]
/third_party/ffmpeg/libavcodec/
Dcbs_h2645.c259 #define FUNC_H265(name) FUNC_NAME1(READWRITE, h265, name)
1353 CodedBitstreamH265Context *h265 = ctx->priv_data; in cbs_h265_flush() local
1355 for (int i = 0; i < FF_ARRAY_ELEMS(h265->vps); i++) { in cbs_h265_flush()
1356 av_buffer_unref(&h265->vps_ref[i]); in cbs_h265_flush()
1357 h265->vps[i] = NULL; in cbs_h265_flush()
1359 for (int i = 0; i < FF_ARRAY_ELEMS(h265->sps); i++) { in cbs_h265_flush()
1360 av_buffer_unref(&h265->sps_ref[i]); in cbs_h265_flush()
1361 h265->sps[i] = NULL; in cbs_h265_flush()
1363 for (int i = 0; i < FF_ARRAY_ELEMS(h265->pps); i++) { in cbs_h265_flush()
1364 av_buffer_unref(&h265->pps_ref[i]); in cbs_h265_flush()
[all …]
Dcbs_h265_syntax_template.c776 CodedBitstreamH265Context *h265 = ctx->priv_data; in FUNC() local
787 h265->active_vps = vps = h265->vps[current->sps_video_parameter_set_id]; in FUNC()
968 CodedBitstreamH265Context *h265 = ctx->priv_data; in FUNC() local
969 const H265RawSPS *sps = h265->active_sps; in FUNC()
1036 CodedBitstreamH265Context *h265 = ctx->priv_data; in FUNC() local
1046 sps = h265->sps[current->pps_seq_parameter_set_id]; in FUNC()
1052 h265->active_sps = sps; in FUNC()
1201 CodedBitstreamH265Context *h265 = ctx->priv_data; in FUNC() local
1202 const H265RawSPS *sps = h265->active_sps; in FUNC()
1301 CodedBitstreamH265Context *h265 = ctx->priv_data; in FUNC() local
[all …]
/third_party/ffmpeg/tests/fate/
Dlibavcodec.mak54 FATE_LIBAVCODEC-$(CONFIG_HEVC_METADATA_BSF) += fate-h265-levels
55 fate-h265-levels: libavcodec/tests/h265_levels$(EXESUF)
56 fate-h265-levels: CMD = run libavcodec/tests/h265_levels$(EXESUF)
57 fate-h265-levels: REF = /dev/null
Dhevc.mak279 …ramecrc -flags unaligned -i $(TARGET_SAMPLES)/hevc/cbf_cr_cb_TUDepth_4_circle.h265 -pix_fmt yuv444p
/third_party/gstreamer/gstplugins_bad/sys/va/
Dgstvabasedec.h50 GstH265Decoder h265; member
89 GstH265DecoderClass h265; member
/third_party/mesa3d/src/gallium/frontends/omx/
Dvid_dec_common.h90 } h265; \
97 struct pipe_h265_picture_desc h265; \
/third_party/mesa3d/src/gallium/frontends/vdpau/
Ddecode.c583 struct pipe_h265_picture_desc h265; in vlVdpDecoderRender() member
667 desc.h265.pps = &pps_h265; in vlVdpDecoderRender()
668 ret = vlVdpDecoderRenderH265(&desc.h265, (VdpPictureInfoHEVC *)picture_info); in vlVdpDecoderRender()
/third_party/mesa3d/src/amd/common/
Dac_uvd_dec.h411 struct ruvd_h265 h265; member
/third_party/mesa3d/src/gallium/drivers/r600/
Dradeon_uvd.h413 struct ruvd_h265 h265; member
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Dvideo_decode_h265_extensions.txt5 [[decode-h265]]
Dvideo_encode_h265_extensions.txt5 [[encode-h265]]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
Dradeon_uvd.c1136 dec->msg->body.decode.codec.h265 = in ruvd_end_frame()
/third_party/ffmpeg/doc/
Dbitstream_filters.texi398 @code{mpegts}) and raw HEVC/H.265 (muxer @code{h265} or
/third_party/gstreamer/gstplugins_bad/
DChangeLog3956 codecparsers: {h264,h265}parser: Fix typo around SEI nalu generator
11607 msdkenc{h264,h265}: add intra-refresh-type property
14330 There can be h265 files with frame-based, not field-based, interlacing.
14967 dashsink: add h265 codec support
14968 Return hvc1 for video/x-h265 mime type in mpd helper function
14976 alignment of obu. This make it the same behaviour as h264/h265
15003 the same way as the h264/h265 parse do when NAL aligned.
15701 msdkenc{h264,h265}: add min-qp and max-qp properties
15713 msdkenc{h264,h265}: add p-pyramid property
15715 property to enable this feature in msdkenc{h264,h265}.
[all …]
/third_party/gstreamer/gst_libav/
DChangeLog4836 avviddec: rename hevc decoder element to h265 for consistency
4837 We use h265 for the parser, typefinder, caps, etc. everywhere.
4975 av: Enable HEVC / h265 support
/third_party/mesa3d/docs/relnotes/
D21.0.0.rst2650 - gallium/vl: merge identical h264/h265 enums
D22.0.0.rst4172 - frontends/va/enc: hardcode h265 encoder ref pic list size
D20.3.0.rst3168 - frontends/omx/h265: Check the pps set before the scaling data
D21.1.0.rst1118 - frontends/omx/h265: search entire dpb list
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkVulkan_c.inl915 // Video h265 Decode related parameters:

12