ref_forward_roi_local.h

来自「JPEG2000实现的源码」· C头文件 代码 · 共 36 行

H
36
字号
/*****************************************************************************/
/* Copyright 1998, Hewlett-Packard Company                                   */
/* All rights reserved                                                       */
/* File: "ref_forward_roi_local.h"                                           */
/* Description: Private definitions for "ref_forward_roi.c"                  */
/* Author: David Taubman                                                     */
/* Affiliation: Hewlett-Packard and                                          */
/*              The University of New South Wales, Australia                 */
/* Acknowledgements: Partly developed in collaboration with Mathias Larsson  */
/*                   and his colleagues at Ericsson, Sweden                  */
/* Version: VM6.0                                                            */
/* Last Revised: 19 January, 2000                                            */
/*****************************************************************************/

#ifndef REF_FORWARD_ROI_LOCAL_H
#define REF_FORWARD_ROI_LOCAL_H
#include "ref_roi_common.h"

/*****************************************************************************/
/*                             ref_forward_roi_obj                           */
/*****************************************************************************/

typedef
  struct ref_forward_roi_obj {
    forward_roi_obj base;
    forward_info_ref info;
    int num_components;
    roi_component_info_ptr components;
    int block_aligned;
    int no_rect;
  } ref_forward_roi_obj, *ref_forward_roi_ref;
  /* This structure defines the augmented state of the `forward_roi' object
     created by `create_reference_forward_roi'. */

#endif /* REF_FORWARD_ROI_LOCAL_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?