Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2012-07-02 11:39:54 +0400
committerMartin Storsjö <martin@martin.st>2012-07-03 17:31:23 +0400
commit33895451570742c47404fec52d87a5c71de26b83 (patch)
treefefe88ccf8c1ac85e9f874d429a43f7e9ea88842 /libavcodec/snow.h
parentfb93e61e2b7baa44ff991bc0ce96291490a0188e (diff)
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.h1
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 */