Home
last modified time | relevance | path

Searched refs:profile_high_bit (Results 1 – 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dvp9_raw_reorder_bsf.c80 unsigned int profile_low_bit, profile_high_bit, reserved_zero; in vp9_raw_reorder_frame_parse() local
96 profile_high_bit = get_bits1(&bc); in vp9_raw_reorder_frame_parse()
97 frame->profile = (profile_high_bit << 1) | profile_low_bit; in vp9_raw_reorder_frame_parse()
Dvp9_metadata_bsf.c47 int profile = (header->profile_high_bit << 1) + header->profile_low_bit; in vp9_metadata_update_fragment()
Dcbs_vp9.h86 uint8_t profile_high_bit; member
Dcbs_vp9_syntax_template.c274 f(1, profile_high_bit); in FUNC()
275 vp9->profile = (current->profile_high_bit << 1) + current->profile_low_bit; in FUNC()
/third_party/gstreamer/gstplugins_bad/gst-libs/gst/codecs/
Dgstvp9statefulparser.c999 guint8 profile_low_bit, profile_high_bit, ret, bit; in parse_profile() local
1002 VP9_READ_BIT (profile_high_bit); in parse_profile()
1004 ret = (profile_high_bit << 1) | profile_low_bit; in parse_profile()