diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-02-03 01:18:29 +0000 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-02-07 09:09:13 -0800 |
commit | e04912c0b673f4b8be06c5ccf99acf0f6338e659 (patch) | |
tree | e7cfe1a36d2841a16c36bce51d4540f1197ef1c7 /libavcodec/dirac_dwt.h | |
parent | 58ded09bd14e149af113b8373c1c2cd7958dfe54 (diff) | |
download | ffmpeg-e04912c0b673f4b8be06c5ccf99acf0f6338e659.tar.gz |
diracdec: Split DWTPlane struct from Plane
Diffstat (limited to 'libavcodec/dirac_dwt.h')
-rw-r--r-- | libavcodec/dirac_dwt.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavcodec/dirac_dwt.h b/libavcodec/dirac_dwt.h index 1a899b3c3d..63302aed8e 100644 --- a/libavcodec/dirac_dwt.h +++ b/libavcodec/dirac_dwt.h @@ -34,6 +34,15 @@ typedef struct DWTCompose { int y; } DWTCompose; +typedef struct DWTPlane { + int width; + int height; + int stride; + uint8_t *buf; + uint8_t *buf_base; + uint8_t *tmp; +} DWTPlane; + struct DWTContext; // Possible prototypes for vertical_compose functions |