Browse Source

ffv1enc: fix 1000l typo

Thanks to ubitux for spotting that
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.0
Michael Niedermayer 12 years ago
parent
commit
9a2153894f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ffv1enc.c

+ 1
- 1
libavcodec/ffv1enc.c View File

@@ -641,7 +641,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->pix_fmt);
int i, j, k, m, ret;

if ((ret = ffv1_common_init(avctx)) < ret)
if ((ret = ffv1_common_init(avctx)) < 0)
return ret;

s->version = 0;


Loading…
Cancel
Save