mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1220754 - Update rust mp4parse import script for v0.1.3. r=kinetik
This commit is contained in:
parent
77c2e10676
commit
c685139ac4
@ -1,13 +1,13 @@
|
||||
diff --git a/media/libstagefright/binding/MP4Metadata.rs b/media/libstagefright/binding/MP4Metadata.rs
|
||||
index a9ab567..b746f15 100644
|
||||
index 2f1b873..d2ad827 100644
|
||||
--- a/media/libstagefright/binding/MP4Metadata.rs
|
||||
+++ b/media/libstagefright/binding/MP4Metadata.rs
|
||||
@@ -214,7 +214,7 @@ pub struct Track {
|
||||
track_type: TrackType,
|
||||
}
|
||||
@@ -4,7 +4,7 @@
|
||||
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
||||
|
||||
-extern crate byteorder;
|
||||
+mod byteorder; // 'extern crate' upstream.
|
||||
use byteorder::{BigEndian, ReadBytesExt};
|
||||
use byteorder::ReadBytesExt;
|
||||
use std::error::Error as ErrorTrait; // For Err(e) => e.description().
|
||||
use std::io::{Read, BufRead, Take};
|
||||
use std::io::Cursor;
|
||||
|
@ -2,7 +2,7 @@
|
||||
# Script to update mp4parse-rust sources to latest upstream
|
||||
|
||||
# Default version.
|
||||
VER=v0.1.2
|
||||
VER=v0.1.3
|
||||
|
||||
# Accept version or commit from the command line.
|
||||
if test -n "$1"; then
|
||||
|
Loading…
Reference in New Issue
Block a user