Home
last modified time | relevance | path

Searched refs:bit_depth_luma (Results 1 – 22 of 22) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dh264_ps.c409 sps->bit_depth_luma = get_ue_golomb_31(gb) + 8; in ff_h264_decode_seq_parameter_set()
411 if (sps->bit_depth_chroma != sps->bit_depth_luma) { in ff_h264_decode_seq_parameter_set()
416 if (sps->bit_depth_luma < 8 || sps->bit_depth_luma > 14 || in ff_h264_decode_seq_parameter_set()
419 sps->bit_depth_luma, sps->bit_depth_chroma); in ff_h264_decode_seq_parameter_set()
430 sps->bit_depth_luma = 8; in ff_h264_decode_seq_parameter_set()
620 sps->bit_depth_luma, in ff_h264_decode_seq_parameter_set()
646 const int max_qp = 51 + 6 * (sps->bit_depth_luma - 8); in init_dequant8_coeff_table()
673 const int max_qp = 51 + 6 * (sps->bit_depth_luma - 8); in init_dequant4_coeff_table()
801 if (sps->bit_depth_luma > 14) { in ff_h264_decode_picture_parameter_set()
804 sps->bit_depth_luma); in ff_h264_decode_picture_parameter_set()
[all …]
Dh264_slice.c328 h->ps.sps->bit_depth_luma != h1->ps.sps->bit_depth_luma || in ff_h264_update_thread_context()
802 switch (h->ps.sps->bit_depth_luma) { in get_pixel_format()
895 "Unsupported bit depth %d\n", h->ps.sps->bit_depth_luma); in get_pixel_format()
982 if (sps->bit_depth_luma < 8 || sps->bit_depth_luma > 14 || in h264_slice_header_init()
983 sps->bit_depth_luma == 11 || sps->bit_depth_luma == 13 in h264_slice_header_init()
986 sps->bit_depth_luma); in h264_slice_header_init()
992 h->avctx->bits_per_raw_sample = sps->bit_depth_luma; in h264_slice_header_init()
994 h->pixel_shift = sps->bit_depth_luma > 8; in h264_slice_header_init()
996 h->bit_depth_luma = sps->bit_depth_luma; in h264_slice_header_init()
998 ff_h264dsp_init(&h->h264dsp, sps->bit_depth_luma, in h264_slice_header_init()
[all …]
Dh264_ps.h100 int bit_depth_luma; ///< bit_depth_luma_minus8 + 8 member
Dh264_sei.h172 int bit_depth_luma; member
Dhevc_sei.h121 int bit_depth_luma; member
Dh264_mb_template.c99 const int bit_depth = h->ps.sps->bit_depth_luma; in FUNC()
308 const int bit_depth = h->ps.sps->bit_depth_luma; in FUNC()
Dnvdec_h264.c88 .bit_depth_luma_minus8 = sps->bit_depth_luma - 8, in nvdec_h264_start_frame()
Dvaapi_h264.c243 .bit_depth_luma_minus8 = sps->bit_depth_luma - 8, in vaapi_h264_start_frame()
Dh264_cabac.c1266 const int slice_qp = av_clip(sl->qscale - 6*(h->ps.sps->bit_depth_luma-8), 0, 51); in ff_h264_init_cabac_states()
2037 sps->bit_depth_luma >> 3; in ff_h264_decode_mb_cabac()
2402 const int max_qp = 51 + 6*(sps->bit_depth_luma-8); in ff_h264_decode_mb_cabac()
Dh264_cavlc.c774 h->ps.sps->bit_depth_luma; in ff_h264_decode_mb_cavlc()
1102 const int max_qp = 51 + 6 * (h->ps.sps->bit_depth_luma - 8); in ff_h264_decode_mb_cavlc()
Dh264dec.h451 int bit_depth_luma; ///< luma bit depth from sps to detect changes member
Dh264_sei.c430 h->bit_depth_luma = get_bits(gb, 3) + 8; in decode_film_grain_characteristics()
Dhevc_sei.c433 h->bit_depth_luma = get_bits(gb, 3) + 8; in decode_film_grain_characteristics()
Dh264_loopfilter.c252 int qp_bd_offset = 6 * (h->ps.sps->bit_depth_luma - 8); in h264_filter_mb_fast_internal()
726 int qp_bd_offset = 6 * (h->ps.sps->bit_depth_luma - 8); in ff_h264_filter_mb()
Ddxva2_h264.c122 pp->bit_depth_luma_minus8 = sps->bit_depth_luma - 8; in fill_picture_parameters()
Dh264_parser.c401 switch (sps->bit_depth_luma) { in parse_nal_units()
Dhevcdec.c2927 fgp->codec.h274.bit_depth_luma = fgc->bit_depth_luma; in set_side_data()
2936 fgp->codec.h274.bit_depth_luma = sps->bit_depth; in set_side_data()
/third_party/ffmpeg/libavformat/
Davc.c239 …avio_w8(pb, 0xf8 | (seq.bit_depth_luma - 8)); /* 5 bits reserved (11111) + bit_depth_luma_minus8 */ in ff_isom_write_avcc()
407 sps->bit_depth_luma = get_ue_golomb(&gb) + 8; in ff_avc_decode_sps()
428 sps->bit_depth_luma = 8; in ff_avc_decode_sps()
Davc.h75 uint8_t bit_depth_luma; member
Dmxfenc.c2272 sc->component_depth = sps->bit_depth_luma; in mxf_parse_h264_frame()
/third_party/ffmpeg/libavutil/
Dfilm_grain_params.h142 int bit_depth_luma; member
/third_party/ffmpeg/libavfilter/
Dvf_showinfo.c471 av_log(ctx, AV_LOG_INFO, "bit_depth_luma=%d; ", h274->bit_depth_luma); in dump_sei_film_grain_params_metadata()