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! {
flags Conceal: c_int {
const CONCEAL_GUESS_MVS = FF_EC_GUESS_MVS,
const CONCEAL_DEBLOCK = FF_EC_DEBLOCK,
const CONCEAL_FAVOR_INTER = FF_EC_FAVOR_INTER,
const GUESS_MVS = FF_EC_GUESS_MVS,
const DEBLOCK = FF_EC_DEBLOCK,
const FAVOR_INTER = FF_EC_FAVOR_INTER,
}
}