diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-03-19 22:37:06 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-19 22:37:06 +0100 |
commit | 87c1783c77f4e688edceec165eaef287bd127622 (patch) | |
tree | 96c82b2726740057dcaa76743bb47964872a161d /libavcodec/snow.h | |
parent | fc8ed1117e1cfa5efff6a1a3263b52ec3e92c98c (diff) | |
download | ffmpeg-87c1783c77f4e688edceec165eaef287bd127622.tar.gz |
snowenc: move runs from stack to heap.
Fixes ticket1082
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 7990f1f519..32f116d34d 100644 --- a/libavcodec/snow.h +++ b/libavcodec/snow.h @@ -163,6 +163,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; + int *runs; }SnowContext; /* Tables */ |