pub fn codec_utils_h265_caps_set_level_tier_and_profile(
    caps: &mut CapsRef,
    profile_tier_level: &[u8]
) -> Result<(), BoolError>
Expand description

Sets the level, tier and profile in caps if it can be determined from profile_tier_level. See codec_utils_h265_get_level(), codec_utils_h265_get_tier() and codec_utils_h265_get_profile() for more details on the parameters.

§caps

the gst::Caps to which the level, tier and profile are to be added

§profile_tier_level

Pointer to the profile_tier_level struct

§Returns

true if the level, tier, profile could be set, false otherwise.