forked from FFmpeg/FFmpeg
Increase ffmpeg intermediate conversion buffer size to accomodate PPM/PNM header.
Originally committed as revision 17512 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
001821904e
commit
befb5cac31
1 changed files with 1 additions and 1 deletions
2
ffmpeg.c
2
ffmpeg.c
|
@ -1897,7 +1897,7 @@ static int av_encode(AVFormatContext **output_files,
|
|||
}
|
||||
if(codec->codec_type == CODEC_TYPE_VIDEO){
|
||||
int size= codec->width * codec->height;
|
||||
bit_buffer_size= FFMAX(bit_buffer_size, 4*size);
|
||||
bit_buffer_size= FFMAX(bit_buffer_size, 4*size + 200);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue