]> git.sesse.net Git - ffmpeg/commitdiff
avcodec/ccaption_dec: fix some small style issues
authorPaul B Mahol <onemda@gmail.com>
Tue, 16 Jun 2020 09:16:03 +0000 (11:16 +0200)
committerPaul B Mahol <onemda@gmail.com>
Tue, 16 Jun 2020 15:11:38 +0000 (17:11 +0200)
libavcodec/ccaption_dec.c

index 6636043968953abcb0f8c645c051e03ecedac931..9a67c0fd5ac2c8ffa6e68bead654a2cf2993d702 100644 (file)
@@ -635,7 +635,7 @@ static int handle_eoc(CCaptionSubContext *ctx, int64_t pts)
     // In buffered mode, we wait til the *next* EOC and
     // reap what was already on the screen since the last EOC.
     if (!ctx->real_time)
-        ret = handle_edm(ctx,pts);
+        ret = handle_edm(ctx, pts);
 
     ctx->cursor_column = 0;
 
@@ -803,12 +803,12 @@ static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avp
     memcpy(ctx->pktbuf, avpkt->data, len);
     bptr = ctx->pktbuf;
 
-    for (i  = 0; i < len; i += 3) {
+    for (i = 0; i < len; i += 3) {
         uint8_t cc_type = *(bptr + i) & 3;
         if (validate_cc_data_pair(bptr + i))
             continue;
         /* ignoring data field 1 */
-        if(cc_type == 1)
+        if (cc_type == 1)
             continue;
         else
             ret = process_cc608(ctx, start_time, *(bptr + i + 1) & 0x7f, *(bptr + i + 2) & 0x7f);
@@ -820,9 +820,8 @@ static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avp
             continue;
         ctx->buffer_changed = 0;
 
-        if (*ctx->buffer.str || ctx->real_time)
-        {
-            ff_dlog(ctx, "cdp writing data (%s)\n",ctx->buffer.str);
+        if (ctx->buffer.str[0] || ctx->real_time) {
+            ff_dlog(ctx, "cdp writing data (%s)\n", ctx->buffer.str);
             ret = ff_ass_add_rect(sub, ctx->buffer.str, ctx->readorder++, 0, NULL, NULL);
             if (ret < 0)
                 return ret;