Browse Source

avfilter/vf_uspp: fix used pix_fmt

Found-by: carl
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
354fda7698
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_uspp.c

+ 1
- 1
libavfilter/vf_uspp.c View File

@@ -342,7 +342,7 @@ static int config_input(AVFilterLink *inlink)
avctx_enc->time_base = (AVRational){1,25}; // meaningless
avctx_enc->gop_size = 300;
avctx_enc->max_b_frames = 0;
avctx_enc->pix_fmt = AV_PIX_FMT_YUV420P;
avctx_enc->pix_fmt = inlink->format;
avctx_enc->flags = CODEC_FLAG_QSCALE | CODEC_FLAG_LOW_DELAY;
avctx_enc->strict_std_compliance = FF_COMPLIANCE_EXPERIMENTAL;
avctx_enc->global_quality = 123;


Loading…
Cancel
Save