Browse Source

ffv1: include solution hint in the slice error message

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
16524d1be0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ffv1.c

+ 1
- 1
libavcodec/ffv1.c View File

@@ -1102,7 +1102,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
goto slices_ok; 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; return -1;
slices_ok: slices_ok:
write_extra_header(s); write_extra_header(s);


Loading…
Cancel
Save