Skip to content

Commit

Permalink
Add support for long-time references
Browse files Browse the repository at this point in the history
  • Loading branch information
jerzywilczek committed Oct 16, 2024
1 parent d189e80 commit 834e9e8
Show file tree
Hide file tree
Showing 3 changed files with 543 additions and 220 deletions.
14 changes: 7 additions & 7 deletions vk-video/build.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
fn main() {
cfg_aliases::cfg_aliases! {
vulkan: {
any(
windows,
all(
unix,
not(any(target_os = "macos", target_os = "ios", target_os = "emscripten"))
)
vulkan: {
any(
windows,
all(
unix,
not(any(target_os = "macos", target_os = "ios", target_os = "emscripten"))
)
)
},
}
}
2 changes: 2 additions & 0 deletions vk-video/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ pub struct DecodeInformation {
}

#[derive(Debug, Clone)]
#[allow(non_snake_case)]
pub(crate) struct ReferencePictureInfo {
pub(crate) id: ReferenceId,
pub(crate) LongTermPicNum: Option<u64>,
pub(crate) picture_info: PictureInfo,
}

Expand Down
Loading

0 comments on commit 834e9e8

Please sign in to comment.