[FFmpeg-cvslog] ffmpeg: increase bit_buffer_size, the header size is clearly too small for rgb48 raw based formats

Michael Niedermayer git at videolan.org
Sun Sep 25 16:56:01 CEST 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Sep 25 16:13:07 2011 +0200| [d8289ff9a9a3d0af416e70a1c864e1c6ce095656] | committer: Michael Niedermayer

ffmpeg: increase bit_buffer_size, the header size is clearly too small for rgb48 raw based formats

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 ffmpeg.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ffmpeg.c b/ffmpeg.c
index 6da97d2..fbb0493 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -2218,9 +2218,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 */
+            /* maximum video buffer size is 6-bytes per pixel, plus DPX header size (1664)*/
             int size= codec->width * codec->height;
-            bit_buffer_size= FFMAX(bit_buffer_size, 6*size + 1664);
+            bit_buffer_size= FFMAX(bit_buffer_size, 7*size + 10000);
         }
     }
 



More information about the ffmpeg-cvslog mailing list