Home
last modified time | relevance | path

Searched refs:constraint_set_flags (Results 1 – 11 of 11) sorted by relevance

/third_party/ffmpeg/libavformat/
Davc.c354 sps->constraint_set_flags |= get_bits1(&gb) << 0; // constraint_set0_flag in ff_avc_decode_sps()
355 sps->constraint_set_flags |= get_bits1(&gb) << 1; // constraint_set1_flag in ff_avc_decode_sps()
356 sps->constraint_set_flags |= get_bits1(&gb) << 2; // constraint_set2_flag in ff_avc_decode_sps()
357 sps->constraint_set_flags |= get_bits1(&gb) << 3; // constraint_set3_flag in ff_avc_decode_sps()
358 sps->constraint_set_flags |= get_bits1(&gb) << 4; // constraint_set4_flag in ff_avc_decode_sps()
359 sps->constraint_set_flags |= get_bits1(&gb) << 5; // constraint_set5_flag in ff_avc_decode_sps()
Davc.h43 uint8_t constraint_set_flags; member
Dmxfenc.c2275 intra_only = (sps->constraint_set_flags >> 3) & 1; in mxf_parse_h264_frame()
/third_party/ffmpeg/libavcodec/
Dh264_ps.c337 int profile_idc, level_idc, constraint_set_flags = 0; in ff_h264_decode_seq_parameter_set() local
356 constraint_set_flags |= get_bits1(gb) << 0; // constraint_set0_flag in ff_h264_decode_seq_parameter_set()
357 constraint_set_flags |= get_bits1(gb) << 1; // constraint_set1_flag in ff_h264_decode_seq_parameter_set()
358 constraint_set_flags |= get_bits1(gb) << 2; // constraint_set2_flag in ff_h264_decode_seq_parameter_set()
359 constraint_set_flags |= get_bits1(gb) << 3; // constraint_set3_flag in ff_h264_decode_seq_parameter_set()
360 constraint_set_flags |= get_bits1(gb) << 4; // constraint_set4_flag in ff_h264_decode_seq_parameter_set()
361 constraint_set_flags |= get_bits1(gb) << 5; // constraint_set5_flag in ff_h264_decode_seq_parameter_set()
374 sps->constraint_set_flags = constraint_set_flags; in ff_h264_decode_seq_parameter_set()
731 profile_idc == 88) && (sps->constraint_set_flags & 7)) { in more_rbsp_data_in_pps()
Dh264_ps.h103 int constraint_set_flags; ///< constraint_set[0-3]_flag member
Dh264_parse.c536 profile |= (sps->constraint_set_flags & 1 << 1) ? FF_PROFILE_H264_CONSTRAINED : 0; in ff_h264_get_profile()
542 profile |= (sps->constraint_set_flags & 1 << 3) ? FF_PROFILE_H264_INTRA : 0; in ff_h264_get_profile()
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Dh264parse.c161 fill_h264_sps (guint8 * sps, guint8 profile_idc, guint constraint_set_flags, in fill_h264_sps() argument
177 sps[1] |= constraint_set_flags; in fill_h264_sps()
320 verify_h264parse_compatible_caps (guint profile_idc, guint constraint_set_flags, in verify_h264parse_compatible_caps() argument
341 fill_h264_sps (&frame_sps[5], profile_idc, constraint_set_flags, 0); in verify_h264parse_compatible_caps()
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dpbutils.c880 guint8 profile_idc, guint constraint_set_flags, guint8 level_idc) in fill_h264_sps() argument
895 sps[1] |= constraint_set_flags; in fill_h264_sps()
/third_party/gstreamer/gstplugins_bad/sys/v4l2codecs/linux/
Dv4l2-controls.h1315 __u8 constraint_set_flags; member
/third_party/gstreamer/gstplugins_good/sys/v4l2/ext/
Dv4l2-controls.h1315 __u8 constraint_set_flags; member
/third_party/gstreamer/gstplugins_bad/sys/v4l2codecs/
Dgstv4l2codech264dec.c456 .constraint_set_flags = (sps->constraint_set0_flag) in gst_v4l2_codec_h264_dec_fill_sequence()