diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-06-01 11:53:03 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-06-01 11:53:03 +0000 |
commit | fc3e9b148db16e396f00e6e0f98618aaed33b77e (patch) | |
tree | 66239d87eb2e53b0458fd796d13e95bbe91db3b1 | |
parent | 6bc79819953ae06fa190a897a62597c8b770d67c (diff) | |
download | ffmpeg-fc3e9b148db16e396f00e6e0f98618aaed33b77e.tar.gz |
remove stupid YV12-huffyuv warning
Originally committed as revision 3185 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/huffyuv.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c index ecc6a5fa21..cf9808824b 100644 --- a/libavcodec/huffyuv.c +++ b/libavcodec/huffyuv.c @@ -475,10 +475,6 @@ static int encode_init(AVCodecContext *avctx) switch(avctx->pix_fmt){ case PIX_FMT_YUV420P: - if(avctx->strict_std_compliance>=0){ - av_log(avctx, AV_LOG_ERROR, "YV12-huffyuv is experimental, there WILL be no compatbility! (use (v)strict=-1)\n"); - return -1; - } s->bitstream_bpp= 12; break; case PIX_FMT_YUV422P: |