Commit ea306df6 authored by michael's avatar michael

Throw out last experimental warning that was printed for colorspaces with more than

8 bits per component. This does no good except scaring users away.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22633 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1ba9ece8
......@@ -669,11 +669,6 @@ static av_cold int encode_init(AVCodecContext *avctx)
case PIX_FMT_YUV444P16:
case PIX_FMT_YUV422P16:
case PIX_FMT_YUV420P16:
if(avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL){
av_log(avctx, AV_LOG_ERROR, "More than 8 bit per component is still experimental and no gurantee is yet made for future compatibility\n"
"Use vstrict=-2 / -strict -2 to use it anyway.\n");
return -1;
}
if(avctx->bits_per_raw_sample <=8){
av_log(avctx, AV_LOG_ERROR, "bits_per_raw_sample invalid\n");
return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment