/third_party/ffmpeg/libavcodec/ |
D | vaapi_av1.c | 40 if (seq->seq_profile == 2 && seq->color_config.high_bitdepth) in vaapi_av1_get_bit_depth_idx() 42 else if (seq->seq_profile <= 2) in vaapi_av1_get_bit_depth_idx() 46 "Couldn't get bit depth from profile:%d.\n", seq->seq_profile); in vaapi_av1_get_bit_depth_idx() 75 .profile = seq->seq_profile, in vaapi_av1_start_frame()
|
D | nvdec_av1.c | 32 if (seq->seq_profile == 2 && seq->color_config.high_bitdepth) in get_bit_depth_from_seq() 34 else if (seq->seq_profile <= 2 && seq->color_config.high_bitdepth) in get_bit_depth_from_seq() 82 .profile = seq->seq_profile, in nvdec_av1_start_frame()
|
D | dxva2_av1.c | 48 if (seq->seq_profile == 2 && seq->color_config.high_bitdepth) in get_bit_depth_from_seq() 50 else if (seq->seq_profile <= 2 && seq->color_config.high_bitdepth) in get_bit_depth_from_seq() 78 pp->seq_profile = seq->seq_profile; in fill_picture_parameters()
|
D | cbs_av1_syntax_template.c | 78 AV1RawColorConfig *current, int seq_profile) in FUNC() 85 if (seq_profile == FF_PROFILE_AV1_PROFESSIONAL && in FUNC() 93 if (seq_profile == FF_PROFILE_AV1_HIGH) in FUNC() 129 if (seq_profile == FF_PROFILE_AV1_MAIN) { in FUNC() 132 } else if (seq_profile == FF_PROFILE_AV1_HIGH) { in FUNC() 193 fc(3, seq_profile, FF_PROFILE_AV1_MAIN, in FUNC() 330 current->seq_profile)); in FUNC()
|
D | av1dec.c | 348 if (seq->seq_profile == 2 && seq->color_config.high_bitdepth) in get_pixel_format() 350 else if (seq->seq_profile <= 2) in get_pixel_format() 354 "Unknown AV1 profile %d.\n", seq->seq_profile); in get_pixel_format() 560 avctx->profile = seq->seq_profile; in set_context_with_sequence()
|
D | av1_parser.c | 158 avctx->profile = seq->seq_profile; in av1_parser_parse()
|
D | cbs_av1.h | 74 uint8_t seq_profile; member
|
/third_party/gstreamer/gstplugins_bad/sys/d3d11/ |
D | gstd3d11av1dec.cpp | 98 UCHAR seq_profile; member 642 if (seq_hdr->seq_profile != GST_AV1_PROFILE_0) { in gst_d3d11_av1_dec_new_sequence() 643 GST_WARNING_OBJECT (self, "Unsupported profile %d", seq_hdr->seq_profile); in gst_d3d11_av1_dec_new_sequence() 811 pic_params->seq_profile = seq_hdr->seq_profile; in gst_d3d11_av1_dec_start_picture()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecs/ |
D | gstav1decoder.c | 289 gst_av1_decoder_profile_to_string (seq_header.seq_profile), in gst_av1_decoder_process_sequence() 299 priv->profile = seq_header.seq_profile; in gst_av1_decoder_process_sequence()
|
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
D | vid_dec_av1.h | 177 uint8_t seq_profile; member
|
D | vid_dec_av1.c | 157 seq->seq_profile = av1_f(vlc, 3); in sequence_header_obu() 158 assert(seq->seq_profile < 3); in sequence_header_obu() 290 if (seq->seq_profile == 2 && high_bitdepth) { in sequence_header_obu() 293 } else if (seq->seq_profile <= 2) { in sequence_header_obu() 297 seq->color_config.mono_chrome = (seq->seq_profile == 1) ? 0 : av1_f(vlc, 1); in sequence_header_obu() 323 if (seq->seq_profile == 0) { in sequence_header_obu() 326 } else if (seq->seq_profile == 1 ) { in sequence_header_obu() 349 priv->picture.av1.picture_parameter.profile = seq->seq_profile; in sequence_header_obu()
|
/third_party/gstreamer/gstplugins_bad/sys/va/ |
D | gstvaav1dec.c | 161 switch (seq_hdr->seq_profile) { in _get_profile() 170 seq_hdr->seq_profile); in _get_profile() 592 .profile = seq_header->seq_profile, in gst_va_av1_dec_start_picture()
|
/third_party/gstreamer/gstplugins_bad/tests/check/libs/ |
D | av1parser.c | 149 assert_equals_int (seq_header.seq_profile, GST_AV1_PROFILE_0); in GST_START_TEST() 426 assert_equals_int (seq_header.seq_profile, GST_AV1_PROFILE_0); in GST_START_TEST()
|
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecparsers/ |
D | gstav1parser.c | 911 if (seq_header->seq_profile == GST_AV1_PROFILE_2 in gst_av1_parse_color_config() 918 } else if (seq_header->seq_profile <= GST_AV1_PROFILE_2) { in gst_av1_parse_color_config() 926 if (seq_header->seq_profile == GST_AV1_PROFILE_1) in gst_av1_parse_color_config() 970 if (!(seq_header->seq_profile == GST_AV1_PROFILE_1 || in gst_av1_parse_color_config() 971 (seq_header->seq_profile == GST_AV1_PROFILE_2 in gst_av1_parse_color_config() 982 if (seq_header->seq_profile == GST_AV1_PROFILE_0) { in gst_av1_parse_color_config() 986 } else if (seq_header->seq_profile == GST_AV1_PROFILE_1) { in gst_av1_parse_color_config() 991 g_assert (seq_header->seq_profile == GST_AV1_PROFILE_2); in gst_av1_parse_color_config() 1162 seq_header->seq_profile = AV1_READ_BITS (br, 3); in gst_av1_parser_parse_sequence_header_obu() 1163 if (seq_header->seq_profile > GST_AV1_PROFILE_2) { in gst_av1_parser_parse_sequence_header_obu() [all …]
|
D | gstav1parser.h | 804 GstAV1Profile seq_profile; member
|
/third_party/gstreamer/gstplugins_bad/gst/videoparsers/ |
D | gstav1parse.c | 1226 if (self->profile != seq_header.seq_profile) { in gst_av1_parse_handle_sequence_obu() 1227 self->profile = seq_header.seq_profile; in gst_av1_parse_handle_sequence_obu()
|
/third_party/gstreamer/gstplugins_bad/ |
D | ChangeLog | 1872 descriptive names for each seq_profile.
|