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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* 
  2.  * Copyright (c) 1997 NextLevel Systems of Delaware, Inc.  All rights reserved.
  3.  * 
  4.  * This software module  was developed by  Bob Eifrig (at NextLevel
  5.  * Systems of Delaware, Inc.), Xuemin Chen (at NextLevel Systems of
  6.  * Delaware, Inc.), and Ajay Luthra (at NextLevel Systems of Delaware,
  7.  * Inc.), in the course of development of the MPEG-4 Video Standard
  8.  * (ISO/IEC 14496-2).   This software module is an implementation of a
  9.  * part of one or more tools as specified by the MPEG-4 Video Standard.
  10.  * 
  11.  * NextLevel Systems of Delaware, Inc. grants the right, under its
  12.  * copyright in this software module, to use this software module and to
  13.  * make modifications to it for use in products which conform to the
  14.  * MPEG-4 Video Standard.  No license is granted for any use in
  15.  * connection with products which do not conform to the MPEG-4 Video
  16.  * Standard.
  17.  * 
  18.  * Those intending to use this software module are advised that such use
  19.  * may infringe existing and unissued patents.  Please note that in
  20.  * order to practice the MPEG-4 Video Standard, a license may be
  21.  * required to certain patents held by NextLevel Systems of Delaware,
  22.  * Inc., its parent or affiliates ("NextLevel").   The provision of this
  23.  * software module conveys no license, express or implied, under any
  24.  * patent rights of NextLevel or of any third party.  This software
  25.  * module is subject to change without notice.  NextLevel assumes no
  26.  * responsibility for any errors that may appear in this software
  27.  * module.  NEXTLEVEL DISCLAIMS ALL WARRANTIES, EXPRESS AND IMPLIED,
  28.  * INCLUDING, BUT NOT LIMITED TO ANY WARRANTY THAT COMPLIANCE WITH OR
  29.  * PRACTICE OF THE SPECIFICATIONS OR USE OF THIS SOFTWARE MODULE WILL
  30.  * NOT INFRINGE THE INTELLECTUAL PROPERTY RIGHTS OF NEXTLEVEL OR ANY
  31.  * THIRD PARTY, AND ANY IMPLIED WARRANTIES OF MERCHANTABILITY AND
  32.  * FITNESS FOR A PARTICULAR PURPOSE.
  33.  * 
  34.  * NextLevel retains the full right to use this software module for its
  35.  * own purposes, to assign or transfer this software module to others,
  36.  * to prevent others from using this software module in connection with
  37.  * products which do not conform to the MPEG-4 Video Standard, and to
  38.  * prevent others from infringing NextLevel's patents.
  39.  * 
  40.  * As an express condition of the above license grant, users are
  41.  * required to include this copyright notice in all copies or derivative
  42.  * works of this software module.
  43.  */
  44. /***********************************************************CommentBegin******
  45.  *
  46.  * -- FrameFieldDCTDecide -- Determine if field DCT is better & swizzle 
  47.  *
  48.  * Purpose :  
  49.  * Determine if the macroblock should be field DCT code and
  50.  * reorder luminancemacroblock lines if the macroblock is
  51.  * field-coded.
  52.  *
  53.  * Return values : 
  54.  * Int FieldDCT : 0 if frame DCT, 1 if field DCT 
  55.  *
  56.  * Written by X. Chen, NextLevel System, Inc.
  57.  *
  58.  ***********************************************************CommentEnd********/
  59. #include <stdio.h>
  60. #include <math.h>
  61. #include <stdlib.h>
  62. #include <iostream.h>
  63. #include "typeapi.h"
  64. #include "codehead.h"
  65. #include "global.hpp"
  66. #include "entropy/bitstrm.hpp"
  67. #include "entropy/entropy.hpp"
  68. #include "entropy/huffman.hpp"
  69. #include "mode.hpp"
  70. #include "vopses.hpp"
  71. #include "vopsedec.hpp"
  72. #ifdef __MFC_
  73. #ifdef _DEBUG
  74. #undef THIS_FILE
  75. static char BASED_CODE THIS_FILE[] = __FILE__;
  76. #endif
  77. #define new DEBUG_NEW    
  78. #endif // __MFC_
  79. /***********************************************************CommentBegin******
  80.  *
  81.  * -- fieldDCTtoFrame -- permute the intra- field-DCT block back to frame layout 
  82.  *
  83.  *
  84.  ***********************************************************CommentEnd********/
  85. Void
  86. CVideoObjectDecoder::fieldDCTtoFrameC(PixelC* ppxlcRefMBY)
  87. {
  88. static unsigned char inv_shuffle[] = {
  89.         1, 0, 8, 1, 4, 8, 2, 4, 0, 2, 3, 0, 9, 3,
  90.         12, 9, 6, 12, 0, 6, 5, 0, 10, 5, 0, 10, 7, 0,
  91.         11, 7, 13, 11, 14, 13, 0, 14, };
  92.     PixelC tmp[MB_SIZE];
  93.     size_t i;
  94. for (i = 0; i < sizeof(inv_shuffle); i += 2)
  95.                 memcpy(inv_shuffle[i+1] ? ppxlcRefMBY+inv_shuffle[i+1]*m_iFrameWidthY : tmp,
  96.                            inv_shuffle[i+0] ? ppxlcRefMBY+inv_shuffle[i+0]*m_iFrameWidthY : tmp,
  97.                            MB_SIZE*sizeof(PixelC));
  98. }
  99. /***********************************************************CommentBegin******
  100.  *
  101.  * -- fieldDCTtoFrame -- permute the inter field DCT block back to frame layout 
  102.  *
  103.  *
  104.  ***********************************************************CommentEnd********/
  105. Void
  106. CVideoObjectDecoder::fieldDCTtoFrameI(PixelI* m_ppxliErrorMBY)
  107. {
  108. static unsigned char inv_shuffle[] = {
  109.         16, 0, 128, 16, 64, 128, 32, 64, 0, 32, 48, 0, 144, 48,
  110.         192, 144, 96, 192, 0, 96, 80, 0, 160, 80, 0, 160, 112, 0,
  111.         176, 112, 208, 176, 224, 208, 0, 224,
  112.                 };
  113.     Int tmp[MB_SIZE];
  114.     size_t i;
  115. for (i = 0; i < sizeof(inv_shuffle); i += 2)
  116.                 memcpy(inv_shuffle[i+1] ? m_ppxliErrorMBY+inv_shuffle[i+1] : tmp,
  117.                            inv_shuffle[i+0] ? m_ppxliErrorMBY+inv_shuffle[i+0] : tmp,
  118.                            MB_SIZE*sizeof(PixelI));
  119. }