summaryrefslogtreecommitdiff
path: root/libavcodec/ffv1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-04-26 04:35:30 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-04-26 04:35:30 +0200
commita4b58fd9e805c34a1583873578f77fbcfe96c467 (patch)
tree7bc14585e6d7a69221fc569849f5d77a1dae0ace /libavcodec/ffv1.c
parentda9587952a855db0e03f90f1f0d86f60318acc24 (diff)
ffv1: add examples of supported slices counts
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r--libavcodec/ffv1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index 6d036685b9..540dfdb51f 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -1100,7 +1100,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
goto slices_ok;
}
}
- av_log(avctx, AV_LOG_ERROR, "Unsupported number %d of slices requested, please specify a supported number with -slices\n", avctx->slices);
+ av_log(avctx, AV_LOG_ERROR, "Unsupported number %d of slices requested, please specify a supported number with -slices (ex:4,6,9,12,16, ...)\n", avctx->slices);
return -1;
slices_ok:
write_extra_header(s);