format: rename open* function to open_input*

This commit is contained in:
lummax
2015-08-23 21:58:10 +02:00
parent b5c7d27f96
commit 9b612fc90f
2 changed files with 5 additions and 5 deletions

View File

@ -75,7 +75,7 @@ fn main() {
if let Some(file) = env::args().nth(1) {
let path = Path::new(&file);
match ffmpeg::format::open(&path) {
match ffmpeg::format::open_input(&path) {
Ok(context) => print_metadata(&context),
Err(error) => println!("error: {}", error),
}