diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-09 23:43:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-09 23:52:36 +0200 |
commit | b62297805b5fd7c67ada8d913b3b10ee86dcb569 (patch) | |
tree | 483900160ae856e1b899f32c8ec1056c57e6c2a0 /libavcodec/snow.h | |
parent | cf31e2df08e39082241c8e2e10eaacb115c69a6c (diff) | |
download | ffmpeg-b62297805b5fd7c67ada8d913b3b10ee86dcb569.tar.gz |
avcodec/snowenc: add intra_penalty AVOption
This allows favoring intra or inter blocks by a user specified amount.
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 f5cbae37f2..95e07cd0ae 100644 --- a/libavcodec/snow.h +++ b/libavcodec/snow.h @@ -175,6 +175,7 @@ typedef struct SnowContext{ slice_buffer sb; int memc_only; int no_bitstream; + int intra_penalty; 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) |