diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-03-22 15:04:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-03-22 15:04:11 +0000 |
commit | 5d7bc46c2d15cb7ab9a717feac418a92562c14f5 (patch) | |
tree | 82a39993838f3e0c690177760a4c3e64c12c3a78 | |
parent | d6461900c9d664c2f4c856846b3ec38701e39459 (diff) | |
download | ffmpeg-5d7bc46c2d15cb7ab9a717feac418a92562c14f5.tar.gz |
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.
Originally committed as revision 22633 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ffv1.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index c2b68e4adc..2efe7e192e 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -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; |