diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-01-25 19:00:07 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-01-25 19:00:07 +0100 |
commit | 961353d842bc33ac81cf3cf3e66dc37db613fac5 (patch) | |
tree | e1402463a47a7ff6c46eef19bd49ee1830529776 /libavfilter/vf_mcdeint.c | |
parent | ec28cdedde8164139197f4ee178061007ec3e387 (diff) | |
download | ffmpeg-961353d842bc33ac81cf3cf3e66dc37db613fac5.tar.gz |
avfilter/vf_mcdeint: Set no_bitstream=1
This avoids unneeded writing of the bitstream
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_mcdeint.c')
-rw-r--r-- | libavfilter/vf_mcdeint.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vf_mcdeint.c b/libavfilter/vf_mcdeint.c index 13299158ae..833ce35adc 100644 --- a/libavfilter/vf_mcdeint.c +++ b/libavfilter/vf_mcdeint.c @@ -126,6 +126,7 @@ static int config_props(AVFilterLink *inlink) enc_ctx->me_cmp = enc_ctx->me_sub_cmp = FF_CMP_SAD; enc_ctx->mb_cmp = FF_CMP_SSE; av_dict_set(&opts, "memc_only", "1", 0); + av_dict_set(&opts, "no_bitstream", "1", 0); switch (mcdeint->mode) { case MODE_EXTRA_SLOW: |