LCOV - code coverage report
Current view: top level - Codec - EbMotionEstimationResults.c (source / functions) Hit Total Coverage
Test: coverage.info Lines: 7 7 100.0 %
Date: 2019-11-25 17:12:20 Functions: 2 2 100.0 %

          Line data    Source code
       1             : /*
       2             : * Copyright(c) 2019 Intel Corporation
       3             : * SPDX - License - Identifier: BSD - 2 - Clause - Patent
       4             : */
       5             : 
       6             : #include <stdlib.h>
       7             : 
       8             : #include "EbDefinitions.h"
       9             : #include "EbMotionEstimationResults.h"
      10             : 
      11         600 : EbErrorType motion_estimation_results_ctor(
      12             :     MotionEstimationResults *context_ptr,
      13             :     EbPtr object_init_data_ptr)
      14             : {
      15             :     (void) context_ptr;
      16             :     (void)(object_init_data_ptr);
      17         600 :     return EB_ErrorNone;
      18             : }
      19             : 
      20         600 : EbErrorType motion_estimation_results_creator(
      21             :     EbPtr *object_dbl_ptr,
      22             :     EbPtr object_init_data_ptr)
      23             : {
      24             :     MotionEstimationResults* obj;
      25             : 
      26         600 :     *object_dbl_ptr = NULL;
      27         600 :     EB_NEW(obj, motion_estimation_results_ctor, object_init_data_ptr);
      28         600 :     *object_dbl_ptr = obj;
      29             : 
      30         600 :     return EB_ErrorNone;
      31             : }

Generated by: LCOV version 1.14