[FFmpeg-cvslog] lavc/ccaption_dec: reap_screen is not necessary when clearing screen or buffer

Aman Gupta git at videolan.org
Fri Jan 8 20:41:40 CET 2016


ffmpeg | branch: master | Aman Gupta <aman at tmm1.net> | Tue Jan  5 15:06:02 2016 -0800| [fe225b113b0553cdcf1a1d2fbdbe37c467d7951b] | committer: Clément Bœsch

lavc/ccaption_dec: reap_screen is not necessary when clearing screen or buffer

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

 libavcodec/ccaption_dec.c |   10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c
index 02bce01..517e2c0 100644
--- a/libavcodec/ccaption_dec.c
+++ b/libavcodec/ccaption_dec.c
@@ -361,17 +361,15 @@ static void handle_pac(CCaptionSubContext *ctx, uint8_t hi, uint8_t lo)
     }
 }
 
-static void handle_erase(CCaptionSubContext *ctx, int64_t pts, int n_screen)
+static void handle_erase(CCaptionSubContext *ctx, int n_screen)
 {
     struct Screen *screen = ctx->screen + n_screen;
-
-    reap_screen(ctx, pts);
     screen->row_used = 0;
 }
 
 static void handle_eoc(CCaptionSubContext *ctx, int64_t pts)
 {
-    handle_erase(ctx, pts, ctx->active_screen);
+    reap_screen(ctx, pts);
     ctx->active_screen = !ctx->active_screen;
     ctx->cursor_column = 0;
 }
@@ -452,7 +450,7 @@ static void process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint
             break;
         case 0x2c:
             /* erase display memory */
-            handle_erase(ctx, pts, ctx->active_screen);
+            handle_erase(ctx, ctx->active_screen);
             break;
         case 0x2d:
             /* carriage return */
@@ -463,7 +461,7 @@ static void process_cc608(CCaptionSubContext *ctx, int64_t pts, uint8_t hi, uint
             break;
         case 0x2e:
             /* erase non displayed memory */
-            handle_erase(ctx, pts, !ctx->active_screen);
+            handle_erase(ctx, !ctx->active_screen);
             break;
         case 0x2f:
             /* end of caption */



More information about the ffmpeg-cvslog mailing list