X-Git-Url: https://git.nihav.org/?p=nihav.git;a=blobdiff_plain;f=nihav-registry%2Fsrc%2Fregister.rs;h=78ccb18b9c2fbd36f0e5fce71ab9018bf3e4ded6;hp=1ada1623529ea65d2a4731a7798f3665c3effc3e;hb=8480761d25359f1f88c6d6df020127a7a7ea6c74;hpb=4e7deeda5279e94cb7e676ad1555e5cfa7c3ad3a diff --git a/nihav-registry/src/register.rs b/nihav-registry/src/register.rs index 1ada162..78ccb18 100644 --- a/nihav-registry/src/register.rs +++ b/nihav-registry/src/register.rs @@ -41,6 +41,8 @@ pub const CODEC_CAP_REORDER:u32 = 0x0004; pub const CODEC_CAP_HYBRID:u32 = 0x0008; /// Codec capability flag for codecs with scalability features. pub const CODEC_CAP_SCALABLE:u32 = 0x0010; +/// Codec capability flag for codecs with complex frame reordering. +pub const CODEC_CAP_COMPLEX_REORDER:u32 = 0x0020; /// Codec description structure. #[derive(Clone)]