From d6746c40043c316858b292e7b0f8af4b29f67777 Mon Sep 17 00:00:00 2001 From: KAMADA Ken'ichi Date: Thu, 23 Jan 2020 23:55:30 +0900 Subject: [PATCH] Change the error message when no brand is recognized. --- src/isobmff.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/isobmff.rs b/src/isobmff.rs index 2332c5c..48327fa 100644 --- a/src/isobmff.rs +++ b/src/isobmff.rs @@ -179,7 +179,7 @@ impl Parser where R: io::BufRead + io::Seek { return Ok(()); } } - Err("Not a HEIF file".into()) + Err("No compatible brand recognized in ISO base media file".into()) } fn parse_meta(&mut self, mut boxp: BoxSplitter) -> Result, Error> {