diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2022-10-13 18:21:33 +0200 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2022-10-13 18:21:33 +0200 |
commit | b8e71e0a090fb00f3b3e97279dd9f65590238f5c (patch) | |
tree | fb5e069b4ff9963dc79a8533edb3ae2976876b82 /nihav-duck/src/demuxers/ivf.rs | |
parent | 735b56ab4e0fd4466b6d031009f9c63f7493b512 (diff) | |
download | nihav-b8e71e0a090fb00f3b3e97279dd9f65590238f5c.tar.gz |
rename Duck IVF format for clarity
Diffstat (limited to 'nihav-duck/src/demuxers/ivf.rs')
-rw-r--r-- | nihav-duck/src/demuxers/ivf.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nihav-duck/src/demuxers/ivf.rs b/nihav-duck/src/demuxers/ivf.rs index ba4bb91..09f7257 100644 --- a/nihav-duck/src/demuxers/ivf.rs +++ b/nihav-duck/src/demuxers/ivf.rs @@ -87,7 +87,7 @@ impl DemuxerCreator for IVFDemuxerCreator { fn new_demuxer<'a>(&self, br: &'a mut ByteReader<'a>) -> Box<dyn DemuxCore<'a> + 'a> { Box::new(IVFDemuxer::new(br)) } - fn get_name(&self) -> &'static str { "ivf" } + fn get_name(&self) -> &'static str { "dkivf" } } #[cfg(test)] |