Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): update itertools requirement from 0.12.1 to 0.13.0 #54

Merged
merged 2 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deblock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ license = "MIT OR Apache-2.0"

[dependencies]
wide = "0.7.11"
itertools = "0.12.1"
itertools = "0.13.0"
2 changes: 2 additions & 0 deletions h263/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,10 +369,12 @@ pub struct CustomPictureClock {
/// Whether or not the divisor is multiplied by 1000 or 1001.
///
/// `true` indicates 1001, whilst `false` indicates 1000.
#[allow(dead_code)]
pub times_1001: bool,

/// The divisor, itself stored divided by a constant factor (see
/// `times_1001`.)
#[allow(dead_code)]
pub divisor: u8,
}

Expand Down