summaryrefslogtreecommitdiff
path: root/libavcodec/snow.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-07-24 20:50:55 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2015-08-30 04:23:30 +0200
commit4bd99f715de3ea54319d54f848d16186dd00b039 (patch)
tree0bb06421cefcecf26e62ab0896e5c4ebf1836af6 /libavcodec/snow.h
parent21bfeec27f933e18e7aac52ec025831353f47430 (diff)
avcodec/snowenc: Support setting the iterative dia size separately
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 a16ca0cd96..a09b6221e4 100644
--- a/libavcodec/snow.h
+++ b/libavcodec/snow.h
@@ -177,6 +177,7 @@ typedef struct SnowContext{
int no_bitstream;
int intra_penalty;
int motion_est;
+ int iterative_dia_size;
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)