~ubuntu-branches/ubuntu/precise/mpeg4ip/precise

« back to all changes in this revision

Viewing changes to common/video/iso-mpeg4/include/errorHandler.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2008-01-12 15:59:56 UTC
  • Revision ID: james.westby@ubuntu.com-20080112155956-1vznw5njidvrh649
Tags: upstream-1.6dfsg
ImportĀ upstreamĀ versionĀ 1.6dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id$ */
 
2
/****************************************************************************/
 
3
/*   MPEG4 Visual Texture Coding (VTC) Mode Software                        */
 
4
/*                                                                          */
 
5
/*   This software was jointly developed by the following participants:     */
 
6
/*                                                                          */
 
7
/*   Single-quant,  multi-quant and flow control                            */
 
8
/*   are provided by  Sarnoff Corporation                                   */
 
9
/*     Iraj Sodagar   (iraj@sarnoff.com)                                    */
 
10
/*     Hung-Ju Lee    (hjlee@sarnoff.com)                                   */
 
11
/*     Paul Hatrack   (hatrack@sarnoff.com)                                 */
 
12
/*     Shipeng Li     (shipeng@sarnoff.com)                                 */
 
13
/*     Bing-Bing Chai (bchai@sarnoff.com)                                   */
 
14
/*     B.S. Srinivas  (bsrinivas@sarnoff.com)                               */
 
15
/*                                                                          */
 
16
/*   Bi-level is provided by Texas Instruments                              */
 
17
/*     Jie Liang      (liang@ti.com)                                        */
 
18
/*                                                                          */
 
19
/*   Shape Coding is provided by  OKI Electric Industry Co., Ltd.           */
 
20
/*     Zhixiong Wu    (sgo@hlabs.oki.co.jp)                                 */
 
21
/*     Yoshihiro Ueda (yueda@hlabs.oki.co.jp)                               */
 
22
/*     Toshifumi Kanamaru (kanamaru@hlabs.oki.co.jp)                        */
 
23
/*                                                                          */
 
24
/*   OKI, Sharp, Sarnoff, TI and Microsoft contributed to bitstream         */
 
25
/*   exchange and bug fixing.                                               */
 
26
/*                                                                          */
 
27
/*                                                                          */
 
28
/* In the course of development of the MPEG-4 standard, this software       */
 
29
/* module is an implementation of a part of one or more MPEG-4 tools as     */
 
30
/* specified by the MPEG-4 standard.                                        */
 
31
/*                                                                          */
 
32
/* The copyright of this software belongs to ISO/IEC. ISO/IEC gives use     */
 
33
/* of the MPEG-4 standard free license to use this  software module or      */
 
34
/* modifications thereof for hardware or software products claiming         */
 
35
/* conformance to the MPEG-4 standard.                                      */
 
36
/*                                                                          */
 
37
/* Those intending to use this software module in hardware or software      */
 
38
/* products are advised that use may infringe existing  patents. The        */
 
39
/* original developers of this software module and their companies, the     */
 
40
/* subsequent editors and their companies, and ISO/IEC have no liability    */
 
41
/* and ISO/IEC have no liability for use of this software module or         */
 
42
/* modification thereof in an implementation.                               */
 
43
/*                                                                          */
 
44
/* Permission is granted to MPEG members to use, copy, modify,              */
 
45
/* and distribute the software modules ( or portions thereof )              */
 
46
/* for standardization activity within ISO/IEC JTC1/SC29/WG11.              */
 
47
/*                                                                          */
 
48
/* Copyright 1995, 1996, 1997, 1998 ISO/IEC                                 */
 
49
/****************************************************************************/
 
50
 
 
51
/************************************************************/
 
52
/*     Sarnoff Very Low Bit Rate Still Image Coder          */
 
53
/*     Copyright 1995, 1996, 1997, 1998 Sarnoff Corporation */
 
54
/************************************************************/
 
55
 
 
56
 
 
57
#ifndef ERRORHANDLER_H
 
58
#define ERRORHANDLER_H
 
59
#include "basic.hpp"
 
60
 
 
61
 
 
62
#endif 
 
63