summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1enc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-11 21:33:03 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-11 21:33:03 +0200
commit9a2153894f2390a6da8d64d0c779ff0fd72d79c2 (patch)
tree7dc2b67081e7b0cc2f27823cf43d55a98fd38221 /libavcodec/ffv1enc.c
parentb8a2331a70b720e83e1be243f7d17941c8952ef2 (diff)
ffv1enc: fix 1000l typo
Thanks to ubitux for spotting that Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1enc.c')
-rw-r--r--libavcodec/ffv1enc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c
index edddcb2d9f..e745c7c0bc 100644
--- a/libavcodec/ffv1enc.c
+++ b/libavcodec/ffv1enc.c
@@ -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;