flavors: Update to nom 6

This commit is contained in:
Sebastian Dröge 2020-11-03 11:44:26 +02:00
parent a97d1da3ab
commit d7044589f4
2 changed files with 3 additions and 3 deletions

View file

@ -12,8 +12,8 @@ glib = { git = "https://github.com/gtk-rs/gtk-rs" }
gstreamer = { 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 = [] }
nom = "5"
flavors = { git = "https://github.com/rust-av/flavors", rev = "61f9e2463b06f590910974302741eaae185b2086" }
nom = "6"
flavors = { git = "https://github.com/rust-av/flavors" }
muldiv = "1.0"
byteorder = "1.0"
lazy_static = "1.0"

View file

@ -705,7 +705,7 @@ impl StreamingState {
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!(),
Ok((_, previous_size)) => {
gst_trace!(CAT, obj: element, "Previous tag size {}", previous_size);