LCOV - code coverage report
Current view: top level - media/libvpx/libvpx/vp8/encoder - modecosts.c (source / functions) Hit Total Coverage
Test: output.info Lines: 0 16 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 1 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
       3             :  *
       4             :  *  Use of this source code is governed by a BSD-style license
       5             :  *  that can be found in the LICENSE file in the root of the source
       6             :  *  tree. An additional intellectual property rights grant can be found
       7             :  *  in the file PATENTS.  All contributing project authors may
       8             :  *  be found in the AUTHORS file in the root of the source tree.
       9             :  */
      10             : 
      11             : #include "vp8/common/blockd.h"
      12             : #include "modecosts.h"
      13             : #include "onyx_int.h"
      14             : #include "treewriter.h"
      15             : #include "vp8/common/entropymode.h"
      16             : 
      17           0 : void vp8_init_mode_costs(VP8_COMP *c) {
      18           0 :   VP8_COMMON *x = &c->common;
      19           0 :   struct rd_costs_struct *rd_costs = &c->rd_costs;
      20             : 
      21             :   {
      22           0 :     const vp8_tree_p T = vp8_bmode_tree;
      23             : 
      24           0 :     int i = 0;
      25             : 
      26             :     do {
      27           0 :       int j = 0;
      28             : 
      29             :       do {
      30           0 :         vp8_cost_tokens(rd_costs->bmode_costs[i][j], vp8_kf_bmode_prob[i][j],
      31             :                         T);
      32           0 :       } while (++j < VP8_BINTRAMODES);
      33           0 :     } while (++i < VP8_BINTRAMODES);
      34             : 
      35           0 :     vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.bmode_prob, T);
      36             :   }
      37           0 :   vp8_cost_tokens(rd_costs->inter_bmode_costs, x->fc.sub_mv_ref_prob,
      38             :                   vp8_sub_mv_ref_tree);
      39             : 
      40           0 :   vp8_cost_tokens(rd_costs->mbmode_cost[1], x->fc.ymode_prob, vp8_ymode_tree);
      41           0 :   vp8_cost_tokens(rd_costs->mbmode_cost[0], vp8_kf_ymode_prob,
      42             :                   vp8_kf_ymode_tree);
      43             : 
      44           0 :   vp8_cost_tokens(rd_costs->intra_uv_mode_cost[1], x->fc.uv_mode_prob,
      45             :                   vp8_uv_mode_tree);
      46           0 :   vp8_cost_tokens(rd_costs->intra_uv_mode_cost[0], vp8_kf_uv_mode_prob,
      47             :                   vp8_uv_mode_tree);
      48           0 : }

Generated by: LCOV version 1.13