codec/decoder/conceal: change flags API style

This commit is contained in:
meh 2015-05-28 18:12:56 +02:00
parent f1590620af
commit 27264e575a
2 changed files with 4 additions and 4 deletions

View File

@ -3,8 +3,8 @@ use ffi::*;
bitflags! { bitflags! {
flags Conceal: c_int { flags Conceal: c_int {
const CONCEAL_GUESS_MVS = FF_EC_GUESS_MVS, const GUESS_MVS = FF_EC_GUESS_MVS,
const CONCEAL_DEBLOCK = FF_EC_DEBLOCK, const DEBLOCK = FF_EC_DEBLOCK,
const CONCEAL_FAVOR_INTER = FF_EC_FAVOR_INTER, const FAVOR_INTER = FF_EC_FAVOR_INTER,
} }
} }

View File

@ -10,7 +10,7 @@ pub use self::subtitle::Subtitle;
pub mod slice; pub mod slice;
pub mod conceal; pub mod conceal;
pub use self::conceal::*; pub use self::conceal::Conceal;
pub mod check; pub mod check;
pub use self::check::Check; pub use self::check::Check;