summaryrefslogtreecommitdiff
path: root/libavcodec/snow.h
diff options
context:
space:
mode:
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>2012-03-10 19:59:44 +0100
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>2012-03-10 20:17:11 +0100
commit6fe8cb7d70414b5aa97f13fcbb4e73f9a87e706c (patch)
tree68c5c29117cbbe39b10ed7b5ff4c5cd1e645c0fe /libavcodec/snow.h
parentc4e0d845e28f06b73c9048d7159b9eb9f714c314 (diff)
snowenc: add no_bitstream option.
This allows making e.g. MPlayer's -vf uspp filter about 20% faster. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
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 d2ef1ad17e..7990f1f519 100644
--- a/libavcodec/snow.h
+++ b/libavcodec/snow.h
@@ -158,6 +158,7 @@ typedef struct SnowContext{
unsigned me_cache_generation;
slice_buffer sb;
int memc_only;
+ int no_bitstream;
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)