diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-04-25 11:21:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-04-25 11:21:30 +0200 |
commit | 16524d1be0c965808a64a4dbac10392fcdd9bcec (patch) | |
tree | ce29573caff146d1fd2df61343f22be04ded98ea /libavcodec | |
parent | 8f899545502c287653223ca27522c4abcd3a2e91 (diff) | |
download | ffmpeg-16524d1be0c965808a64a4dbac10392fcdd9bcec.tar.gz |
ffv1: include solution hint in the slice error message
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/ffv1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 8680e76105..3a957b1761 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -1102,7 +1102,7 @@ static av_cold int encode_init(AVCodecContext *avctx) goto slices_ok; } } - av_log(avctx, AV_LOG_ERROR, "Unsupported number %d of slices requested\n", avctx->slices); + av_log(avctx, AV_LOG_ERROR, "Unsupported number %d of slices requested, please specify a supported number with -slices\n", avctx->slices); return -1; slices_ok: write_extra_header(s); |