[FFmpeg-devel] [PATCH] bintext: reset x and y pos after each frame decode.

Clément Bœsch ubitux at gmail.com
Fri Oct 7 22:06:59 CEST 2011


This makes successive frames decode possible.
---
 libavcodec/bintext.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/libavcodec/bintext.c b/libavcodec/bintext.c
index d183ba0..947be39 100644
--- a/libavcodec/bintext.c
+++ b/libavcodec/bintext.c
@@ -131,6 +131,7 @@ static int decode_frame(AVCodecContext *avctx,
     int buf_size = avpkt->size;
     const uint8_t *buf_end = buf+buf_size;
 
+    s->x = s->y = 0;
     s->frame.buffer_hints = FF_BUFFER_HINTS_VALID |
                             FF_BUFFER_HINTS_PRESERVE |
                             FF_BUFFER_HINTS_REUSABLE;
-- 
1.7.7



More information about the ffmpeg-devel mailing list