closedcaption: Fix compilation on older compilers
authorArun Raghavan <git@arunraghavan.net>
Mon, 9 Jul 2018 01:10:29 +0000 (06:40 +0530)
committerArun Raghavan <git@arunraghavan.net>
Mon, 9 Jul 2018 01:10:29 +0000 (06:40 +0530)
For when -std=c99 (or later) is not the default.

ext/closedcaption/gstceaccoverlay.c

index 5747b9a..9f32898 100644 (file)
@@ -1521,7 +1521,8 @@ gst_cea_cc_overlay_user_data_decode (GstCeaCcOverlay * overlay,
       case CCTYPE_608_CC2:
         if (cc_valid) {
           if (overlay->cea608_index[cc_type] <= DTVCC_LENGTH - 2) {
-            for (size_t j = 0; j < 2; ++j) {
+            size_t j;
+            for (j = 0; j < 2; ++j) {
               if ((cc_data[j] < ' ') || (cc_data[j] > '~')) {
                 gst_cea_cc_overlay_process_packet (overlay, cc_type);
               }