[FFmpeg-cvslog] avcodec/ffv1enc: update buffer check for 16bps

Michael Niedermayer git at videolan.org
Fri Sep 27 02:57:30 CEST 2013


ffmpeg | branch: release/0.10 | Michael Niedermayer <michaelni at gmx.at> | Mon Sep  9 17:58:18 2013 +0200| [f6057c5a62ea88926020ba8b19399c10d3e87c3e] | committer: Michael Niedermayer

avcodec/ffv1enc: update buffer check for 16bps

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit 3728603f1854b5c79d1a64dd3b41b80640ef1e7f)

Conflicts:

	libavcodec/ffv1enc.c
(cherry picked from commit c900c6e5c26cd86cf34f9c8d4347cedbd01f3935)

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

 libavcodec/ffv1.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c
index 8875c6e..b363c96 100644
--- a/libavcodec/ffv1.c
+++ b/libavcodec/ffv1.c
@@ -451,7 +451,7 @@ static av_always_inline int encode_line(FFV1Context *s, int w,
     int run_mode=0;
 
     if(s->ac){
-        if(c->bytestream_end - c->bytestream < w*20){
+        if(c->bytestream_end - c->bytestream < w*35){
             av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
             return -1;
         }



More information about the ffmpeg-cvslog mailing list