Bug 1220754 - Update rust mp4parse import script for v0.1.3. r=kinetik

This commit is contained in:
Ralph Giles 2015-11-02 10:14:00 -08:00
parent 77c2e10676
commit c685139ac4
2 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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