Lines Matching refs:dovi
2795 AVDOVIDecoderConfigurationRecord *dovi;
2803 dovi = av_dovi_alloc(&dovi_size);
2804 if (!dovi)
2807 dovi->dv_version_major = get8(pp, desc_end);
2808 dovi->dv_version_minor = get8(pp, desc_end);
2810 dovi->dv_profile = (buf >> 9) & 0x7f; // 7 bits
2811 dovi->dv_level = (buf >> 3) & 0x3f; // 6 bits
2812 dovi->rpu_present_flag = (buf >> 2) & 0x01; // 1 bit
2813 dovi->el_present_flag = (buf >> 1) & 0x01; // 1 bit
2814 dovi->bl_present_flag = buf & 0x01; // 1 bit
2815 if (!dovi->bl_present_flag && desc_end - *pp >= 2) {
2821 dovi->dv_bl_signal_compatibility_id = (buf >> 4) & 0x0f; // 4 bits
2825 dovi->dv_bl_signal_compatibility_id = 0;
2829 (uint8_t *)dovi, dovi_size);
2831 av_free(dovi);
2837 dovi->dv_version_major, dovi->dv_version_minor,
2838 dovi->dv_profile, dovi->dv_level,
2839 dovi->rpu_present_flag,
2840 dovi->el_present_flag,
2841 dovi->bl_present_flag,
2843 dovi->dv_bl_signal_compatibility_id);