You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1452 lines
50KB

  1. /*
  2. * RV30/40 decoder common data
  3. * Copyright (c) 2007 Mike Melanson, Konstantin Shishkov
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file rv34.c
  23. * RV30/40 decoder common data
  24. */
  25. #include "avcodec.h"
  26. #include "dsputil.h"
  27. #include "mpegvideo.h"
  28. #include "golomb.h"
  29. #include "rectangle.h"
  30. #include "rv34vlc.h"
  31. #include "rv34data.h"
  32. #include "rv34.h"
  33. //#define DEBUG
  34. /** translation of RV30/40 macroblock types to lavc ones */
  35. static const int rv34_mb_type_to_lavc[12] = {
  36. MB_TYPE_INTRA,
  37. MB_TYPE_INTRA16x16 | MB_TYPE_SEPARATE_DC,
  38. MB_TYPE_16x16 | MB_TYPE_L0,
  39. MB_TYPE_8x8 | MB_TYPE_L0,
  40. MB_TYPE_16x16 | MB_TYPE_L0,
  41. MB_TYPE_16x16 | MB_TYPE_L1,
  42. MB_TYPE_SKIP,
  43. MB_TYPE_DIRECT2 | MB_TYPE_16x16,
  44. MB_TYPE_16x8 | MB_TYPE_L0,
  45. MB_TYPE_8x16 | MB_TYPE_L0,
  46. MB_TYPE_16x16 | MB_TYPE_L0L1,
  47. MB_TYPE_16x16 | MB_TYPE_L0 | MB_TYPE_SEPARATE_DC
  48. };
  49. static RV34VLC intra_vlcs[NUM_INTRA_TABLES], inter_vlcs[NUM_INTER_TABLES];
  50. /**
  51. * @defgroup vlc RV30/40 VLC generating functions
  52. * @{
  53. */
  54. /**
  55. * Generate VLC from codeword lengths.
  56. * @param bits codeword lengths (zeroes are accepted)
  57. * @param size length of input data
  58. * @param insyms symbols for input codes (NULL for default ones)
  59. */
  60. static void rv34_gen_vlc(const uint8_t *bits, int size, VLC *vlc, const uint8_t *insyms)
  61. {
  62. int i;
  63. int counts[17] = {0}, codes[17];
  64. uint16_t cw[size], syms[size];
  65. uint8_t bits2[size];
  66. int maxbits = 0, realsize = 0;
  67. for(i = 0; i < size; i++){
  68. if(bits[i]){
  69. bits2[realsize] = bits[i];
  70. syms[realsize] = insyms ? insyms[i] : i;
  71. realsize++;
  72. maxbits = FFMAX(maxbits, bits[i]);
  73. counts[bits[i]]++;
  74. }
  75. }
  76. codes[0] = 0;
  77. for(i = 0; i < 16; i++)
  78. codes[i+1] = (codes[i] + counts[i]) << 1;
  79. for(i = 0; i < realsize; i++)
  80. cw[i] = codes[bits2[i]]++;
  81. init_vlc_sparse(vlc, FFMIN(maxbits, 9), realsize,
  82. bits2, 1, 1,
  83. cw, 2, 2,
  84. syms, 2, 2, INIT_VLC_USE_STATIC);
  85. }
  86. /**
  87. * Initialize all tables.
  88. */
  89. static av_cold void rv34_init_tables()
  90. {
  91. int i, j, k;
  92. for(i = 0; i < NUM_INTRA_TABLES; i++){
  93. for(j = 0; j < 2; j++){
  94. rv34_gen_vlc(rv34_table_intra_cbppat [i][j], CBPPAT_VLC_SIZE, &intra_vlcs[i].cbppattern[j], NULL);
  95. rv34_gen_vlc(rv34_table_intra_secondpat[i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].second_pattern[j], NULL);
  96. rv34_gen_vlc(rv34_table_intra_thirdpat [i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].third_pattern[j], NULL);
  97. for(k = 0; k < 4; k++)
  98. rv34_gen_vlc(rv34_table_intra_cbp[i][j+k*2], CBP_VLC_SIZE, &intra_vlcs[i].cbp[j][k], rv34_cbp_code);
  99. }
  100. for(j = 0; j < 4; j++)
  101. rv34_gen_vlc(rv34_table_intra_firstpat[i][j], FIRSTBLK_VLC_SIZE, &intra_vlcs[i].first_pattern[j], NULL);
  102. rv34_gen_vlc(rv34_intra_coeff[i], COEFF_VLC_SIZE, &intra_vlcs[i].coefficient, NULL);
  103. }
  104. for(i = 0; i < NUM_INTER_TABLES; i++){
  105. rv34_gen_vlc(rv34_inter_cbppat[i], CBPPAT_VLC_SIZE, &inter_vlcs[i].cbppattern[0], NULL);
  106. for(j = 0; j < 4; j++)
  107. rv34_gen_vlc(rv34_inter_cbp[i][j], CBP_VLC_SIZE, &inter_vlcs[i].cbp[0][j], rv34_cbp_code);
  108. for(j = 0; j < 2; j++){
  109. rv34_gen_vlc(rv34_table_inter_firstpat [i][j], FIRSTBLK_VLC_SIZE, &inter_vlcs[i].first_pattern[j], NULL);
  110. rv34_gen_vlc(rv34_table_inter_secondpat[i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].second_pattern[j], NULL);
  111. rv34_gen_vlc(rv34_table_inter_thirdpat [i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].third_pattern[j], NULL);
  112. }
  113. rv34_gen_vlc(rv34_inter_coeff[i], COEFF_VLC_SIZE, &inter_vlcs[i].coefficient, NULL);
  114. }
  115. }
  116. /** @} */ // vlc group
  117. /**
  118. * @defgroup transform RV30/40 inverse transform functions
  119. * @{
  120. */
  121. static av_always_inline void rv34_row_transform(int temp[16], DCTELEM *block)
  122. {
  123. int i;
  124. for(i=0; i<4; i++){
  125. const int z0= 13*(block[i+8*0] + block[i+8*2]);
  126. const int z1= 13*(block[i+8*0] - block[i+8*2]);
  127. const int z2= 7* block[i+8*1] - 17*block[i+8*3];
  128. const int z3= 17* block[i+8*1] + 7*block[i+8*3];
  129. temp[4*i+0]= z0+z3;
  130. temp[4*i+1]= z1+z2;
  131. temp[4*i+2]= z1-z2;
  132. temp[4*i+3]= z0-z3;
  133. }
  134. }
  135. /**
  136. * Real Video 3.0/4.0 inverse transform
  137. * Code is almost the same as in SVQ3, only scaling is different.
  138. */
  139. static void rv34_inv_transform(DCTELEM *block){
  140. int temp[16];
  141. int i;
  142. rv34_row_transform(temp, block);
  143. for(i=0; i<4; i++){
  144. const int z0= 13*(temp[4*0+i] + temp[4*2+i]) + 0x200;
  145. const int z1= 13*(temp[4*0+i] - temp[4*2+i]) + 0x200;
  146. const int z2= 7* temp[4*1+i] - 17*temp[4*3+i];
  147. const int z3= 17* temp[4*1+i] + 7*temp[4*3+i];
  148. block[i*8+0]= (z0 + z3)>>10;
  149. block[i*8+1]= (z1 + z2)>>10;
  150. block[i*8+2]= (z1 - z2)>>10;
  151. block[i*8+3]= (z0 - z3)>>10;
  152. }
  153. }
  154. /**
  155. * RealVideo 3.0/4.0 inverse transform for DC block
  156. *
  157. * Code is almost the same as rv34_inv_transform()
  158. * but final coefficients are multiplied by 1.5 and have no rounding.
  159. */
  160. static void rv34_inv_transform_noround(DCTELEM *block){
  161. int temp[16];
  162. int i;
  163. rv34_row_transform(temp, block);
  164. for(i=0; i<4; i++){
  165. const int z0= 13*(temp[4*0+i] + temp[4*2+i]);
  166. const int z1= 13*(temp[4*0+i] - temp[4*2+i]);
  167. const int z2= 7* temp[4*1+i] - 17*temp[4*3+i];
  168. const int z3= 17* temp[4*1+i] + 7*temp[4*3+i];
  169. block[i*8+0]= ((z0 + z3)*3)>>11;
  170. block[i*8+1]= ((z1 + z2)*3)>>11;
  171. block[i*8+2]= ((z1 - z2)*3)>>11;
  172. block[i*8+3]= ((z0 - z3)*3)>>11;
  173. }
  174. }
  175. /** @} */ // transform
  176. /**
  177. * @defgroup block RV30/40 4x4 block decoding functions
  178. * @{
  179. */
  180. /**
  181. * Decode coded block pattern.
  182. */
  183. static int rv34_decode_cbp(GetBitContext *gb, RV34VLC *vlc, int table)
  184. {
  185. int pattern, code, cbp=0;
  186. int ones;
  187. static const int cbp_masks[3] = {0x100000, 0x010000, 0x110000};
  188. static const int shifts[4] = { 0, 2, 8, 10 };
  189. int *curshift = shifts;
  190. int i, t, mask;
  191. code = get_vlc2(gb, vlc->cbppattern[table].table, 9, 2);
  192. pattern = code & 0xF;
  193. code >>= 4;
  194. ones = rv34_count_ones[pattern];
  195. for(mask = 8; mask; mask >>= 1, curshift++){
  196. if(pattern & mask)
  197. cbp |= get_vlc2(gb, vlc->cbp[table][ones].table, vlc->cbp[table][ones].bits, 1) << curshift[0];
  198. }
  199. for(i = 0; i < 4; i++){
  200. t = modulo_three_table[code][i];
  201. if(t == 1)
  202. cbp |= cbp_masks[get_bits1(gb)] << i;
  203. if(t == 2)
  204. cbp |= cbp_masks[2] << i;
  205. }
  206. return cbp;
  207. }
  208. /**
  209. * Get one coefficient value from the bistream and store it.
  210. */
  211. static inline void decode_coeff(DCTELEM *dst, int coef, int esc, GetBitContext *gb, VLC* vlc)
  212. {
  213. if(coef){
  214. if(coef == esc){
  215. coef = get_vlc2(gb, vlc->table, 9, 2);
  216. if(coef > 23){
  217. coef -= 23;
  218. coef = 22 + ((1 << coef) | get_bits(gb, coef));
  219. }
  220. coef += esc;
  221. }
  222. if(get_bits1(gb))
  223. coef = -coef;
  224. *dst = coef;
  225. }
  226. }
  227. /**
  228. * Decode 2x2 subblock of coefficients.
  229. */
  230. static inline void decode_subblock(DCTELEM *dst, int code, const int is_block2, GetBitContext *gb, VLC *vlc)
  231. {
  232. int coeffs[4];
  233. coeffs[0] = modulo_three_table[code][0];
  234. coeffs[1] = modulo_three_table[code][1];
  235. coeffs[2] = modulo_three_table[code][2];
  236. coeffs[3] = modulo_three_table[code][3];
  237. decode_coeff(dst , coeffs[0], 3, gb, vlc);
  238. if(is_block2){
  239. decode_coeff(dst+8, coeffs[1], 2, gb, vlc);
  240. decode_coeff(dst+1, coeffs[2], 2, gb, vlc);
  241. }else{
  242. decode_coeff(dst+1, coeffs[1], 2, gb, vlc);
  243. decode_coeff(dst+8, coeffs[2], 2, gb, vlc);
  244. }
  245. decode_coeff(dst+9, coeffs[3], 2, gb, vlc);
  246. }
  247. /**
  248. * Decode coefficients for 4x4 block.
  249. *
  250. * This is done by filling 2x2 subblocks with decoded coefficients
  251. * in this order (the same for subblocks and subblock coefficients):
  252. * o--o
  253. * /
  254. * /
  255. * o--o
  256. */
  257. static inline void rv34_decode_block(DCTELEM *dst, GetBitContext *gb, RV34VLC *rvlc, int fc, int sc)
  258. {
  259. int code, pattern;
  260. code = get_vlc2(gb, rvlc->first_pattern[fc].table, 9, 2);
  261. pattern = code & 0x7;
  262. code >>= 3;
  263. decode_subblock(dst, code, 0, gb, &rvlc->coefficient);
  264. if(pattern & 4){
  265. code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
  266. decode_subblock(dst + 2, code, 0, gb, &rvlc->coefficient);
  267. }
  268. if(pattern & 2){ // Looks like coefficients 1 and 2 are swapped for this block
  269. code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
  270. decode_subblock(dst + 8*2, code, 1, gb, &rvlc->coefficient);
  271. }
  272. if(pattern & 1){
  273. code = get_vlc2(gb, rvlc->third_pattern[sc].table, 9, 2);
  274. decode_subblock(dst + 8*2+2, code, 0, gb, &rvlc->coefficient);
  275. }
  276. }
  277. /**
  278. * Dequantize ordinary 4x4 block.
  279. * @todo optimize
  280. */
  281. static inline void rv34_dequant4x4(DCTELEM *block, int Qdc, int Q)
  282. {
  283. int i, j;
  284. block[0] = (block[0] * Qdc + 8) >> 4;
  285. for(i = 0; i < 4; i++)
  286. for(j = !i; j < 4; j++)
  287. block[j + i*8] = (block[j + i*8] * Q + 8) >> 4;
  288. }
  289. /**
  290. * Dequantize 4x4 block of DC values for 16x16 macroblock.
  291. * @todo optimize
  292. */
  293. static inline void rv34_dequant4x4_16x16(DCTELEM *block, int Qdc, int Q)
  294. {
  295. int i;
  296. for(i = 0; i < 3; i++)
  297. block[rv34_dezigzag[i]] = (block[rv34_dezigzag[i]] * Qdc + 8) >> 4;
  298. for(; i < 16; i++)
  299. block[rv34_dezigzag[i]] = (block[rv34_dezigzag[i]] * Q + 8) >> 4;
  300. }
  301. /** @} */ //block functions
  302. /**
  303. * @defgroup bitstream RV30/40 bitstream parsing
  304. * @{
  305. */
  306. /**
  307. * Decode starting slice position.
  308. * @todo Maybe replace with ff_h263_decode_mba() ?
  309. */
  310. int ff_rv34_get_start_offset(GetBitContext *gb, int mb_size)
  311. {
  312. int i;
  313. for(i = 0; i < 5; i++)
  314. if(rv34_mb_max_sizes[i] > mb_size)
  315. break;
  316. return rv34_mb_bits_sizes[i];
  317. }
  318. /**
  319. * Select VLC set for decoding from current quantizer, modifier and frame type.
  320. */
  321. static inline RV34VLC* choose_vlc_set(int quant, int mod, int type)
  322. {
  323. if(mod == 2 && quant < 19) quant += 10;
  324. else if(mod && quant < 26) quant += 5;
  325. return type ? &inter_vlcs[rv34_quant_to_vlc_set[1][av_clip(quant, 0, 30)]]
  326. : &intra_vlcs[rv34_quant_to_vlc_set[0][av_clip(quant, 0, 30)]];
  327. }
  328. /**
  329. * Decode quantizer difference and return modified quantizer.
  330. */
  331. static inline int rv34_decode_dquant(GetBitContext *gb, int quant)
  332. {
  333. if(get_bits1(gb))
  334. return rv34_dquant_tab[get_bits1(gb)][quant];
  335. else
  336. return get_bits(gb, 5);
  337. }
  338. /** @} */ //bitstream functions
  339. /**
  340. * @defgroup mv motion vector related code (prediction, reconstruction, motion compensation)
  341. * @{
  342. */
  343. /** macroblock partition width in 8x8 blocks */
  344. static const uint8_t part_sizes_w[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2 };
  345. /** macroblock partition height in 8x8 blocks */
  346. static const uint8_t part_sizes_h[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2 };
  347. /** availability index for subblocks */
  348. static const uint8_t avail_indexes[4] = { 5, 6, 9, 10 };
  349. /**
  350. * motion vector prediction
  351. *
  352. * Motion prediction performed for the block by using median prediction of
  353. * motion vectors from the left, top and right top blocks but in corner cases
  354. * some other vectors may be used instead.
  355. */
  356. static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int dmv_no)
  357. {
  358. MpegEncContext *s = &r->s;
  359. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  360. int A[2] = {0}, B[2], C[2];
  361. int i, j;
  362. int mx, my;
  363. int avail_index = avail_indexes[subblock_no];
  364. int c_off = part_sizes_w[block_type];
  365. mv_pos += (subblock_no & 1) + (subblock_no >> 1)*s->b8_stride;
  366. if(subblock_no == 3)
  367. c_off = -1;
  368. if(r->avail_cache[avail_index - 1]){
  369. A[0] = s->current_picture_ptr->motion_val[0][mv_pos-1][0];
  370. A[1] = s->current_picture_ptr->motion_val[0][mv_pos-1][1];
  371. }
  372. if(r->avail_cache[avail_index - 4]){
  373. B[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride][0];
  374. B[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride][1];
  375. }else{
  376. B[0] = A[0];
  377. B[1] = A[1];
  378. }
  379. if(!r->avail_cache[avail_index - 4 + c_off]){
  380. if(r->avail_cache[avail_index - 4] && (r->avail_cache[avail_index - 1] || r->rv30)){
  381. C[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride-1][0];
  382. C[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride-1][1];
  383. }else{
  384. C[0] = A[0];
  385. C[1] = A[1];
  386. }
  387. }else{
  388. C[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride+c_off][0];
  389. C[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride+c_off][1];
  390. }
  391. mx = mid_pred(A[0], B[0], C[0]);
  392. my = mid_pred(A[1], B[1], C[1]);
  393. mx += r->dmv[dmv_no][0];
  394. my += r->dmv[dmv_no][1];
  395. for(j = 0; j < part_sizes_h[block_type]; j++){
  396. for(i = 0; i < part_sizes_w[block_type]; i++){
  397. s->current_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][0] = mx;
  398. s->current_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][1] = my;
  399. }
  400. }
  401. }
  402. #define GET_PTS_DIFF(a, b) ((a - b + 8192) & 0x1FFF)
  403. /**
  404. * Calculate motion vector component that should be added for direct blocks.
  405. */
  406. static int calc_add_mv(RV34DecContext *r, int dir, int val)
  407. {
  408. int refdist = GET_PTS_DIFF(r->next_pts, r->last_pts);
  409. int dist = dir ? -GET_PTS_DIFF(r->next_pts, r->cur_pts) : GET_PTS_DIFF(r->cur_pts, r->last_pts);
  410. int mul;
  411. if(!refdist) return 0;
  412. mul = (dist << 14) / refdist;
  413. return (val * mul + 0x2000) >> 14;
  414. }
  415. /**
  416. * Predict motion vector for B-frame macroblock.
  417. */
  418. static inline void rv34_pred_b_vector(int A[2], int B[2], int C[2],
  419. int A_avail, int B_avail, int C_avail,
  420. int *mx, int *my)
  421. {
  422. if(A_avail + B_avail + C_avail != 3){
  423. *mx = A[0] + B[0] + C[0];
  424. *my = A[1] + B[1] + C[1];
  425. if(A_avail + B_avail + C_avail == 2){
  426. *mx /= 2;
  427. *my /= 2;
  428. }
  429. }else{
  430. *mx = mid_pred(A[0], B[0], C[0]);
  431. *my = mid_pred(A[1], B[1], C[1]);
  432. }
  433. }
  434. /**
  435. * motion vector prediction for B-frames
  436. */
  437. static void rv34_pred_mv_b(RV34DecContext *r, int block_type, int dir)
  438. {
  439. MpegEncContext *s = &r->s;
  440. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  441. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  442. int A[2], B[2], C[2];
  443. int has_A = 0, has_B = 0, has_C = 0;
  444. int mx, my;
  445. int i, j;
  446. Picture *cur_pic = s->current_picture_ptr;
  447. const int mask = dir ? MB_TYPE_L1 : MB_TYPE_L0;
  448. int type = cur_pic->mb_type[mb_pos];
  449. memset(A, 0, sizeof(A));
  450. memset(B, 0, sizeof(B));
  451. memset(C, 0, sizeof(C));
  452. if((r->avail_cache[5-1] & type) & mask){
  453. A[0] = cur_pic->motion_val[dir][mv_pos - 1][0];
  454. A[1] = cur_pic->motion_val[dir][mv_pos - 1][1];
  455. has_A = 1;
  456. }
  457. if((r->avail_cache[5-4] & type) & mask){
  458. B[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride][0];
  459. B[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride][1];
  460. has_B = 1;
  461. }
  462. if((r->avail_cache[5-2] & type) & mask){
  463. C[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride + 2][0];
  464. C[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride + 2][1];
  465. has_C = 1;
  466. }else if((s->mb_x+1) == s->mb_width && (r->avail_cache[5-5] & type) & mask){
  467. C[0] = cur_pic->motion_val[dir][mv_pos - s->b8_stride - 1][0];
  468. C[1] = cur_pic->motion_val[dir][mv_pos - s->b8_stride - 1][1];
  469. has_C = 1;
  470. }
  471. rv34_pred_b_vector(A, B, C, has_A, has_B, has_C, &mx, &my);
  472. mx += r->dmv[dir][0];
  473. my += r->dmv[dir][1];
  474. for(j = 0; j < 2; j++){
  475. for(i = 0; i < 2; i++){
  476. cur_pic->motion_val[dir][mv_pos + i + j*s->b8_stride][0] = mx;
  477. cur_pic->motion_val[dir][mv_pos + i + j*s->b8_stride][1] = my;
  478. }
  479. }
  480. if(block_type == RV34_MB_B_BACKWARD || block_type == RV34_MB_B_FORWARD)
  481. fill_rectangle(cur_pic->motion_val[!dir][mv_pos], 2, 2, s->b8_stride, 0, 4);
  482. }
  483. /**
  484. * motion vector prediction - RV3 version
  485. */
  486. static void rv34_pred_mv_rv3(RV34DecContext *r, int block_type, int dir)
  487. {
  488. MpegEncContext *s = &r->s;
  489. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  490. int A[2] = {0}, B[2], C[2];
  491. int i, j;
  492. int mx, my;
  493. int avail_index = avail_indexes[0];
  494. if(r->avail_cache[avail_index - 1]){
  495. A[0] = s->current_picture_ptr->motion_val[0][mv_pos-1][0];
  496. A[1] = s->current_picture_ptr->motion_val[0][mv_pos-1][1];
  497. }
  498. if(r->avail_cache[avail_index - 4]){
  499. B[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride][0];
  500. B[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride][1];
  501. }else{
  502. B[0] = A[0];
  503. B[1] = A[1];
  504. }
  505. if(!r->avail_cache[avail_index - 4 + 2]){
  506. if(r->avail_cache[avail_index - 4] && (r->avail_cache[avail_index - 1])){
  507. C[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride-1][0];
  508. C[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride-1][1];
  509. }else{
  510. C[0] = A[0];
  511. C[1] = A[1];
  512. }
  513. }else{
  514. C[0] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride+2][0];
  515. C[1] = s->current_picture_ptr->motion_val[0][mv_pos-s->b8_stride+2][1];
  516. }
  517. mx = mid_pred(A[0], B[0], C[0]);
  518. my = mid_pred(A[1], B[1], C[1]);
  519. mx += r->dmv[0][0];
  520. my += r->dmv[0][1];
  521. for(j = 0; j < 2; j++){
  522. for(i = 0; i < 2; i++){
  523. s->current_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][0] = mx;
  524. s->current_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][1] = my;
  525. }
  526. }
  527. if(block_type == RV34_MB_B_BACKWARD || block_type == RV34_MB_B_FORWARD)
  528. fill_rectangle(s->current_picture_ptr->motion_val[!dir][mv_pos], 2, 2, s->b8_stride, 0, 4);
  529. }
  530. static const int chroma_coeffs[3] = { 0, 3, 5 };
  531. /**
  532. * generic motion compensation function
  533. *
  534. * @param r decoder context
  535. * @param block_type type of the current block
  536. * @param xoff horizontal offset from the start of the current block
  537. * @param yoff vertical offset from the start of the current block
  538. * @param mv_off offset to the motion vector information
  539. * @param width width of the current partition in 8x8 blocks
  540. * @param height height of the current partition in 8x8 blocks
  541. */
  542. static inline void rv34_mc(RV34DecContext *r, const int block_type,
  543. const int xoff, const int yoff, int mv_off,
  544. const int width, const int height, int dir,
  545. const int thirdpel,
  546. qpel_mc_func (*qpel_mc)[16],
  547. h264_chroma_mc_func (*chroma_mc))
  548. {
  549. MpegEncContext *s = &r->s;
  550. uint8_t *Y, *U, *V, *srcY, *srcU, *srcV;
  551. int dxy, mx, my, umx, umy, lx, ly, uvmx, uvmy, src_x, src_y, uvsrc_x, uvsrc_y;
  552. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride + mv_off;
  553. int is16x16 = 1;
  554. if(thirdpel){
  555. int chroma_mx, chroma_my;
  556. mx = (s->current_picture_ptr->motion_val[dir][mv_pos][0] + (3 << 24)) / 3 - (1 << 24);
  557. my = (s->current_picture_ptr->motion_val[dir][mv_pos][1] + (3 << 24)) / 3 - (1 << 24);
  558. lx = (s->current_picture_ptr->motion_val[dir][mv_pos][0] + (3 << 24)) % 3;
  559. ly = (s->current_picture_ptr->motion_val[dir][mv_pos][1] + (3 << 24)) % 3;
  560. chroma_mx = (s->current_picture_ptr->motion_val[dir][mv_pos][0] + 1) >> 1;
  561. chroma_my = (s->current_picture_ptr->motion_val[dir][mv_pos][1] + 1) >> 1;
  562. umx = (chroma_mx + (3 << 24)) / 3 - (1 << 24);
  563. umy = (chroma_my + (3 << 24)) / 3 - (1 << 24);
  564. uvmx = chroma_coeffs[(chroma_mx + (3 << 24)) % 3];
  565. uvmy = chroma_coeffs[(chroma_my + (3 << 24)) % 3];
  566. }else{
  567. int cx, cy;
  568. mx = s->current_picture_ptr->motion_val[dir][mv_pos][0] >> 2;
  569. my = s->current_picture_ptr->motion_val[dir][mv_pos][1] >> 2;
  570. lx = s->current_picture_ptr->motion_val[dir][mv_pos][0] & 3;
  571. ly = s->current_picture_ptr->motion_val[dir][mv_pos][1] & 3;
  572. cx = s->current_picture_ptr->motion_val[dir][mv_pos][0] / 2;
  573. cy = s->current_picture_ptr->motion_val[dir][mv_pos][1] / 2;
  574. umx = cx >> 2;
  575. umy = cy >> 2;
  576. uvmx = (cx & 3) << 1;
  577. uvmy = (cy & 3) << 1;
  578. //due to some flaw RV40 uses the same MC compensation routine for H2V2 and H3V3
  579. if(uvmx == 6 && uvmy == 6)
  580. uvmx = uvmy = 4;
  581. }
  582. dxy = ly*4 + lx;
  583. srcY = dir ? s->next_picture_ptr->data[0] : s->last_picture_ptr->data[0];
  584. srcU = dir ? s->next_picture_ptr->data[1] : s->last_picture_ptr->data[1];
  585. srcV = dir ? s->next_picture_ptr->data[2] : s->last_picture_ptr->data[2];
  586. src_x = s->mb_x * 16 + xoff + mx;
  587. src_y = s->mb_y * 16 + yoff + my;
  588. uvsrc_x = s->mb_x * 8 + (xoff >> 1) + umx;
  589. uvsrc_y = s->mb_y * 8 + (yoff >> 1) + umy;
  590. srcY += src_y * s->linesize + src_x;
  591. srcU += uvsrc_y * s->uvlinesize + uvsrc_x;
  592. srcV += uvsrc_y * s->uvlinesize + uvsrc_x;
  593. if( (unsigned)(src_x - !!lx*2) > s->h_edge_pos - !!lx*2 - (width <<3) - 4
  594. || (unsigned)(src_y - !!ly*2) > s->v_edge_pos - !!ly*2 - (height<<3) - 4){
  595. uint8_t *uvbuf= s->edge_emu_buffer + 22 * s->linesize;
  596. srcY -= 2 + 2*s->linesize;
  597. ff_emulated_edge_mc(s->edge_emu_buffer, srcY, s->linesize, (width<<3)+6, (height<<3)+6,
  598. src_x - 2, src_y - 2, s->h_edge_pos, s->v_edge_pos);
  599. srcY = s->edge_emu_buffer + 2 + 2*s->linesize;
  600. ff_emulated_edge_mc(uvbuf , srcU, s->uvlinesize, (width<<2)+1, (height<<2)+1,
  601. uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
  602. ff_emulated_edge_mc(uvbuf + 16, srcV, s->uvlinesize, (width<<2)+1, (height<<2)+1,
  603. uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
  604. srcU = uvbuf;
  605. srcV = uvbuf + 16;
  606. }
  607. Y = s->dest[0] + xoff + yoff *s->linesize;
  608. U = s->dest[1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  609. V = s->dest[2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  610. if(block_type == RV34_MB_P_16x8){
  611. qpel_mc[1][dxy](Y, srcY, s->linesize);
  612. Y += 8;
  613. srcY += 8;
  614. }else if(block_type == RV34_MB_P_8x16){
  615. qpel_mc[1][dxy](Y, srcY, s->linesize);
  616. Y += 8 * s->linesize;
  617. srcY += 8 * s->linesize;
  618. }
  619. is16x16 = (block_type != RV34_MB_P_8x8) && (block_type != RV34_MB_P_16x8) && (block_type != RV34_MB_P_8x16);
  620. qpel_mc[!is16x16][dxy](Y, srcY, s->linesize);
  621. chroma_mc[2-width] (U, srcU, s->uvlinesize, height*4, uvmx, uvmy);
  622. chroma_mc[2-width] (V, srcV, s->uvlinesize, height*4, uvmx, uvmy);
  623. }
  624. static void rv34_mc_1mv(RV34DecContext *r, const int block_type,
  625. const int xoff, const int yoff, int mv_off,
  626. const int width, const int height, int dir)
  627. {
  628. rv34_mc(r, block_type, xoff, yoff, mv_off, width, height, dir, r->rv30,
  629. r->rv30 ? r->s.dsp.put_rv30_tpel_pixels_tab
  630. : r->s.dsp.put_rv40_qpel_pixels_tab,
  631. r->rv30 ? r->s.dsp.put_h264_chroma_pixels_tab
  632. : r->s.dsp.put_rv40_chroma_pixels_tab);
  633. }
  634. static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
  635. {
  636. rv34_mc(r, block_type, 0, 0, 0, 2, 2, 0, r->rv30,
  637. r->rv30 ? r->s.dsp.put_rv30_tpel_pixels_tab
  638. : r->s.dsp.put_rv40_qpel_pixels_tab,
  639. r->rv30 ? r->s.dsp.put_h264_chroma_pixels_tab
  640. : r->s.dsp.put_rv40_chroma_pixels_tab);
  641. rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30,
  642. r->rv30 ? r->s.dsp.avg_rv30_tpel_pixels_tab
  643. : r->s.dsp.avg_rv40_qpel_pixels_tab,
  644. r->rv30 ? r->s.dsp.avg_h264_chroma_pixels_tab
  645. : r->s.dsp.avg_rv40_chroma_pixels_tab);
  646. }
  647. static void rv34_mc_2mv_skip(RV34DecContext *r)
  648. {
  649. int i, j;
  650. for(j = 0; j < 2; j++)
  651. for(i = 0; i < 2; i++){
  652. rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 0, r->rv30,
  653. r->rv30 ? r->s.dsp.put_rv30_tpel_pixels_tab
  654. : r->s.dsp.put_rv40_qpel_pixels_tab,
  655. r->rv30 ? r->s.dsp.put_h264_chroma_pixels_tab
  656. : r->s.dsp.put_rv40_chroma_pixels_tab);
  657. rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 1, r->rv30,
  658. r->rv30 ? r->s.dsp.avg_rv30_tpel_pixels_tab
  659. : r->s.dsp.avg_rv40_qpel_pixels_tab,
  660. r->rv30 ? r->s.dsp.avg_h264_chroma_pixels_tab
  661. : r->s.dsp.avg_rv40_chroma_pixels_tab);
  662. }
  663. }
  664. /** number of motion vectors in each macroblock type */
  665. static const int num_mvs[RV34_MB_TYPES] = { 0, 0, 1, 4, 1, 1, 0, 0, 2, 2, 2, 1 };
  666. /**
  667. * Decode motion vector differences
  668. * and perform motion vector reconstruction and motion compensation.
  669. */
  670. static int rv34_decode_mv(RV34DecContext *r, int block_type)
  671. {
  672. MpegEncContext *s = &r->s;
  673. GetBitContext *gb = &s->gb;
  674. int i, j, k, l;
  675. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  676. int next_bt;
  677. memset(r->dmv, 0, sizeof(r->dmv));
  678. for(i = 0; i < num_mvs[block_type]; i++){
  679. r->dmv[i][0] = svq3_get_se_golomb(gb);
  680. r->dmv[i][1] = svq3_get_se_golomb(gb);
  681. }
  682. switch(block_type){
  683. case RV34_MB_TYPE_INTRA:
  684. case RV34_MB_TYPE_INTRA16x16:
  685. fill_rectangle(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], 2, 2, s->b8_stride, 0, 4);
  686. return 0;
  687. case RV34_MB_SKIP:
  688. if(s->pict_type == FF_P_TYPE){
  689. fill_rectangle(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], 2, 2, s->b8_stride, 0, 4);
  690. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
  691. break;
  692. }
  693. case RV34_MB_B_DIRECT:
  694. //surprisingly, it uses motion scheme from next reference frame
  695. next_bt = s->next_picture_ptr->mb_type[s->mb_x + s->mb_y * s->mb_stride];
  696. for(j = 0; j < 2; j++)
  697. for(i = 0; i < 2; i++)
  698. for(k = 0; k < 2; k++)
  699. for(l = 0; l < 2; l++)
  700. s->current_picture_ptr->motion_val[l][mv_pos + i + j*s->b8_stride][k] = calc_add_mv(r, l, s->next_picture_ptr->motion_val[0][mv_pos + i + j*s->b8_stride][k]);
  701. if(IS_16X16(next_bt)) //we can use whole macroblock MC
  702. rv34_mc_2mv(r, block_type);
  703. else
  704. rv34_mc_2mv_skip(r);
  705. fill_rectangle(s->current_picture_ptr->motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], 2, 2, s->b8_stride, 0, 4);
  706. break;
  707. case RV34_MB_P_16x16:
  708. case RV34_MB_P_MIX16x16:
  709. rv34_pred_mv(r, block_type, 0, 0);
  710. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
  711. break;
  712. case RV34_MB_B_FORWARD:
  713. case RV34_MB_B_BACKWARD:
  714. r->dmv[1][0] = r->dmv[0][0];
  715. r->dmv[1][1] = r->dmv[0][1];
  716. if(r->rv30)
  717. rv34_pred_mv_rv3(r, block_type, block_type == RV34_MB_B_BACKWARD);
  718. else
  719. rv34_pred_mv_b (r, block_type, block_type == RV34_MB_B_BACKWARD);
  720. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, block_type == RV34_MB_B_BACKWARD);
  721. break;
  722. case RV34_MB_P_16x8:
  723. case RV34_MB_P_8x16:
  724. rv34_pred_mv(r, block_type, 0, 0);
  725. rv34_pred_mv(r, block_type, 1 + (block_type == RV34_MB_P_16x8), 1);
  726. if(block_type == RV34_MB_P_16x8){
  727. rv34_mc_1mv(r, block_type, 0, 0, 0, 2, 1, 0);
  728. rv34_mc_1mv(r, block_type, 0, 8, s->b8_stride, 2, 1, 0);
  729. }
  730. if(block_type == RV34_MB_P_8x16){
  731. rv34_mc_1mv(r, block_type, 0, 0, 0, 1, 2, 0);
  732. rv34_mc_1mv(r, block_type, 8, 0, 1, 1, 2, 0);
  733. }
  734. break;
  735. case RV34_MB_B_BIDIR:
  736. rv34_pred_mv_b (r, block_type, 0);
  737. rv34_pred_mv_b (r, block_type, 1);
  738. rv34_mc_2mv (r, block_type);
  739. break;
  740. case RV34_MB_P_8x8:
  741. for(i=0;i< 4;i++){
  742. rv34_pred_mv(r, block_type, i, i);
  743. rv34_mc_1mv (r, block_type, (i&1)<<3, (i&2)<<2, (i&1)+(i>>1)*s->b8_stride, 1, 1, 0);
  744. }
  745. break;
  746. }
  747. return 0;
  748. }
  749. /** @} */ // mv group
  750. /**
  751. * @defgroup recons Macroblock reconstruction functions
  752. * @{
  753. */
  754. /** mapping of RV30/40 intra prediction types to standard H.264 types */
  755. static const int ittrans[9] = {
  756. DC_PRED, VERT_PRED, HOR_PRED, DIAG_DOWN_RIGHT_PRED, DIAG_DOWN_LEFT_PRED,
  757. VERT_RIGHT_PRED, VERT_LEFT_PRED, HOR_UP_PRED, HOR_DOWN_PRED,
  758. };
  759. /** mapping of RV30/40 intra 16x16 prediction types to standard H.264 types */
  760. static const int ittrans16[4] = {
  761. DC_PRED8x8, VERT_PRED8x8, HOR_PRED8x8, PLANE_PRED8x8,
  762. };
  763. /**
  764. * Perform 4x4 intra prediction.
  765. */
  766. static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
  767. {
  768. uint8_t *prev = dst - stride + 4;
  769. uint32_t topleft;
  770. if(!up && !left)
  771. itype = DC_128_PRED;
  772. else if(!up){
  773. if(itype == VERT_PRED) itype = HOR_PRED;
  774. if(itype == DC_PRED) itype = LEFT_DC_PRED;
  775. }else if(!left){
  776. if(itype == HOR_PRED) itype = VERT_PRED;
  777. if(itype == DC_PRED) itype = TOP_DC_PRED;
  778. if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
  779. }
  780. if(!down){
  781. if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
  782. if(itype == HOR_UP_PRED) itype = HOR_UP_PRED_RV40_NODOWN;
  783. if(itype == VERT_LEFT_PRED) itype = VERT_LEFT_PRED_RV40_NODOWN;
  784. }
  785. if(!right && up){
  786. topleft = dst[-stride + 3] * 0x01010101;
  787. prev = &topleft;
  788. }
  789. r->h.pred4x4[itype](dst, prev, stride);
  790. }
  791. /** add_pixels_clamped for 4x4 block */
  792. static void rv34_add_4x4_block(uint8_t *dst, int stride, DCTELEM block[64], int off)
  793. {
  794. int x, y;
  795. for(y = 0; y < 4; y++)
  796. for(x = 0; x < 4; x++)
  797. dst[x + y*stride] = av_clip_uint8(dst[x + y*stride] + block[off + x+y*8]);
  798. }
  799. static inline int adjust_pred16(int itype, int up, int left)
  800. {
  801. if(!up && !left)
  802. itype = DC_128_PRED8x8;
  803. else if(!up){
  804. if(itype == PLANE_PRED8x8)itype = HOR_PRED8x8;
  805. if(itype == VERT_PRED8x8) itype = HOR_PRED8x8;
  806. if(itype == DC_PRED8x8) itype = LEFT_DC_PRED8x8;
  807. }else if(!left){
  808. if(itype == PLANE_PRED8x8)itype = VERT_PRED8x8;
  809. if(itype == HOR_PRED8x8) itype = VERT_PRED8x8;
  810. if(itype == DC_PRED8x8) itype = TOP_DC_PRED8x8;
  811. }
  812. return itype;
  813. }
  814. static void rv34_output_macroblock(RV34DecContext *r, int8_t *intra_types, int cbp, int is16)
  815. {
  816. MpegEncContext *s = &r->s;
  817. DSPContext *dsp = &s->dsp;
  818. int i, j;
  819. uint8_t *Y, *U, *V;
  820. int itype;
  821. int avail[6*8] = {0};
  822. int idx;
  823. // Set neighbour information.
  824. if(r->avail_cache[0])
  825. avail[0] = 1;
  826. if(r->avail_cache[1])
  827. avail[1] = avail[2] = 1;
  828. if(r->avail_cache[2])
  829. avail[3] = avail[4] = 1;
  830. if(r->avail_cache[3])
  831. avail[5] = 1;
  832. if(r->avail_cache[4])
  833. avail[8] = avail[16] = 1;
  834. if(r->avail_cache[8])
  835. avail[24] = avail[32] = 1;
  836. Y = s->dest[0];
  837. U = s->dest[1];
  838. V = s->dest[2];
  839. if(!is16){
  840. for(j = 0; j < 4; j++){
  841. idx = 9 + j*8;
  842. for(i = 0; i < 4; i++, cbp >>= 1, Y += 4, idx++){
  843. rv34_pred_4x4_block(r, Y, s->linesize, ittrans[intra_types[i]], avail[idx-8], avail[idx-1], avail[idx+7], avail[idx-7]);
  844. avail[idx] = 1;
  845. if(cbp & 1)
  846. rv34_add_4x4_block(Y, s->linesize, s->block[(i>>1)+(j&2)], (i&1)*4+(j&1)*32);
  847. }
  848. Y += s->linesize * 4 - 4*4;
  849. intra_types += s->b4_stride;
  850. }
  851. intra_types -= s->b4_stride * 4;
  852. fill_rectangle(r->avail_cache + 5, 2, 2, 4, 0, 4);
  853. for(j = 0; j < 2; j++){
  854. idx = 5 + j*4;
  855. for(i = 0; i < 2; i++, cbp >>= 1, idx++){
  856. rv34_pred_4x4_block(r, U + i*4 + j*4*s->uvlinesize, s->uvlinesize, ittrans[intra_types[i*2+j*2*s->b4_stride]], r->avail_cache[idx-4], r->avail_cache[idx-1], !i && !j, r->avail_cache[idx-3]);
  857. rv34_pred_4x4_block(r, V + i*4 + j*4*s->uvlinesize, s->uvlinesize, ittrans[intra_types[i*2+j*2*s->b4_stride]], r->avail_cache[idx-4], r->avail_cache[idx-1], !i && !j, r->avail_cache[idx-3]);
  858. r->avail_cache[idx] = 1;
  859. if(cbp & 0x01)
  860. rv34_add_4x4_block(U + i*4 + j*4*s->uvlinesize, s->uvlinesize, s->block[4], i*4+j*32);
  861. if(cbp & 0x10)
  862. rv34_add_4x4_block(V + i*4 + j*4*s->uvlinesize, s->uvlinesize, s->block[5], i*4+j*32);
  863. }
  864. }
  865. }else{
  866. itype = ittrans16[intra_types[0]];
  867. itype = adjust_pred16(itype, r->avail_cache[5-4], r->avail_cache[5-1]);
  868. r->h.pred16x16[itype](Y, s->linesize);
  869. dsp->add_pixels_clamped(s->block[0], Y, s->linesize);
  870. dsp->add_pixels_clamped(s->block[1], Y + 8, s->linesize);
  871. Y += s->linesize * 8;
  872. dsp->add_pixels_clamped(s->block[2], Y, s->linesize);
  873. dsp->add_pixels_clamped(s->block[3], Y + 8, s->linesize);
  874. itype = ittrans16[intra_types[0]];
  875. if(itype == PLANE_PRED8x8) itype = DC_PRED8x8;
  876. itype = adjust_pred16(itype, r->avail_cache[5-4], r->avail_cache[5-1]);
  877. r->h.pred8x8[itype](U, s->uvlinesize);
  878. dsp->add_pixels_clamped(s->block[4], U, s->uvlinesize);
  879. r->h.pred8x8[itype](V, s->uvlinesize);
  880. dsp->add_pixels_clamped(s->block[5], V, s->uvlinesize);
  881. }
  882. }
  883. /** @} */ // recons group
  884. /**
  885. * @addtogroup bitstream
  886. * Decode macroblock header and return CBP in case of success, -1 otherwise.
  887. */
  888. static int rv34_decode_mb_header(RV34DecContext *r, int8_t *intra_types)
  889. {
  890. MpegEncContext *s = &r->s;
  891. GetBitContext *gb = &s->gb;
  892. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  893. int i, t;
  894. if(!r->si.type){
  895. r->is16 = get_bits1(gb);
  896. if(!r->is16 && !r->rv30){
  897. if(!get_bits1(gb))
  898. av_log(s->avctx, AV_LOG_ERROR, "Need DQUANT\n");
  899. }
  900. s->current_picture_ptr->mb_type[mb_pos] = r->is16 ? MB_TYPE_INTRA16x16 : MB_TYPE_INTRA;
  901. r->block_type = r->is16 ? RV34_MB_TYPE_INTRA16x16 : RV34_MB_TYPE_INTRA;
  902. }else{
  903. r->block_type = r->decode_mb_info(r);
  904. if(r->block_type == -1)
  905. return -1;
  906. s->current_picture_ptr->mb_type[mb_pos] = rv34_mb_type_to_lavc[r->block_type];
  907. r->mb_type[mb_pos] = r->block_type;
  908. if(r->block_type == RV34_MB_SKIP){
  909. if(s->pict_type == FF_P_TYPE)
  910. r->mb_type[mb_pos] = RV34_MB_P_16x16;
  911. if(s->pict_type == FF_B_TYPE)
  912. r->mb_type[mb_pos] = RV34_MB_B_DIRECT;
  913. }
  914. r->is16 = !!IS_INTRA16x16(s->current_picture_ptr->mb_type[mb_pos]);
  915. rv34_decode_mv(r, r->block_type);
  916. if(r->block_type == RV34_MB_SKIP){
  917. fill_rectangle(intra_types, 4, 4, s->b4_stride, 0, sizeof(intra_types[0]));
  918. return 0;
  919. }
  920. r->chroma_vlc = 1;
  921. r->luma_vlc = 0;
  922. }
  923. if(IS_INTRA(s->current_picture_ptr->mb_type[mb_pos])){
  924. if(r->is16){
  925. t = get_bits(gb, 2);
  926. fill_rectangle(intra_types, 4, 4, s->b4_stride, t, sizeof(intra_types[0]));
  927. r->luma_vlc = 2;
  928. }else{
  929. if(r->decode_intra_types(r, gb, intra_types) < 0)
  930. return -1;
  931. r->luma_vlc = 1;
  932. }
  933. r->chroma_vlc = 0;
  934. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
  935. }else{
  936. for(i = 0; i < 16; i++)
  937. intra_types[(i & 3) + (i>>2) * s->b4_stride] = 0;
  938. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
  939. if(r->mb_type[mb_pos] == RV34_MB_P_MIX16x16){
  940. r->is16 = 1;
  941. r->chroma_vlc = 1;
  942. r->luma_vlc = 2;
  943. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
  944. }
  945. }
  946. return rv34_decode_cbp(gb, r->cur_vlcs, r->is16);
  947. }
  948. /**
  949. * @addtogroup recons
  950. * @{
  951. */
  952. /**
  953. * mask for retrieving all bits in coded block pattern
  954. * corresponding to one 8x8 block
  955. */
  956. #define LUMA_CBP_BLOCK_MASK 0x33
  957. #define U_CBP_MASK 0x0F0000
  958. #define V_CBP_MASK 0xF00000
  959. static void rv34_apply_differences(RV34DecContext *r, int cbp)
  960. {
  961. static const int shifts[4] = { 0, 2, 8, 10 };
  962. MpegEncContext *s = &r->s;
  963. int i;
  964. for(i = 0; i < 4; i++)
  965. if((cbp & (LUMA_CBP_BLOCK_MASK << shifts[i])) || r->block_type == RV34_MB_P_MIX16x16)
  966. s->dsp.add_pixels_clamped(s->block[i], s->dest[0] + (i & 1)*8 + (i&2)*4*s->linesize, s->linesize);
  967. if(cbp & U_CBP_MASK)
  968. s->dsp.add_pixels_clamped(s->block[4], s->dest[1], s->uvlinesize);
  969. if(cbp & V_CBP_MASK)
  970. s->dsp.add_pixels_clamped(s->block[5], s->dest[2], s->uvlinesize);
  971. }
  972. static int is_mv_diff_gt_3(int16_t (*motion_val)[2], int step)
  973. {
  974. int d;
  975. d = motion_val[0][0] - motion_val[-step][0];
  976. if(d < -3 || d > 3)
  977. return 1;
  978. d = motion_val[0][1] - motion_val[-step][1];
  979. if(d < -3 || d > 3)
  980. return 1;
  981. return 0;
  982. }
  983. static int rv34_set_deblock_coef(RV34DecContext *r)
  984. {
  985. MpegEncContext *s = &r->s;
  986. int hmvmask = 0, vmvmask = 0, i, j;
  987. int midx = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  988. int16_t (*motion_val)[2] = s->current_picture_ptr->motion_val[0][midx];
  989. for(j = 0; j < 16; j += 8){
  990. for(i = 0; i < 2; i++){
  991. if(is_mv_diff_gt_3(motion_val + i, 1))
  992. vmvmask |= 0x11 << (j + i*2);
  993. if((j || s->mb_y) && is_mv_diff_gt_3(motion_val + i, s->b8_stride))
  994. hmvmask |= 0x03 << (j + i*2);
  995. }
  996. motion_val += s->b8_stride;
  997. }
  998. if(s->first_slice_line)
  999. hmvmask &= ~0x000F;
  1000. if(!s->mb_x)
  1001. vmvmask &= ~0x1111;
  1002. return hmvmask | vmvmask; //XXX: should be stored separately for RV3
  1003. }
  1004. static int rv34_decode_macroblock(RV34DecContext *r, int8_t *intra_types)
  1005. {
  1006. MpegEncContext *s = &r->s;
  1007. GetBitContext *gb = &s->gb;
  1008. int cbp, cbp2;
  1009. int i, blknum, blkoff;
  1010. DCTELEM block16[64];
  1011. int luma_dc_quant;
  1012. int dist;
  1013. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  1014. // Calculate which neighbours are available. Maybe it's worth optimizing too.
  1015. memset(r->avail_cache, 0, sizeof(r->avail_cache));
  1016. fill_rectangle(r->avail_cache + 5, 2, 2, 4, 1, 4);
  1017. dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
  1018. if(s->mb_x && dist)
  1019. r->avail_cache[4] =
  1020. r->avail_cache[8] = s->current_picture_ptr->mb_type[mb_pos - 1];
  1021. if(dist >= s->mb_width)
  1022. r->avail_cache[1] =
  1023. r->avail_cache[2] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride];
  1024. if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
  1025. r->avail_cache[3] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride + 1];
  1026. if(s->mb_x && dist > s->mb_width)
  1027. r->avail_cache[0] = s->current_picture_ptr->mb_type[mb_pos - s->mb_stride - 1];
  1028. s->qscale = r->si.quant;
  1029. cbp = cbp2 = rv34_decode_mb_header(r, intra_types);
  1030. r->cbp_luma [s->mb_x + s->mb_y * s->mb_stride] = cbp;
  1031. r->cbp_chroma[s->mb_x + s->mb_y * s->mb_stride] = cbp >> 16;
  1032. if(s->pict_type == FF_I_TYPE)
  1033. r->deblock_coefs[mb_pos] = 0;
  1034. else
  1035. r->deblock_coefs[mb_pos] = rv34_set_deblock_coef(r);
  1036. s->current_picture_ptr->qscale_table[s->mb_x + s->mb_y * s->mb_stride] = s->qscale;
  1037. if(cbp == -1)
  1038. return -1;
  1039. luma_dc_quant = r->block_type == RV34_MB_P_MIX16x16 ? r->luma_dc_quant_p[s->qscale] : r->luma_dc_quant_i[s->qscale];
  1040. if(r->is16){
  1041. memset(block16, 0, sizeof(block16));
  1042. rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0);
  1043. rv34_dequant4x4_16x16(block16, rv34_qscale_tab[luma_dc_quant],rv34_qscale_tab[s->qscale]);
  1044. rv34_inv_transform_noround(block16);
  1045. }
  1046. for(i = 0; i < 16; i++, cbp >>= 1){
  1047. if(!r->is16 && !(cbp & 1)) continue;
  1048. blknum = ((i & 2) >> 1) + ((i & 8) >> 2);
  1049. blkoff = ((i & 1) << 2) + ((i & 4) << 3);
  1050. if(cbp & 1)
  1051. rv34_decode_block(s->block[blknum] + blkoff, gb, r->cur_vlcs, r->luma_vlc, 0);
  1052. rv34_dequant4x4(s->block[blknum] + blkoff, rv34_qscale_tab[s->qscale],rv34_qscale_tab[s->qscale]);
  1053. if(r->is16) //FIXME: optimize
  1054. s->block[blknum][blkoff] = block16[(i & 3) | ((i & 0xC) << 1)];
  1055. rv34_inv_transform(s->block[blknum] + blkoff);
  1056. }
  1057. if(r->block_type == RV34_MB_P_MIX16x16)
  1058. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
  1059. for(; i < 24; i++, cbp >>= 1){
  1060. if(!(cbp & 1)) continue;
  1061. blknum = ((i & 4) >> 2) + 4;
  1062. blkoff = ((i & 1) << 2) + ((i & 2) << 4);
  1063. rv34_decode_block(s->block[blknum] + blkoff, gb, r->cur_vlcs, r->chroma_vlc, 1);
  1064. rv34_dequant4x4(s->block[blknum] + blkoff, rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]],rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]]);
  1065. rv34_inv_transform(s->block[blknum] + blkoff);
  1066. }
  1067. if(IS_INTRA(s->current_picture_ptr->mb_type[s->mb_x + s->mb_y*s->mb_stride]))
  1068. rv34_output_macroblock(r, intra_types, cbp2, r->is16);
  1069. else
  1070. rv34_apply_differences(r, cbp2);
  1071. return 0;
  1072. }
  1073. static int check_slice_end(RV34DecContext *r, MpegEncContext *s)
  1074. {
  1075. int bits;
  1076. if(s->mb_y >= s->mb_height)
  1077. return 1;
  1078. if(!s->mb_num_left)
  1079. return 1;
  1080. if(r->s.mb_skip_run > 1)
  1081. return 0;
  1082. bits = r->bits - get_bits_count(&s->gb);
  1083. if(bits < 0 || (bits < 8 && !show_bits(&s->gb, bits)))
  1084. return 1;
  1085. return 0;
  1086. }
  1087. static inline int slice_compare(SliceInfo *si1, SliceInfo *si2)
  1088. {
  1089. return si1->type != si2->type ||
  1090. si1->start >= si2->start ||
  1091. si1->width != si2->width ||
  1092. si1->height != si2->height||
  1093. si1->pts != si2->pts;
  1094. }
  1095. static int rv34_decode_slice(RV34DecContext *r, int end, uint8_t* buf, int buf_size)
  1096. {
  1097. MpegEncContext *s = &r->s;
  1098. GetBitContext *gb = &s->gb;
  1099. int mb_pos;
  1100. int res;
  1101. init_get_bits(&r->s.gb, buf, buf_size*8);
  1102. res = r->parse_slice_header(r, gb, &r->si);
  1103. if(res < 0){
  1104. av_log(s->avctx, AV_LOG_ERROR, "Incorrect or unknown slice header\n");
  1105. return -1;
  1106. }
  1107. if ((s->mb_x == 0 && s->mb_y == 0) || s->current_picture_ptr==NULL) {
  1108. if(s->width != r->si.width || s->height != r->si.height){
  1109. av_log(s->avctx, AV_LOG_DEBUG, "Changing dimensions to %dx%d\n", r->si.width,r->si.height);
  1110. MPV_common_end(s);
  1111. s->width = r->si.width;
  1112. s->height = r->si.height;
  1113. if(MPV_common_init(s) < 0)
  1114. return -1;
  1115. r->intra_types_hist = av_realloc(r->intra_types_hist, s->b4_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1116. r->intra_types = r->intra_types_hist + s->b4_stride * 4;
  1117. r->mb_type = av_realloc(r->mb_type, r->s.mb_stride * r->s.mb_height * sizeof(*r->mb_type));
  1118. r->cbp_luma = av_realloc(r->cbp_luma, r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_luma));
  1119. r->cbp_chroma = av_realloc(r->cbp_chroma, r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_chroma));
  1120. r->deblock_coefs = av_realloc(r->deblock_coefs, r->s.mb_stride * r->s.mb_height * sizeof(*r->deblock_coefs));
  1121. }
  1122. s->pict_type = r->si.type ? r->si.type : FF_I_TYPE;
  1123. if(MPV_frame_start(s, s->avctx) < 0)
  1124. return -1;
  1125. ff_er_frame_start(s);
  1126. r->cur_pts = r->si.pts;
  1127. if(s->pict_type != FF_B_TYPE){
  1128. r->last_pts = r->next_pts;
  1129. r->next_pts = r->cur_pts;
  1130. }
  1131. s->mb_x = s->mb_y = 0;
  1132. }
  1133. r->si.end = end;
  1134. s->qscale = r->si.quant;
  1135. r->bits = buf_size*8;
  1136. s->mb_num_left = r->si.end - r->si.start;
  1137. r->s.mb_skip_run = 0;
  1138. mb_pos = s->mb_x + s->mb_y * s->mb_width;
  1139. if(r->si.start != mb_pos){
  1140. av_log(s->avctx, AV_LOG_ERROR, "Slice indicates MB offset %d, got %d\n", r->si.start, mb_pos);
  1141. s->mb_x = r->si.start % s->mb_width;
  1142. s->mb_y = r->si.start / s->mb_width;
  1143. }
  1144. memset(r->intra_types_hist, -1, s->b4_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1145. s->first_slice_line = 1;
  1146. s->resync_mb_x= s->mb_x;
  1147. s->resync_mb_y= s->mb_y;
  1148. ff_init_block_index(s);
  1149. while(!check_slice_end(r, s)) {
  1150. ff_update_block_index(s);
  1151. s->dsp.clear_blocks(s->block[0]);
  1152. if(rv34_decode_macroblock(r, r->intra_types + s->mb_x * 4 + 1) < 0){
  1153. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_ERROR|DC_ERROR|MV_ERROR);
  1154. return -1;
  1155. }
  1156. if (++s->mb_x == s->mb_width) {
  1157. s->mb_x = 0;
  1158. s->mb_y++;
  1159. ff_init_block_index(s);
  1160. memmove(r->intra_types_hist, r->intra_types, s->b4_stride * 4 * sizeof(*r->intra_types_hist));
  1161. memset(r->intra_types, -1, s->b4_stride * 4 * sizeof(*r->intra_types_hist));
  1162. if(r->loop_filter && s->mb_y >= 2)
  1163. r->loop_filter(r, s->mb_y - 2);
  1164. }
  1165. if(s->mb_x == s->resync_mb_x)
  1166. s->first_slice_line=0;
  1167. s->mb_num_left--;
  1168. }
  1169. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, AC_END|DC_END|MV_END);
  1170. return s->mb_y == s->mb_height;
  1171. }
  1172. /** @} */ // recons group end
  1173. /**
  1174. * Initialize decoder.
  1175. */
  1176. av_cold int ff_rv34_decode_init(AVCodecContext *avctx)
  1177. {
  1178. RV34DecContext *r = avctx->priv_data;
  1179. MpegEncContext *s = &r->s;
  1180. MPV_decode_defaults(s);
  1181. s->avctx= avctx;
  1182. s->out_format = FMT_H263;
  1183. s->codec_id= avctx->codec_id;
  1184. s->width = avctx->width;
  1185. s->height = avctx->height;
  1186. r->s.avctx = avctx;
  1187. avctx->flags |= CODEC_FLAG_EMU_EDGE;
  1188. r->s.flags |= CODEC_FLAG_EMU_EDGE;
  1189. avctx->pix_fmt = PIX_FMT_YUV420P;
  1190. avctx->has_b_frames = 1;
  1191. s->low_delay = 0;
  1192. if (MPV_common_init(s) < 0)
  1193. return -1;
  1194. ff_h264_pred_init(&r->h, CODEC_ID_RV40);
  1195. r->intra_types_hist = av_malloc(s->b4_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1196. r->intra_types = r->intra_types_hist + s->b4_stride * 4;
  1197. r->mb_type = av_mallocz(r->s.mb_stride * r->s.mb_height * sizeof(*r->mb_type));
  1198. r->cbp_luma = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_luma));
  1199. r->cbp_chroma = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_chroma));
  1200. r->deblock_coefs = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->deblock_coefs));
  1201. if(!intra_vlcs[0].cbppattern[0].bits)
  1202. rv34_init_tables();
  1203. return 0;
  1204. }
  1205. static int get_slice_offset(AVCodecContext *avctx, uint8_t *buf, int n)
  1206. {
  1207. if(avctx->slice_count) return avctx->slice_offset[n];
  1208. else return AV_RL32(buf + n*8 - 4) == 1 ? AV_RL32(buf + n*8) : AV_RB32(buf + n*8);
  1209. }
  1210. int ff_rv34_decode_frame(AVCodecContext *avctx,
  1211. void *data, int *data_size,
  1212. const uint8_t *buf, int buf_size)
  1213. {
  1214. RV34DecContext *r = avctx->priv_data;
  1215. MpegEncContext *s = &r->s;
  1216. AVFrame *pict = data;
  1217. SliceInfo si;
  1218. int i;
  1219. int slice_count;
  1220. uint8_t *slices_hdr = NULL;
  1221. int last = 0;
  1222. /* no supplementary picture */
  1223. if (buf_size == 0) {
  1224. /* special case for last picture */
  1225. if (s->low_delay==0 && s->next_picture_ptr) {
  1226. *pict= *(AVFrame*)s->next_picture_ptr;
  1227. s->next_picture_ptr= NULL;
  1228. *data_size = sizeof(AVFrame);
  1229. }
  1230. return 0;
  1231. }
  1232. if(!avctx->slice_count){
  1233. slice_count = (*buf++) + 1;
  1234. slices_hdr = buf + 4;
  1235. buf += 8 * slice_count;
  1236. }else
  1237. slice_count = avctx->slice_count;
  1238. for(i=0; i<slice_count; i++){
  1239. int offset= get_slice_offset(avctx, slices_hdr, i);
  1240. int size;
  1241. if(i+1 == slice_count)
  1242. size= buf_size - offset;
  1243. else
  1244. size= get_slice_offset(avctx, slices_hdr, i+1) - offset;
  1245. if(offset > buf_size){
  1246. av_log(avctx, AV_LOG_ERROR, "Slice offset is greater than frame size\n");
  1247. break;
  1248. }
  1249. r->si.end = s->mb_width * s->mb_height;
  1250. if(i+1 < slice_count){
  1251. init_get_bits(&s->gb, buf+get_slice_offset(avctx, slices_hdr, i+1), (buf_size-get_slice_offset(avctx, slices_hdr, i+1))*8);
  1252. if(r->parse_slice_header(r, &r->s.gb, &si) < 0){
  1253. if(i+2 < slice_count)
  1254. size = get_slice_offset(avctx, slices_hdr, i+2) - offset;
  1255. else
  1256. size = buf_size - offset;
  1257. }else
  1258. r->si.end = si.start;
  1259. }
  1260. if(!i && si.type == FF_B_TYPE && (!s->last_picture_ptr || !s->last_picture_ptr->data[0]))
  1261. return -1;
  1262. last = rv34_decode_slice(r, r->si.end, buf + offset, size);
  1263. s->mb_num_left = r->s.mb_x + r->s.mb_y*r->s.mb_width - r->si.start;
  1264. if(last)
  1265. break;
  1266. }
  1267. if(last){
  1268. if(r->loop_filter)
  1269. r->loop_filter(r, s->mb_height - 1);
  1270. ff_er_frame_end(s);
  1271. MPV_frame_end(s);
  1272. if (s->pict_type == FF_B_TYPE || s->low_delay) {
  1273. *pict= *(AVFrame*)s->current_picture_ptr;
  1274. } else if (s->last_picture_ptr != NULL) {
  1275. *pict= *(AVFrame*)s->last_picture_ptr;
  1276. }
  1277. if(s->last_picture_ptr || s->low_delay){
  1278. *data_size = sizeof(AVFrame);
  1279. ff_print_debug_info(s, pict);
  1280. }
  1281. s->current_picture_ptr= NULL; //so we can detect if frame_end wasnt called (find some nicer solution...)
  1282. }
  1283. return buf_size;
  1284. }
  1285. av_cold int ff_rv34_decode_end(AVCodecContext *avctx)
  1286. {
  1287. RV34DecContext *r = avctx->priv_data;
  1288. MPV_common_end(&r->s);
  1289. av_freep(&r->intra_types_hist);
  1290. r->intra_types = NULL;
  1291. av_freep(&r->mb_type);
  1292. av_freep(&r->cbp_luma);
  1293. av_freep(&r->cbp_chroma);
  1294. av_freep(&r->deblock_coefs);
  1295. return 0;
  1296. }