codec: refactor decoder and encoder

This commit is contained in:
meh
2015-05-16 17:28:25 +02:00
parent bdc4c427a8
commit 757088f46c
13 changed files with 567 additions and 288 deletions

View File

@ -0,0 +1,10 @@
use libc::c_int;
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,
}
}