avfilter/drawutils: >8 bit support
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
6b706ce85f
commit
38ed528fa5
3 changed files with 239 additions and 43 deletions
|
|
@ -60,9 +60,9 @@ typedef struct FFDrawContext {
|
|||
typedef struct FFDrawColor {
|
||||
uint8_t rgba[4];
|
||||
union {
|
||||
uint32_t u32;
|
||||
uint16_t u16;
|
||||
uint8_t u8[4];
|
||||
uint32_t u32[4];
|
||||
uint16_t u16[8];
|
||||
uint8_t u8[16];
|
||||
} comp[MAX_PLANES];
|
||||
} FFDrawColor;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue