diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2012-07-02 10:39:54 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-07-03 16:31:23 +0300 |
commit | 33895451570742c47404fec52d87a5c71de26b83 (patch) | |
tree | fefe88ccf8c1ac85e9f874d429a43f7e9ea88842 /libavcodec/snow.h | |
parent | fb93e61e2b7baa44ff991bc0ce96291490a0188e (diff) | |
download | ffmpeg-33895451570742c47404fec52d87a5c71de26b83.tar.gz |
snow: remove a VLA used for edge emulation
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/snow.h')
-rw-r--r-- | libavcodec/snow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/snow.h b/libavcodec/snow.h index aa27a50fd1..abf330962c 100644 --- a/libavcodec/snow.h +++ b/libavcodec/snow.h @@ -165,6 +165,7 @@ typedef struct SnowContext{ MpegEncContext m; // needed for motion estimation, should not be used for anything else, the idea is to eventually make the motion estimation independent of MpegEncContext, so this will be removed then (FIXME/XXX) uint8_t *scratchbuf; + uint8_t *emu_edge_buffer; }SnowContext; /* Tables */ |