summaryrefslogtreecommitdiff
path: root/libavcodec/snow.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-19 22:37:06 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-03-19 22:37:06 +0100
commit87c1783c77f4e688edceec165eaef287bd127622 (patch)
tree96c82b2726740057dcaa76743bb47964872a161d /libavcodec/snow.h
parentfc8ed1117e1cfa5efff6a1a3263b52ec3e92c98c (diff)
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.h1
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 */