Skip to content

Commit ed30cd7

Browse files
committed
bump to 0.10.5 and small tweak to Time API
1 parent 18699e5 commit ed30cd7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "video-rs"
33
description = "High-level video toolkit based on ffmpeg."
44
keywords = ["video", "ffmpeg", "encoding", "decoding", "muxing"]
55
categories = ["multimedia", "multimedia::video"]
6-
version = "0.10.4"
6+
version = "0.10.5"
77
authors = ["Oddity.ai Developers <hello@oddity.ai>"]
88
license = "MIT OR Apache-2.0"
99
edition = "2021"

src/packet.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ impl Packet {
7070
}
7171

7272
/// Downcast to native inner type.
73-
pub(crate) fn into_inner(self) -> AvPacket {
73+
pub fn into_inner(self) -> AvPacket {
7474
self.inner
7575
}
7676

7777
/// Downcast to native inner type and time base.
78-
pub(crate) fn into_inner_parts(self) -> (AvPacket, AvRational) {
78+
pub fn into_inner_parts(self) -> (AvPacket, AvRational) {
7979
(self.inner, self.time_base)
8080
}
8181
}

0 commit comments

Comments
 (0)