diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-09-09 16:28:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-09 16:28:34 -0500 |
commit | 142578f2e9dddadd530a4a436a74cfa411341cb5 (patch) | |
tree | 90b72ef14fc5337e691df6799a4fbc7a674f4c60 /components/script/lib.rs | |
parent | 739e9ec519cd9e3e31817c02fb8efb782ac19c98 (diff) | |
parent | 94379bf715834fa7a5a71e5cd629ff7c950fee6f (diff) | |
download | servo-142578f2e9dddadd530a4a436a74cfa411341cb5.tar.gz servo-142578f2e9dddadd530a4a436a74cfa411341cb5.zip |
Auto merge of #13094 - GuillaumeGomez:the_comeback, r=KiChjang
Put back video metadata
I updated the `video-metadata-rs` crate: now, no more ffmpeg, just pure rust. The webm format isn't checked yet.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13094)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 910706f4a1a..840e078d93f 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -30,6 +30,7 @@ extern crate angle; extern crate app_units; +extern crate audio_video_metadata; #[allow(unused_extern_crates)] #[macro_use] extern crate bitflags; |