[FFmpeg-cvslog] avcodec/ffv1enc: mark RGB48 support as non-experimental

2018-02-02 Thread Jérôme Martinez
ffmpeg | branch: master | Jérôme Martinez  | Thu Feb  1 
13:15:54 2018 +0100| [e3d946b3f48fa000e2ba917ecb1bf21e5fe947fb] | committer: 
Michael Niedermayer

avcodec/ffv1enc: mark RGB48 support as non-experimental

Remove the 2nd mark, 1st mark was removed in 58e16a4

Signed-off-by: Michael Niedermayer 

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e3d946b3f48fa000e2ba917ecb1bf21e5fe947fb
---

 libavcodec/ffv1enc.c | 4 
 1 file changed, 4 deletions(-)

diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c
index c0c1558ffe..0778f84c9b 100644
--- a/libavcodec/ffv1enc.c
+++ b/libavcodec/ffv1enc.c
@@ -657,10 +657,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
 s->chroma_planes = 1;
 if (s->bits_per_raw_sample >= 16) {
 s->use32bit = 1;
-if (avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
-av_log(avctx, AV_LOG_ERROR, "16bit RGB is experimental and 
under development, only use it for experiments\n");
-return AVERROR_INVALIDDATA;
-}
 }
 s->version = FFMAX(s->version, 1);
 break;

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog


[FFmpeg-cvslog] avcodec/ffv1enc: mark RGB48 support as non-experimental

2018-01-12 Thread Jérôme Martinez
ffmpeg | branch: master | Jérôme Martinez  | Fri Jan  5 
11:09:01 2018 +0100| [58e16a4f4b70b00e1ae14c8a52aea49000fa34a3] | committer: 
Michael Niedermayer

avcodec/ffv1enc: mark RGB48 support as non-experimental

Resulting bitstream was tested with a conformance checker
using the last draft of FFV1 specifications.

Signed-off-by: Michael Niedermayer 

Also the files are already in the wild, and decoder support is
thus needed. And with decoders widely supporting it, there is no
advantage in not allowing it in the encoder.
The exact bitstream format may change in future versions of the
spec, if improvments are found.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=58e16a4f4b70b00e1ae14c8a52aea49000fa34a3
---

 libavcodec/ffv1enc.c | 4 
 1 file changed, 4 deletions(-)

diff --git a/libavcodec/ffv1enc.c b/libavcodec/ffv1enc.c
index 09df4c0c57..c0c1558ffe 100644
--- a/libavcodec/ffv1enc.c
+++ b/libavcodec/ffv1enc.c
@@ -630,10 +630,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
 s->bits_per_raw_sample = 16;
 s->use32bit = 1;
 s->version = FFMAX(s->version, 1);
-if (avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
-av_log(avctx, AV_LOG_ERROR, "16bit RGB is experimental and under 
development, only use it for experiments\n");
-return AVERROR_INVALIDDATA;
-}
 break;
 case AV_PIX_FMT_0RGB32:
 s->colorspace = 1;

___
ffmpeg-cvslog mailing list
ffmpeg-cvslog@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog