]> granicus.if.org Git - libvpx/commitdiff
Fix the warning of C90 mixed declarations and code
authorAngie Chiang <angiebird@google.com>
Sat, 14 Nov 2020 02:13:14 +0000 (18:13 -0800)
committerAngie Chiang <angiebird@google.com>
Sat, 14 Nov 2020 02:13:14 +0000 (18:13 -0800)
Change-Id: I1a6c57525bbe8bf1a97057ecd64985bc23d1df2e

vp9/encoder/vp9_encoder.c

index f4587d42d9c4a4aa8bfb109d78ed0bc1327f3643..8d60a0c001503341c5e696dffee3a835c0db28cc 100644 (file)
@@ -7383,8 +7383,6 @@ static void accumulate_frame_tpl_stats(VP9_COMP *cpi) {
   // Accumulate tpl stats for each frame in the current group of picture.
   for (frame_idx = 1; frame_idx < gf_group->gf_group_size; ++frame_idx) {
     TplDepFrame *tpl_frame = &cpi->tpl_stats[frame_idx];
-    if (!tpl_frame->is_valid) continue;
-
     TplDepStats *tpl_stats = tpl_frame->tpl_stats_ptr;
     const int tpl_stride = tpl_frame->stride;
     int64_t intra_cost_base = 0;
@@ -7394,6 +7392,8 @@ static void accumulate_frame_tpl_stats(VP9_COMP *cpi) {
     int64_t mc_flow_base = 0;
     int row, col;
 
+    if (!tpl_frame->is_valid) continue;
+
     for (row = 0; row < cm->mi_rows && tpl_frame->is_valid; ++row) {
       for (col = 0; col < cm->mi_cols; ++col) {
         TplDepStats *this_stats = &tpl_stats[row * tpl_stride + col];