mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 13:31:00 +00:00
flavors: Update to nom 6
This commit is contained in:
parent
a97d1da3ab
commit
d7044589f4
2 changed files with 3 additions and 3 deletions
|
@ -12,8 +12,8 @@ glib = { git = "https://github.com/gtk-rs/gtk-rs" }
|
||||||
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
gstreamer = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
||||||
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
gstreamer-base = { git = "https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" }
|
||||||
num-rational = { version = "0.3", default-features = false, features = [] }
|
num-rational = { version = "0.3", default-features = false, features = [] }
|
||||||
nom = "5"
|
nom = "6"
|
||||||
flavors = { git = "https://github.com/rust-av/flavors", rev = "61f9e2463b06f590910974302741eaae185b2086" }
|
flavors = { git = "https://github.com/rust-av/flavors" }
|
||||||
muldiv = "1.0"
|
muldiv = "1.0"
|
||||||
byteorder = "1.0"
|
byteorder = "1.0"
|
||||||
lazy_static = "1.0"
|
lazy_static = "1.0"
|
||||||
|
|
|
@ -705,7 +705,7 @@ impl StreamingState {
|
||||||
|
|
||||||
let data = adapter.map(15).unwrap();
|
let data = adapter.map(15).unwrap();
|
||||||
|
|
||||||
match be_u32::<(_, nom::error::ErrorKind)>(&data[0..4]) {
|
match be_u32::<_, (_, nom::error::ErrorKind)>(&data[0..4]) {
|
||||||
Err(_) => unreachable!(),
|
Err(_) => unreachable!(),
|
||||||
Ok((_, previous_size)) => {
|
Ok((_, previous_size)) => {
|
||||||
gst_trace!(CAT, obj: element, "Previous tag size {}", previous_size);
|
gst_trace!(CAT, obj: element, "Previous tag size {}", previous_size);
|
||||||
|
|
Loading…
Reference in a new issue