mp4_mblock.c
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:7k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #include <math.h>
  2. #include <assert.h>
  3. #include "mp4_vars.h"
  4. #include "getbits.h"
  5. #include "mp4_block.h"
  6. #include "mp4_mblock.h"
  7. #include "debug.h"
  8. /**
  9.  *
  10. **/
  11. static int getMCBPC();
  12. static int getCBPY();
  13. static int setMV(int block_num);
  14. static int getMVdata();
  15. /***/
  16. extern int find_pmv(int block_num, int type);
  17. extern void addblock (int comp, int bx, int by, int addflag);
  18. extern void addblockIntra (int comp, int bx, int by);
  19. extern void addblockInter (int comp, int bx, int by);
  20. /***/
  21. int macroblock()
  22. {
  23. int j;
  24. int intraFlag, interFlag;
  25. if (mp4_state->hdr.prediction_type != I_VOP)
  26. mp4_state->hdr.not_coded = getbits(1);
  27. // 编码宏块或I-VOP
  28. if (! mp4_state->hdr.not_coded || mp4_state->hdr.prediction_type == I_VOP) {
  29. mp4_state->hdr.mcbpc = getMCBPC(); 
  30. mp4_state->hdr.derived_mb_type = mp4_state->hdr.mcbpc & 7;
  31. mp4_state->hdr.cbpc = (mp4_state->hdr.mcbpc >> 4) & 3;
  32. mp4_state->modemap[mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = 
  33. mp4_state->hdr.derived_mb_type; // 仅在P-VOPs时使用
  34. intraFlag = ((mp4_state->hdr.derived_mb_type == INTRA) || 
  35. (mp4_state->hdr.derived_mb_type == INTRA_Q)) ? 1 : 0;
  36. interFlag = (! intraFlag);
  37. if (intraFlag)
  38. mp4_state->hdr.ac_pred_flag = getbits(1);
  39. if (mp4_state->hdr.derived_mb_type != STUFFING) {
  40. mp4_state->hdr.cbpy = getCBPY(); 
  41. mp4_state->hdr.cbp = (mp4_state->hdr.cbpy << 2) | mp4_state->hdr.cbpc;
  42. }
  43. else
  44. return 1;
  45. if (mp4_state->hdr.derived_mb_type == INTER_Q ||
  46. mp4_state->hdr.derived_mb_type == INTRA_Q) {
  47. mp4_state->hdr.dquant = getbits(2);
  48. mp4_state->hdr.quantizer += DQtab[mp4_state->hdr.dquant];
  49. if (mp4_state->hdr.quantizer > 31)
  50. mp4_state->hdr.quantizer = 31;
  51. else if (mp4_state->hdr.quantizer < 1)
  52. mp4_state->hdr.quantizer = 1;
  53. }
  54. if (mp4_state->hdr.derived_mb_type == INTER ||
  55. mp4_state->hdr.derived_mb_type == INTER_Q) {
  56. setMV(-1); 
  57. }
  58. else if (mp4_state->hdr.derived_mb_type == INTER4V) {
  59. for (j = 0; j < 4; j++) {
  60. setMV(j); 
  61. }
  62. }
  63. else { 
  64. if (mp4_state->hdr.prediction_type == P_VOP) {
  65. int i;
  66. for (i = 0; i < 4; i++) {
  67. mp4_state->MV[0][i][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = 0;
  68. mp4_state->MV[1][i][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = 0;
  69. }
  70. }
  71. }
  72. // 运动补偿
  73. if (interFlag) 
  74. {
  75. reconstruct(mp4_state->hdr.mb_xpos, mp4_state->hdr.mb_ypos, mp4_state->hdr.derived_mb_type);
  76. // 纹理解码
  77. for (j = 0; j < 6; j++) {
  78. int coded = mp4_state->hdr.cbp & (1 << (5 - j));
  79. if (coded) { 
  80. blockInter(j, (coded != 0));
  81. addblockInter(j, mp4_state->hdr.mb_xpos, mp4_state->hdr.mb_ypos);
  82. }
  83. }
  84. }
  85. else 
  86. {
  87. // 纹理解码
  88. for (j = 0; j < 6; j++) {
  89. int coded = mp4_state->hdr.cbp & (1 << (5 - j));
  90. blockIntra(j, (coded != 0));
  91. addblockIntra(j, mp4_state->hdr.mb_xpos, mp4_state->hdr.mb_ypos);
  92. }
  93. }
  94. }
  95. // 没编码的宏块
  96. else {
  97. mp4_state->MV[0][0][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mp4_state->MV[0][1][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] =
  98. mp4_state->MV[0][2][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mp4_state->MV[0][3][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = 0;
  99. mp4_state->MV[1][0][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mp4_state->MV[1][1][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] =
  100. mp4_state->MV[1][2][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mp4_state->MV[1][3][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = 0;
  101. mp4_state->modemap[mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = NOT_CODED; // [Review] used only in P-VOPs
  102. reconstruct(mp4_state->hdr.mb_xpos, mp4_state->hdr.mb_ypos, mp4_state->hdr.derived_mb_type);
  103. }
  104. mp4_state->quant_store[mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mp4_state->hdr.quantizer;
  105. if (mp4_state->hdr.mb_xpos < (mp4_state->mb_width-1)) {
  106. mp4_state->hdr.mb_xpos++;
  107. }
  108. else {
  109. mp4_state->hdr.mb_ypos++;
  110. mp4_state->hdr.mb_xpos = 0;
  111. }
  112. return 1;
  113. }
  114. /***/
  115. static int getMCBPC()
  116. {
  117. if (mp4_state->hdr.prediction_type == I_VOP)
  118. {
  119. int code = showbits(9);
  120. if (code == 1) {
  121. flushbits(9); // 填充
  122. return 0;
  123. }
  124. else if (code < 8) {
  125. return -1;
  126. }
  127. code >>= 3;
  128. if (code >= 32) {
  129. flushbits(1);
  130. return 3;
  131. }
  132. flushbits(mp4_tables->MCBPCtabIntra[code].len);
  133. return mp4_tables->MCBPCtabIntra[code].val;
  134. }
  135. else
  136. {
  137. int code = showbits(9);
  138. if (code == 1) {
  139. flushbits(9); // 填充
  140. return 0;
  141. }
  142. else if (code == 0) {
  143. return -1;
  144. }
  145. if (code >= 256)
  146. {
  147. flushbits(1);
  148. return 0;
  149. }
  150. flushbits(mp4_tables->MCBPCtabInter[code].len);
  151. return mp4_tables->MCBPCtabInter[code].val;
  152. }
  153. }
  154. /***/
  155. static int getCBPY()
  156. {
  157. int cbpy;
  158. int code = showbits(6);
  159. if (code < 2) {
  160. return -1;
  161. }
  162.   
  163. if (code >= 48) {
  164. flushbits(2);
  165. cbpy = 15;
  166. } else {
  167. flushbits(mp4_tables->CBPYtab[code].len);
  168. cbpy = mp4_tables->CBPYtab[code].val;
  169. }
  170. if (!((mp4_state->hdr.derived_mb_type == 3) ||
  171. (mp4_state->hdr.derived_mb_type == 4)))
  172.   cbpy = 15 - cbpy;
  173.   return cbpy;
  174. }
  175. /***/
  176. static int setMV(int block_num)
  177. {
  178. int hor_mv_data, ver_mv_data, hor_mv_res, ver_mv_res;
  179. int scale_fac = 1 << (mp4_state->hdr.fcode_for - 1);
  180. int high = (32 * scale_fac) - 1;
  181. int low = ((-32) * scale_fac);
  182. int range = (64 * scale_fac);
  183. int mvd_x, mvd_y, pmv_x, pmv_y, mv_x, mv_y;
  184.   hor_mv_data = getMVdata(); 
  185. if ((scale_fac == 1) || (hor_mv_data == 0))
  186. mvd_x = hor_mv_data;
  187. else {
  188. hor_mv_res = getbits(mp4_state->hdr.fcode_for-1); // mv residual
  189. mvd_x = ((abs(hor_mv_data) - 1) * scale_fac) + hor_mv_res + 1;
  190. if (hor_mv_data < 0)
  191. mvd_x = - mvd_x;
  192. }
  193.   ver_mv_data = getMVdata(); 
  194. if ((scale_fac == 1) || (ver_mv_data == 0))
  195. mvd_y = ver_mv_data;
  196. else {
  197. ver_mv_res = getbits(mp4_state->hdr.fcode_for-1);
  198. mvd_y = ((abs(ver_mv_data) - 1) * scale_fac) + ver_mv_res + 1;
  199. if (ver_mv_data < 0)
  200. mvd_y = - mvd_y;
  201. }
  202. if (block_num == -1) {
  203. pmv_x = find_pmv(0, 0);
  204. pmv_y = find_pmv(0, 1);
  205. }
  206. else {
  207. pmv_x = find_pmv(block_num, 0);
  208. pmv_y = find_pmv(block_num, 1);
  209. }
  210. mv_x = pmv_x + mvd_x;
  211. if (mv_x < low)
  212. mv_x += range;
  213. if (mv_x > high)
  214. mv_x -= range;
  215. mv_y = pmv_y + mvd_y;
  216. if (mv_y < low)
  217. mv_y += range;
  218. if (mv_y > high)
  219. mv_y -= range;
  220. if (block_num == -1) {
  221. int i;
  222. for (i = 0; i < 4; i++) {
  223. mp4_state->MV[0][i][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mv_x;
  224. mp4_state->MV[1][i][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mv_y;
  225. }
  226. }
  227. else {
  228. mp4_state->MV[0][block_num][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mv_x;
  229. mp4_state->MV[1][block_num][mp4_state->hdr.mb_ypos+1][mp4_state->hdr.mb_xpos+1] = mv_y;
  230. }
  231.   return 1;
  232. }
  233. /***/
  234. static int getMVdata()
  235. {
  236. int code;
  237. if (getbits(1)) {
  238. return 0; 
  239.   }
  240. code = showbits(12);
  241. if (code >= 512)
  242.   {
  243. code = (code >> 8) - 2;
  244. flushbits(mp4_tables->MVtab0[code].len);
  245. return mp4_tables->MVtab0[code].val;
  246.   }
  247. if (code >= 128)
  248.   {
  249. code = (code >> 2) - 32;
  250. flushbits(mp4_tables->MVtab1[code].len);
  251. return mp4_tables->MVtab1[code].val;
  252.   }
  253. code -= 4; 
  254. assert(code >= 0);
  255. flushbits(mp4_tables->MVtab2[code].len);
  256. return mp4_tables->MVtab2[code].val;
  257. }
  258. /***/