codec: introduce Parameters

As of ffmpeg 3.1, a new `AVCodecParameters` type and related API introduced.
This commit contains minimal changes to support new API.
This commit is contained in:
Tae-il Lim
2016-11-30 11:21:04 +09:00
committed by meh
parent 00ff69021d
commit 606847cc50
6 changed files with 92 additions and 4 deletions

View File

@ -20,6 +20,9 @@ pub use self::capabilities::Capabilities;
pub mod codec;
pub mod parameters;
pub use self::parameters::Parameters;
pub mod video;
pub use self::video::Video;