Rename timecode_fixer to fixers

This commit is contained in:
Tangent 128 2018-04-04 20:26:02 -04:00
parent 45e9054f36
commit 2bdbe21a73
3 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ use futures::stream::once;
use futures::stream::repeat;
use futures::stream::Stream;
use lab_ebml::chunk::{Chunk, WebmStream, ChunkingError};
use lab_ebml::timecode_fixer::ChunkStream;
use lab_ebml::fixers::ChunkStream;
use lab_ebml::stream_parser::StreamEbml;
use hyper::{Get, StatusCode};
use hyper::header::ContentType;

View File

@ -2,13 +2,13 @@
extern crate bytes;
extern crate futures;
pub mod chunk;
pub mod ebml;
mod iterator;
pub mod iterator;
pub mod slice;
pub mod stream_parser;
pub mod timecode_fixer;
pub mod chunk;
pub mod fixers;
pub mod webm;
pub use ebml::{EbmlError, FromEbml};