[FFmpeg-cvslog] bintext: set buffer hints

Michael Niedermayer git at videolan.org
Fri Sep 16 06:14:16 CEST 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Sep 16 05:31:46 2011 +0200| [3ac4f444e276a4e418a54240bab8ddfb1ab7a5d8] | committer: Michael Niedermayer

bintext: set buffer hints

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

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

 libavcodec/bintext.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/libavcodec/bintext.c b/libavcodec/bintext.c
index e63d3d9..915aea0 100644
--- a/libavcodec/bintext.c
+++ b/libavcodec/bintext.c
@@ -131,6 +131,9 @@ static int decode_frame(AVCodecContext *avctx,
     int buf_size = avpkt->size;
     const uint8_t *buf_end = buf+buf_size;
 
+    s->frame.buffer_hints = FF_BUFFER_HINTS_VALID |
+                            FF_BUFFER_HINTS_PRESERVE |
+                            FF_BUFFER_HINTS_REUSABLE;
     if (avctx->reget_buffer(avctx, &s->frame)) {
         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
         return -1;



More information about the ffmpeg-cvslog mailing list