diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-09-09 17:58:18 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-10-06 03:13:28 +0200 |
commit | bd66456866e9325ffddfd5a369b9991cf43b1d54 (patch) | |
tree | cfc30da9901939fc521b332c1f67b0a0fc3e01fb | |
parent | 90ee388b2883502a013dac12899c09303b08806d (diff) | |
download | ffmpeg-bd66456866e9325ffddfd5a369b9991cf43b1d54.tar.gz |
avcodec/ffv1enc: update buffer check for 16bps
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 3728603f1854b5c79d1a64dd3b41b80640ef1e7f)
Conflicts:
libavcodec/ffv1enc.c
(cherry picked from commit c900c6e5c26cd86cf34f9c8d4347cedbd01f3935)
-rw-r--r-- | libavcodec/ffv1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 8fe725f78a..ebf3a57569 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -522,7 +522,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; } |