[FFmpeg-cvslog] doc/examples/decoding_encoding: make the buffer bigger.

Michael Niedermayer git at videolan.org
Thu Mar 22 05:42:33 CET 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Mar 22 04:47:03 2012 +0100| [eb9841297a513cdaf405deecb13daff7501e57a6] | committer: Michael Niedermayer

doc/examples/decoding_encoding: make the buffer bigger.

This should be converted to the new API

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

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

 doc/examples/decoding_encoding.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/doc/examples/decoding_encoding.c b/doc/examples/decoding_encoding.c
index 255be70..4b87e2d 100644
--- a/doc/examples/decoding_encoding.c
+++ b/doc/examples/decoding_encoding.c
@@ -255,7 +255,7 @@ static void video_encode_example(const char *filename, int codec_id)
     }
 
     /* alloc image and output buffer */
-    outbuf_size = 100000;
+    outbuf_size = 100000 + 12*c->width*c->height;
     outbuf = malloc(outbuf_size);
 
     /* the image can be allocated by any means and av_image_alloc() is



More information about the ffmpeg-cvslog mailing list