1 | use ffi::*; |
---|---|
2 | use libc::c_int; |
3 | |
4 | bitflags! { |
5 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] |
6 | pub struct Flags: c_int { |
7 | const SKIP_REPEATED = AV_LOG_SKIP_REPEATED; |
8 | const PRINT_LEVEL = AV_LOG_PRINT_LEVEL; |
9 | } |
10 | } |
11 |
1 | use ffi::*; |
---|---|
2 | use libc::c_int; |
3 | |
4 | bitflags! { |
5 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] |
6 | pub struct Flags: c_int { |
7 | const SKIP_REPEATED = AV_LOG_SKIP_REPEATED; |
8 | const PRINT_LEVEL = AV_LOG_PRINT_LEVEL; |
9 | } |
10 | } |
11 |