error.cpp
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*************************************************************************
  2. This software module was originally developed by 
  3. Yoshihiro Kikuchi (TOSHIBA CORPORATION)
  4. Takeshi Nagai (TOSHIBA CORPORATION)
  5.     and edited by:
  6. Toshiaki Watanabe (TOSHIBA CORPORATION)
  7. Noboru Yamaguchi (TOSHIBA CORPORATION)
  8.   in the course of development of the <MPEG-4 Video(ISO/IEC 14496-2)>. This
  9.   software module is an implementation of a part of one or more <MPEG-4 Video
  10.   (ISO/IEC 14496-2)> tools as specified by the <MPEG-4 Video(ISO/IEC 14496-2)
  11.   >. ISO/IEC gives users of the <MPEG-4 Video(ISO/IEC 14496-2)> free license
  12.   to this software module or modifications thereof for use in hardware or
  13.   software products claiming conformance to the <MPEG-4 Video(ISO/IEC 14496-2
  14.   )>. Those intending to use this software module in hardware or software
  15.   products are advised that its use may infringe existing patents. The
  16.   original developer of this software module and his/her company, the
  17.   subsequent editors and their companies, and ISO/IEC have no liability for
  18.   use of this software module or modifications thereof in an implementation.
  19.   Copyright is not released for non <MPEG-4 Video(ISO/IEC 14496-2)>
  20.   conforming products. TOSHIBA CORPORATION retains full right to use the code
  21.   for his/her own purpose, assign or donate the code to a third party and to
  22.   inhibit third parties from using the code for non <MPEG-4 Video(ISO/IEC
  23.   14496-2)> conforming products. This copyright notice must be included in
  24.   all copies or derivative works.
  25.   Copyright (c)1997.
  26. *************************************************************************/
  27. #include <stdio.h>
  28. #include <math.h>
  29. #include <stdlib.h>
  30. #include <iostream.h>
  31. #include "typeapi.h"
  32. #include "codehead.h"
  33. #include "mode.hpp"
  34. #include "global.hpp"
  35. #include "vopses.hpp"
  36. #ifdef __MFC_
  37. #ifdef _DEBUG
  38. #undef THIS_FILE
  39. static char BASED_CODE THIS_FILE[] = __FILE__;
  40. #endif
  41. #define new DEBUG_NEW    
  42. #endif // __MFC_
  43. // Video Packet MB number
  44. Int CVideoObject::VPMBnum(Int iMBX, Int iMBY) const {return (iMBY * m_iNumMBX + iMBX);}
  45. // Boundary decision
  46. Bool CVideoObject::bVPNoLeft(Int iMBnum, Int iMBX) const {return (iMBnum <= m_iVPMBnum || iMBX == 0);}
  47. Bool CVideoObject::bVPNoRightTop(Int iMBnum, Int iMBX) const {return (iMBnum - m_iNumMBX + 1 < m_iVPMBnum || iMBX == m_iNumMBX - 1);}
  48. Bool CVideoObject::bVPNoTop(Int iMBnum) const {return(iMBnum - m_iNumMBX < m_iVPMBnum);}
  49. Bool CVideoObject::bVPNoLeftTop(Int iMBnum, Int iMBX) const {return(iMBnum - m_iNumMBX - 1 < m_iVPMBnum || iMBX == 0);}
  50. // Added for data partitioning mode By Toshiba(1998-1-16:DP+RVLC)
  51. Void CVideoObject::copyRefShapeToMb (
  52. PixelC* ppxlcDstMB, 
  53. const PixelC* ppxlcSrc
  54. )
  55. {
  56. for (Int i = 0; i < MB_SIZE; i++) {
  57. memcpy (ppxlcDstMB, ppxlcSrc, MB_SIZE * sizeof(PixelC));
  58. ppxlcSrc += m_iFrameWidthY;
  59. ppxlcDstMB  += MB_SIZE;
  60. }
  61. }
  62. // End Toshiba(1998-1-16:DP+RVLC)
  63. Void fatal_error(char *pchMessage, Int iCond)
  64. {
  65. if(iCond)
  66. return;
  67. fprintf(stderr,"******** ERROR ********n");
  68. fprintf(stderr,"%sn", pchMessage);
  69. fprintf(stderr,"***********************nn");
  70. exit(1);
  71. }