diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-02-19 20:50:00 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-03-25 15:54:06 -0400 |
commit | 65f14128c4bcf8fcd9d3ba1e20b7a22057c9cfb0 (patch) | |
tree | 156aa7a6fa1ab11112e24de8ab6cf4c27dc4865c /libavcodec/intrax8.h | |
parent | eaeba6f241e0de0e797be10f8fda967ef8489e64 (diff) | |
download | ffmpeg-65f14128c4bcf8fcd9d3ba1e20b7a22057c9cfb0.tar.gz |
intrax8: Use a constant buffer instead of a ScratchpadContext
The size of the block is fixed (8x8 plus padding).
Diffstat (limited to 'libavcodec/intrax8.h')
-rw-r--r-- | libavcodec/intrax8.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/intrax8.h b/libavcodec/intrax8.h index f087b9f4d8..f30801e38b 100644 --- a/libavcodec/intrax8.h +++ b/libavcodec/intrax8.h @@ -51,6 +51,7 @@ typedef struct IntraX8Context { int divide_quant_dc_luma; int divide_quant_dc_chroma; uint8_t *dest[3]; + uint8_t scratchpad[42]; // size of the block is fixed (8x8 plus padding) // changed per block int edges; |