quant_h263.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:6k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**************************************************************************
  2.  *
  3.  * XVID MPEG-4 VIDEO CODEC
  4.  * quantization/dequantization
  5.  *
  6.  * This program is an implementation of a part of one or more MPEG-4
  7.  * Video tools as specified in ISO/IEC 14496-2 standard.  Those intending
  8.  * to use this software module in hardware or software products are
  9.  * advised that its use may infringe existing patents or copyrights, and
  10.  * any such use would be at such party's own risk.  The original
  11.  * developer of this software module and his/her company, and subsequent
  12.  * editors and their companies, will have no liability for use of this
  13.  * software or modifications or derivatives thereof.
  14.  *
  15.  * This program is free software; you can redistribute it and/or modify
  16.  * it under the terms of the GNU General Public License as published by
  17.  * the Free Software Foundation; either version 2 of the License, or
  18.  * (at your option) any later version.
  19.  *
  20.  * This program is distributed in the hope that it will be useful,
  21.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  22.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23.  * GNU General Public License for more details.
  24.  *
  25.  * You should have received a copy of the GNU General Public License
  26.  * along with this program; if not, write to the Free Software
  27.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  28.  *
  29.  *************************************************************************/
  30. /**************************************************************************
  31.  *
  32.  * History:
  33.  *
  34.  *  26.12.2001 dequant_inter bug fix
  35.  * 22.12.2001 clamp dequant output to [-2048,2047]
  36.  *  19.11.2001  quant_inter now returns sum of abs. coefficient values
  37.  * 02.11.2001 added const to function args <pross@cs.rmit.edu.au>
  38.  * 28.10.2001 total rewrite <pross@cs.rmit.edu.au>
  39.  *
  40.  *************************************************************************/
  41. #include "quant_h263.h"
  42. /* mutliply+shift division table
  43. */
  44. #define SCALEBITS 16
  45. #define FIX(X) ((1L << SCALEBITS) / (X) + 1)
  46. static const uint32_t multipliers[32] =
  47. {
  48. 0, FIX(2), FIX(4), FIX(6),
  49. FIX(8), FIX(10), FIX(12), FIX(14),
  50. FIX(16), FIX(18), FIX(20), FIX(22),
  51. FIX(24), FIX(26), FIX(28), FIX(30),
  52. FIX(32), FIX(34), FIX(36), FIX(38),
  53. FIX(40), FIX(42), FIX(44), FIX(46),
  54. FIX(48), FIX(50), FIX(52), FIX(54),
  55. FIX(56), FIX(58), FIX(60), FIX(62)
  56. }; 
  57. #define DIV_DIV(a, b) ((a)>0) ? ((a)+((b)>>1))/(b) : ((a)-((b)>>1))/(b)
  58. // function pointers
  59. quanth263_intraFuncPtr quant_intra;
  60. quanth263_intraFuncPtr dequant_intra;
  61. quanth263_interFuncPtr quant_inter;
  62. dequanth263_interFuncPtr dequant_inter;
  63. /* quantize intra-block
  64. */
  65. void quant_intra_c(int16_t * coeff, const int16_t * data, const uint32_t quant, const uint32_t dcscalar)
  66. {
  67. const uint32_t mult = multipliers[quant];
  68. const uint16_t quant_m_2 = quant << 1;
  69.     uint32_t i;
  70. coeff[0] = DIV_DIV(data[0], (int32_t)dcscalar);
  71. for (i = 1; i < 64; i++) {
  72. int16_t acLevel = data[i];
  73. if (acLevel < 0) {
  74. acLevel = -acLevel;
  75. if (acLevel < quant_m_2) {
  76. coeff[i] = 0;
  77. continue;
  78. }
  79. acLevel = (acLevel * mult) >> SCALEBITS;
  80. coeff[i] = -acLevel;
  81. } else {
  82. if (acLevel < quant_m_2) {
  83. coeff[i] = 0;
  84. continue;
  85. }
  86. acLevel = (acLevel * mult) >> SCALEBITS;
  87. coeff[i] = acLevel;
  88. }
  89. }
  90. }
  91. /* quantize inter-block
  92. */
  93. uint32_t quant_inter_c(int16_t *coeff, const int16_t *data, const uint32_t quant)
  94. {
  95. const uint32_t mult = multipliers[quant];
  96. const uint16_t quant_m_2 = quant << 1;
  97. const uint16_t quant_d_2 = quant >> 1;
  98. int sum = 0;
  99. uint32_t i;
  100. for (i = 0; i < 64; i++) {
  101. int16_t acLevel = data[i];
  102. if (acLevel < 0) {
  103. acLevel = (-acLevel) - quant_d_2;
  104. if (acLevel < quant_m_2) {
  105. coeff[i] = 0;
  106. continue;
  107. }
  108. acLevel = (acLevel * mult) >> SCALEBITS;
  109. sum += acLevel; // sum += |acLevel|
  110. coeff[i] = -acLevel;
  111. } else {
  112. acLevel -= quant_d_2;
  113. if (acLevel < quant_m_2) {
  114. coeff[i] = 0;
  115. continue;
  116. }
  117. acLevel = (acLevel * mult) >> SCALEBITS;
  118. sum += acLevel;
  119. coeff[i] = acLevel;
  120. }
  121. }
  122. return sum;
  123. }
  124. /* dequantize intra-block & clamp to [-2048,2047]
  125. */
  126. void dequant_intra_c(int16_t *data, const int16_t *coeff, const uint32_t quant, const uint32_t dcscalar)
  127. {
  128. const int32_t quant_m_2 = quant << 1;
  129. const int32_t quant_add = (quant & 1 ? quant : quant - 1);
  130.     uint32_t i;
  131. data[0] = coeff[0]  * dcscalar;
  132. if (data[0] < -2048)
  133. {
  134. data[0] = -2048;
  135. else if (data[0] > 2047)
  136. {
  137. data[0] = 2047;
  138. }
  139. for (i = 1; i < 64; i++) {
  140. int32_t acLevel = coeff[i];
  141. if (acLevel == 0)
  142. {
  143. data[i] = 0;
  144. else if (acLevel < 0) 
  145. {
  146. acLevel = quant_m_2 * -acLevel + quant_add;
  147. data[i] = (acLevel <= 2048 ? -acLevel : -2048);
  148. else  //  if (acLevel > 0) {
  149. {   
  150. acLevel = quant_m_2 * acLevel + quant_add;
  151. data[i] = (acLevel <= 2047 ? acLevel : 2047);
  152. }
  153. }
  154. }
  155. /* dequantize inter-block & clamp to [-2048,2047]
  156. */
  157. void dequant_inter_c(int16_t *data, const int16_t *coeff, const uint32_t quant)
  158. {
  159. const uint16_t quant_m_2 = quant << 1;
  160. const uint16_t quant_add = (quant & 1 ? quant : quant - 1);
  161. uint32_t i;
  162. for (i = 0; i < 64; i++) {
  163. int16_t acLevel = coeff[i];
  164. if (acLevel == 0)
  165. {
  166. data[i] = 0;
  167. }
  168. else if (acLevel < 0) 
  169. {
  170. acLevel = acLevel * quant_m_2 - quant_add;
  171. data[i] = (acLevel >= -2048 ? acLevel : -2048);
  172. else // if (acLevel > 0)
  173. acLevel = acLevel * quant_m_2 + quant_add;
  174. data[i] = (acLevel <= 2047 ? acLevel : 2047);
  175. }
  176. }
  177. }