summaryrefslogtreecommitdiff
path: root/libavcodec/snow.h
diff options
context:
space:
mode:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2016-01-28 15:36:06 +0000
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2016-01-28 15:36:06 +0000
commite8c5d5f42960b3a694fe57cef6cceed08954ea2f (patch)
tree052832f5c43769c8bfd2aa2d222e75e092930563 /libavcodec/snow.h
parent30c1bdb87ce336f2b9957769e30a10d72f93d372 (diff)
downloadffmpeg-e8c5d5f42960b3a694fe57cef6cceed08954ea2f.tar.gz
snow: Move scenechange_threshold to a private option
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
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 f2587fd6ef..c72c121439 100644
--- a/libavcodec/snow.h
+++ b/libavcodec/snow.h
@@ -177,6 +177,7 @@ typedef struct SnowContext{
int intra_penalty;
int motion_est;
int iterative_dia_size;
+ int scenechange_threshold;
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)