diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-01-14 00:59:02 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-01-14 00:59:02 +0100 |
commit | 93af38ca93f28d8480acee5f1d8eda88dabd706b (patch) | |
tree | 44e2b843d4e4e7c6e8a0dbb5e584f109e815e779 | |
parent | 7c10d3ca2e44b81f31f6ac91bcddf7c6dda3169e (diff) | |
download | ffmpeg-93af38ca93f28d8480acee5f1d8eda88dabd706b.tar.gz |
Increase maximum encoding video buffer size.
libavutil now supports 64bit RGB formats.
-rw-r--r-- | ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2621,9 +2621,9 @@ static int transcode_init(OutputFile *output_files, int nb_output_files, } } if (codec->codec_type == AVMEDIA_TYPE_VIDEO) { - /* maximum video buffer size is 6-bytes per pixel, plus DPX header size (1664)*/ + /* maximum video buffer size is 8-bytes per pixel, plus DPX header size (1664)*/ int size = codec->width * codec->height; - bit_buffer_size = FFMAX(bit_buffer_size, 7*size + 10000); + bit_buffer_size = FFMAX(bit_buffer_size, 9*size + 10000); } } |