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.

1587 lines
57KB

  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
  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 "mathops.h"
  30. #include "rectangle.h"
  31. #include "rv34vlc.h"
  32. #include "rv34data.h"
  33. #include "rv34.h"
  34. //#define DEBUG
  35. static inline void ZERO8x2(void* dst, int stride)
  36. {
  37. fill_rectangle(dst, 1, 2, stride, 0, 4);
  38. fill_rectangle(((uint8_t*)(dst))+4, 1, 2, stride, 0, 4);
  39. }
  40. /** translation of RV30/40 macroblock types to lavc ones */
  41. static const int rv34_mb_type_to_lavc[12] = {
  42. MB_TYPE_INTRA,
  43. MB_TYPE_INTRA16x16 | MB_TYPE_SEPARATE_DC,
  44. MB_TYPE_16x16 | MB_TYPE_L0,
  45. MB_TYPE_8x8 | MB_TYPE_L0,
  46. MB_TYPE_16x16 | MB_TYPE_L0,
  47. MB_TYPE_16x16 | MB_TYPE_L1,
  48. MB_TYPE_SKIP,
  49. MB_TYPE_DIRECT2 | MB_TYPE_16x16,
  50. MB_TYPE_16x8 | MB_TYPE_L0,
  51. MB_TYPE_8x16 | MB_TYPE_L0,
  52. MB_TYPE_16x16 | MB_TYPE_L0L1,
  53. MB_TYPE_16x16 | MB_TYPE_L0 | MB_TYPE_SEPARATE_DC
  54. };
  55. static RV34VLC intra_vlcs[NUM_INTRA_TABLES], inter_vlcs[NUM_INTER_TABLES];
  56. static int rv34_decode_mv(RV34DecContext *r, int block_type);
  57. /**
  58. * @name RV30/40 VLC generating functions
  59. * @{
  60. */
  61. static const int table_offs[] = {
  62. 0, 1818, 3622, 4144, 4698, 5234, 5804, 5868, 5900, 5932,
  63. 5996, 6252, 6316, 6348, 6380, 7674, 8944, 10274, 11668, 12250,
  64. 14060, 15846, 16372, 16962, 17512, 18148, 18180, 18212, 18244, 18308,
  65. 18564, 18628, 18660, 18692, 20036, 21314, 22648, 23968, 24614, 26384,
  66. 28190, 28736, 29366, 29938, 30608, 30640, 30672, 30704, 30768, 31024,
  67. 31088, 31120, 31184, 32570, 33898, 35236, 36644, 37286, 39020, 40802,
  68. 41368, 42052, 42692, 43348, 43380, 43412, 43444, 43476, 43604, 43668,
  69. 43700, 43732, 45100, 46430, 47778, 49160, 49802, 51550, 53340, 53972,
  70. 54648, 55348, 55994, 56122, 56154, 56186, 56218, 56346, 56410, 56442,
  71. 56474, 57878, 59290, 60636, 62036, 62682, 64460, 64524, 64588, 64716,
  72. 64844, 66076, 67466, 67978, 68542, 69064, 69648, 70296, 72010, 72074,
  73. 72138, 72202, 72330, 73572, 74936, 75454, 76030, 76566, 77176, 77822,
  74. 79582, 79646, 79678, 79742, 79870, 81180, 82536, 83064, 83672, 84242,
  75. 84934, 85576, 87384, 87448, 87480, 87544, 87672, 88982, 90340, 90902,
  76. 91598, 92182, 92846, 93488, 95246, 95278, 95310, 95374, 95502, 96878,
  77. 98266, 98848, 99542, 100234, 100884, 101524, 103320, 103352, 103384, 103416,
  78. 103480, 104874, 106222, 106910, 107584, 108258, 108902, 109544, 111366, 111398,
  79. 111430, 111462, 111494, 112878, 114320, 114988, 115660, 116310, 116950, 117592
  80. };
  81. static VLC_TYPE table_data[117592][2];
  82. /**
  83. * Generate VLC from codeword lengths.
  84. * @param bits codeword lengths (zeroes are accepted)
  85. * @param size length of input data
  86. * @param vlc output VLC
  87. * @param insyms symbols for input codes (NULL for default ones)
  88. * @param num VLC table number (for static initialization)
  89. */
  90. static void rv34_gen_vlc(const uint8_t *bits, int size, VLC *vlc, const uint8_t *insyms,
  91. const int num)
  92. {
  93. int i;
  94. int counts[17] = {0}, codes[17];
  95. uint16_t cw[MAX_VLC_SIZE], syms[MAX_VLC_SIZE];
  96. uint8_t bits2[MAX_VLC_SIZE];
  97. int maxbits = 0, realsize = 0;
  98. for(i = 0; i < size; i++){
  99. if(bits[i]){
  100. bits2[realsize] = bits[i];
  101. syms[realsize] = insyms ? insyms[i] : i;
  102. realsize++;
  103. maxbits = FFMAX(maxbits, bits[i]);
  104. counts[bits[i]]++;
  105. }
  106. }
  107. codes[0] = 0;
  108. for(i = 0; i < 16; i++)
  109. codes[i+1] = (codes[i] + counts[i]) << 1;
  110. for(i = 0; i < realsize; i++)
  111. cw[i] = codes[bits2[i]]++;
  112. vlc->table = &table_data[table_offs[num]];
  113. vlc->table_allocated = table_offs[num + 1] - table_offs[num];
  114. init_vlc_sparse(vlc, FFMIN(maxbits, 9), realsize,
  115. bits2, 1, 1,
  116. cw, 2, 2,
  117. syms, 2, 2, INIT_VLC_USE_NEW_STATIC);
  118. }
  119. /**
  120. * Initialize all tables.
  121. */
  122. static av_cold void rv34_init_tables(void)
  123. {
  124. int i, j, k;
  125. for(i = 0; i < NUM_INTRA_TABLES; i++){
  126. for(j = 0; j < 2; j++){
  127. rv34_gen_vlc(rv34_table_intra_cbppat [i][j], CBPPAT_VLC_SIZE, &intra_vlcs[i].cbppattern[j], NULL, 19*i + 0 + j);
  128. rv34_gen_vlc(rv34_table_intra_secondpat[i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].second_pattern[j], NULL, 19*i + 2 + j);
  129. rv34_gen_vlc(rv34_table_intra_thirdpat [i][j], OTHERBLK_VLC_SIZE, &intra_vlcs[i].third_pattern[j], NULL, 19*i + 4 + j);
  130. for(k = 0; k < 4; k++){
  131. rv34_gen_vlc(rv34_table_intra_cbp[i][j+k*2], CBP_VLC_SIZE, &intra_vlcs[i].cbp[j][k], rv34_cbp_code, 19*i + 6 + j*4 + k);
  132. }
  133. }
  134. for(j = 0; j < 4; j++){
  135. rv34_gen_vlc(rv34_table_intra_firstpat[i][j], FIRSTBLK_VLC_SIZE, &intra_vlcs[i].first_pattern[j], NULL, 19*i + 14 + j);
  136. }
  137. rv34_gen_vlc(rv34_intra_coeff[i], COEFF_VLC_SIZE, &intra_vlcs[i].coefficient, NULL, 19*i + 18);
  138. }
  139. for(i = 0; i < NUM_INTER_TABLES; i++){
  140. rv34_gen_vlc(rv34_inter_cbppat[i], CBPPAT_VLC_SIZE, &inter_vlcs[i].cbppattern[0], NULL, i*12 + 95);
  141. for(j = 0; j < 4; j++){
  142. rv34_gen_vlc(rv34_inter_cbp[i][j], CBP_VLC_SIZE, &inter_vlcs[i].cbp[0][j], rv34_cbp_code, i*12 + 96 + j);
  143. }
  144. for(j = 0; j < 2; j++){
  145. rv34_gen_vlc(rv34_table_inter_firstpat [i][j], FIRSTBLK_VLC_SIZE, &inter_vlcs[i].first_pattern[j], NULL, i*12 + 100 + j);
  146. rv34_gen_vlc(rv34_table_inter_secondpat[i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].second_pattern[j], NULL, i*12 + 102 + j);
  147. rv34_gen_vlc(rv34_table_inter_thirdpat [i][j], OTHERBLK_VLC_SIZE, &inter_vlcs[i].third_pattern[j], NULL, i*12 + 104 + j);
  148. }
  149. rv34_gen_vlc(rv34_inter_coeff[i], COEFF_VLC_SIZE, &inter_vlcs[i].coefficient, NULL, i*12 + 106);
  150. }
  151. }
  152. /** @} */ // vlc group
  153. /**
  154. * @name RV30/40 inverse transform functions
  155. * @{
  156. */
  157. static av_always_inline void rv34_row_transform(int temp[16], DCTELEM *block)
  158. {
  159. int i;
  160. for(i = 0; i < 4; i++){
  161. const int z0 = 13*(block[i+8*0] + block[i+8*2]);
  162. const int z1 = 13*(block[i+8*0] - block[i+8*2]);
  163. const int z2 = 7* block[i+8*1] - 17*block[i+8*3];
  164. const int z3 = 17* block[i+8*1] + 7*block[i+8*3];
  165. temp[4*i+0] = z0 + z3;
  166. temp[4*i+1] = z1 + z2;
  167. temp[4*i+2] = z1 - z2;
  168. temp[4*i+3] = z0 - z3;
  169. }
  170. }
  171. /**
  172. * Real Video 3.0/4.0 inverse transform
  173. * Code is almost the same as in SVQ3, only scaling is different.
  174. */
  175. static void rv34_inv_transform(DCTELEM *block){
  176. int temp[16];
  177. int i;
  178. rv34_row_transform(temp, block);
  179. for(i = 0; i < 4; i++){
  180. const int z0 = 13*(temp[4*0+i] + temp[4*2+i]) + 0x200;
  181. const int z1 = 13*(temp[4*0+i] - temp[4*2+i]) + 0x200;
  182. const int z2 = 7* temp[4*1+i] - 17*temp[4*3+i];
  183. const int z3 = 17* temp[4*1+i] + 7*temp[4*3+i];
  184. block[i*8+0] = (z0 + z3) >> 10;
  185. block[i*8+1] = (z1 + z2) >> 10;
  186. block[i*8+2] = (z1 - z2) >> 10;
  187. block[i*8+3] = (z0 - z3) >> 10;
  188. }
  189. }
  190. /**
  191. * RealVideo 3.0/4.0 inverse transform for DC block
  192. *
  193. * Code is almost the same as rv34_inv_transform()
  194. * but final coefficients are multiplied by 1.5 and have no rounding.
  195. */
  196. static void rv34_inv_transform_noround(DCTELEM *block){
  197. int temp[16];
  198. int i;
  199. rv34_row_transform(temp, block);
  200. for(i = 0; i < 4; i++){
  201. const int z0 = 13*(temp[4*0+i] + temp[4*2+i]);
  202. const int z1 = 13*(temp[4*0+i] - temp[4*2+i]);
  203. const int z2 = 7* temp[4*1+i] - 17*temp[4*3+i];
  204. const int z3 = 17* temp[4*1+i] + 7*temp[4*3+i];
  205. block[i*8+0] = ((z0 + z3) * 3) >> 11;
  206. block[i*8+1] = ((z1 + z2) * 3) >> 11;
  207. block[i*8+2] = ((z1 - z2) * 3) >> 11;
  208. block[i*8+3] = ((z0 - z3) * 3) >> 11;
  209. }
  210. }
  211. /** @} */ // transform
  212. /**
  213. * @name RV30/40 4x4 block decoding functions
  214. * @{
  215. */
  216. /**
  217. * Decode coded block pattern.
  218. */
  219. static int rv34_decode_cbp(GetBitContext *gb, RV34VLC *vlc, int table)
  220. {
  221. int pattern, code, cbp=0;
  222. int ones;
  223. static const int cbp_masks[3] = {0x100000, 0x010000, 0x110000};
  224. static const int shifts[4] = { 0, 2, 8, 10 };
  225. const int *curshift = shifts;
  226. int i, t, mask;
  227. code = get_vlc2(gb, vlc->cbppattern[table].table, 9, 2);
  228. pattern = code & 0xF;
  229. code >>= 4;
  230. ones = rv34_count_ones[pattern];
  231. for(mask = 8; mask; mask >>= 1, curshift++){
  232. if(pattern & mask)
  233. cbp |= get_vlc2(gb, vlc->cbp[table][ones].table, vlc->cbp[table][ones].bits, 1) << curshift[0];
  234. }
  235. for(i = 0; i < 4; i++){
  236. t = modulo_three_table[code][i];
  237. if(t == 1)
  238. cbp |= cbp_masks[get_bits1(gb)] << i;
  239. if(t == 2)
  240. cbp |= cbp_masks[2] << i;
  241. }
  242. return cbp;
  243. }
  244. /**
  245. * Get one coefficient value from the bistream and store it.
  246. */
  247. static inline void decode_coeff(DCTELEM *dst, int coef, int esc, GetBitContext *gb, VLC* vlc)
  248. {
  249. if(coef){
  250. if(coef == esc){
  251. coef = get_vlc2(gb, vlc->table, 9, 2);
  252. if(coef > 23){
  253. coef -= 23;
  254. coef = 22 + ((1 << coef) | get_bits(gb, coef));
  255. }
  256. coef += esc;
  257. }
  258. if(get_bits1(gb))
  259. coef = -coef;
  260. *dst = coef;
  261. }
  262. }
  263. /**
  264. * Decode 2x2 subblock of coefficients.
  265. */
  266. static inline void decode_subblock(DCTELEM *dst, int code, const int is_block2, GetBitContext *gb, VLC *vlc)
  267. {
  268. int coeffs[4];
  269. coeffs[0] = modulo_three_table[code][0];
  270. coeffs[1] = modulo_three_table[code][1];
  271. coeffs[2] = modulo_three_table[code][2];
  272. coeffs[3] = modulo_three_table[code][3];
  273. decode_coeff(dst , coeffs[0], 3, gb, vlc);
  274. if(is_block2){
  275. decode_coeff(dst+8, coeffs[1], 2, gb, vlc);
  276. decode_coeff(dst+1, coeffs[2], 2, gb, vlc);
  277. }else{
  278. decode_coeff(dst+1, coeffs[1], 2, gb, vlc);
  279. decode_coeff(dst+8, coeffs[2], 2, gb, vlc);
  280. }
  281. decode_coeff(dst+9, coeffs[3], 2, gb, vlc);
  282. }
  283. /**
  284. * Decode coefficients for 4x4 block.
  285. *
  286. * This is done by filling 2x2 subblocks with decoded coefficients
  287. * in this order (the same for subblocks and subblock coefficients):
  288. * o--o
  289. * /
  290. * /
  291. * o--o
  292. */
  293. static inline void rv34_decode_block(DCTELEM *dst, GetBitContext *gb, RV34VLC *rvlc, int fc, int sc)
  294. {
  295. int code, pattern;
  296. code = get_vlc2(gb, rvlc->first_pattern[fc].table, 9, 2);
  297. pattern = code & 0x7;
  298. code >>= 3;
  299. decode_subblock(dst, code, 0, gb, &rvlc->coefficient);
  300. if(pattern & 4){
  301. code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
  302. decode_subblock(dst + 2, code, 0, gb, &rvlc->coefficient);
  303. }
  304. if(pattern & 2){ // Looks like coefficients 1 and 2 are swapped for this block
  305. code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
  306. decode_subblock(dst + 8*2, code, 1, gb, &rvlc->coefficient);
  307. }
  308. if(pattern & 1){
  309. code = get_vlc2(gb, rvlc->third_pattern[sc].table, 9, 2);
  310. decode_subblock(dst + 8*2+2, code, 0, gb, &rvlc->coefficient);
  311. }
  312. }
  313. /**
  314. * Dequantize ordinary 4x4 block.
  315. * @todo optimize
  316. */
  317. static inline void rv34_dequant4x4(DCTELEM *block, int Qdc, int Q)
  318. {
  319. int i, j;
  320. block[0] = (block[0] * Qdc + 8) >> 4;
  321. for(i = 0; i < 4; i++)
  322. for(j = !i; j < 4; j++)
  323. block[j + i*8] = (block[j + i*8] * Q + 8) >> 4;
  324. }
  325. /**
  326. * Dequantize 4x4 block of DC values for 16x16 macroblock.
  327. * @todo optimize
  328. */
  329. static inline void rv34_dequant4x4_16x16(DCTELEM *block, int Qdc, int Q)
  330. {
  331. int i;
  332. for(i = 0; i < 3; i++)
  333. block[rv34_dezigzag[i]] = (block[rv34_dezigzag[i]] * Qdc + 8) >> 4;
  334. for(; i < 16; i++)
  335. block[rv34_dezigzag[i]] = (block[rv34_dezigzag[i]] * Q + 8) >> 4;
  336. }
  337. /** @} */ //block functions
  338. /**
  339. * @name RV30/40 bitstream parsing
  340. * @{
  341. */
  342. /**
  343. * Decode starting slice position.
  344. * @todo Maybe replace with ff_h263_decode_mba() ?
  345. */
  346. int ff_rv34_get_start_offset(GetBitContext *gb, int mb_size)
  347. {
  348. int i;
  349. for(i = 0; i < 5; i++)
  350. if(rv34_mb_max_sizes[i] >= mb_size - 1)
  351. break;
  352. return rv34_mb_bits_sizes[i];
  353. }
  354. /**
  355. * Select VLC set for decoding from current quantizer, modifier and frame type.
  356. */
  357. static inline RV34VLC* choose_vlc_set(int quant, int mod, int type)
  358. {
  359. if(mod == 2 && quant < 19) quant += 10;
  360. else if(mod && quant < 26) quant += 5;
  361. return type ? &inter_vlcs[rv34_quant_to_vlc_set[1][av_clip(quant, 0, 30)]]
  362. : &intra_vlcs[rv34_quant_to_vlc_set[0][av_clip(quant, 0, 30)]];
  363. }
  364. /**
  365. * Decode macroblock header and return CBP in case of success, -1 otherwise.
  366. */
  367. static int rv34_decode_mb_header(RV34DecContext *r, int8_t *intra_types)
  368. {
  369. MpegEncContext *s = &r->s;
  370. GetBitContext *gb = &s->gb;
  371. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  372. int i, t;
  373. if(!r->si.type){
  374. r->is16 = get_bits1(gb);
  375. if(!r->is16 && !r->rv30){
  376. if(!get_bits1(gb))
  377. av_log(s->avctx, AV_LOG_ERROR, "Need DQUANT\n");
  378. }
  379. s->current_picture_ptr->f.mb_type[mb_pos] = r->is16 ? MB_TYPE_INTRA16x16 : MB_TYPE_INTRA;
  380. r->block_type = r->is16 ? RV34_MB_TYPE_INTRA16x16 : RV34_MB_TYPE_INTRA;
  381. }else{
  382. r->block_type = r->decode_mb_info(r);
  383. if(r->block_type == -1)
  384. return -1;
  385. s->current_picture_ptr->f.mb_type[mb_pos] = rv34_mb_type_to_lavc[r->block_type];
  386. r->mb_type[mb_pos] = r->block_type;
  387. if(r->block_type == RV34_MB_SKIP){
  388. if(s->pict_type == AV_PICTURE_TYPE_P)
  389. r->mb_type[mb_pos] = RV34_MB_P_16x16;
  390. if(s->pict_type == AV_PICTURE_TYPE_B)
  391. r->mb_type[mb_pos] = RV34_MB_B_DIRECT;
  392. }
  393. r->is16 = !!IS_INTRA16x16(s->current_picture_ptr->f.mb_type[mb_pos]);
  394. rv34_decode_mv(r, r->block_type);
  395. if(r->block_type == RV34_MB_SKIP){
  396. fill_rectangle(intra_types, 4, 4, r->intra_types_stride, 0, sizeof(intra_types[0]));
  397. return 0;
  398. }
  399. r->chroma_vlc = 1;
  400. r->luma_vlc = 0;
  401. }
  402. if(IS_INTRA(s->current_picture_ptr->f.mb_type[mb_pos])){
  403. if(r->is16){
  404. t = get_bits(gb, 2);
  405. fill_rectangle(intra_types, 4, 4, r->intra_types_stride, t, sizeof(intra_types[0]));
  406. r->luma_vlc = 2;
  407. }else{
  408. if(r->decode_intra_types(r, gb, intra_types) < 0)
  409. return -1;
  410. r->luma_vlc = 1;
  411. }
  412. r->chroma_vlc = 0;
  413. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
  414. }else{
  415. for(i = 0; i < 16; i++)
  416. intra_types[(i & 3) + (i>>2) * r->intra_types_stride] = 0;
  417. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
  418. if(r->mb_type[mb_pos] == RV34_MB_P_MIX16x16){
  419. r->is16 = 1;
  420. r->chroma_vlc = 1;
  421. r->luma_vlc = 2;
  422. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
  423. }
  424. }
  425. return rv34_decode_cbp(gb, r->cur_vlcs, r->is16);
  426. }
  427. /** @} */ //bitstream functions
  428. /**
  429. * @name motion vector related code (prediction, reconstruction, motion compensation)
  430. * @{
  431. */
  432. /** macroblock partition width in 8x8 blocks */
  433. static const uint8_t part_sizes_w[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2 };
  434. /** macroblock partition height in 8x8 blocks */
  435. static const uint8_t part_sizes_h[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2 };
  436. /** availability index for subblocks */
  437. static const uint8_t avail_indexes[4] = { 6, 7, 10, 11 };
  438. /**
  439. * motion vector prediction
  440. *
  441. * Motion prediction performed for the block by using median prediction of
  442. * motion vectors from the left, top and right top blocks but in corner cases
  443. * some other vectors may be used instead.
  444. */
  445. static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int dmv_no)
  446. {
  447. MpegEncContext *s = &r->s;
  448. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  449. int A[2] = {0}, B[2], C[2];
  450. int i, j;
  451. int mx, my;
  452. int avail_index = avail_indexes[subblock_no];
  453. int c_off = part_sizes_w[block_type];
  454. mv_pos += (subblock_no & 1) + (subblock_no >> 1)*s->b8_stride;
  455. if(subblock_no == 3)
  456. c_off = -1;
  457. if(r->avail_cache[avail_index - 1]){
  458. A[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-1][0];
  459. A[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-1][1];
  460. }
  461. if(r->avail_cache[avail_index - 4]){
  462. B[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride][0];
  463. B[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride][1];
  464. }else{
  465. B[0] = A[0];
  466. B[1] = A[1];
  467. }
  468. if(!r->avail_cache[avail_index - 4 + c_off]){
  469. if(r->avail_cache[avail_index - 4] && (r->avail_cache[avail_index - 1] || r->rv30)){
  470. C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride-1][0];
  471. C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride-1][1];
  472. }else{
  473. C[0] = A[0];
  474. C[1] = A[1];
  475. }
  476. }else{
  477. C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride+c_off][0];
  478. C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride+c_off][1];
  479. }
  480. mx = mid_pred(A[0], B[0], C[0]);
  481. my = mid_pred(A[1], B[1], C[1]);
  482. mx += r->dmv[dmv_no][0];
  483. my += r->dmv[dmv_no][1];
  484. for(j = 0; j < part_sizes_h[block_type]; j++){
  485. for(i = 0; i < part_sizes_w[block_type]; i++){
  486. s->current_picture_ptr->f.motion_val[0][mv_pos + i + j*s->b8_stride][0] = mx;
  487. s->current_picture_ptr->f.motion_val[0][mv_pos + i + j*s->b8_stride][1] = my;
  488. }
  489. }
  490. }
  491. #define GET_PTS_DIFF(a, b) ((a - b + 8192) & 0x1FFF)
  492. /**
  493. * Calculate motion vector component that should be added for direct blocks.
  494. */
  495. static int calc_add_mv(RV34DecContext *r, int dir, int val)
  496. {
  497. int mul = dir ? -r->weight2 : r->weight1;
  498. return (val * mul + 0x2000) >> 14;
  499. }
  500. /**
  501. * Predict motion vector for B-frame macroblock.
  502. */
  503. static inline void rv34_pred_b_vector(int A[2], int B[2], int C[2],
  504. int A_avail, int B_avail, int C_avail,
  505. int *mx, int *my)
  506. {
  507. if(A_avail + B_avail + C_avail != 3){
  508. *mx = A[0] + B[0] + C[0];
  509. *my = A[1] + B[1] + C[1];
  510. if(A_avail + B_avail + C_avail == 2){
  511. *mx /= 2;
  512. *my /= 2;
  513. }
  514. }else{
  515. *mx = mid_pred(A[0], B[0], C[0]);
  516. *my = mid_pred(A[1], B[1], C[1]);
  517. }
  518. }
  519. /**
  520. * motion vector prediction for B-frames
  521. */
  522. static void rv34_pred_mv_b(RV34DecContext *r, int block_type, int dir)
  523. {
  524. MpegEncContext *s = &r->s;
  525. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  526. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  527. int A[2], B[2], C[2];
  528. int has_A = 0, has_B = 0, has_C = 0;
  529. int mx, my;
  530. int i, j;
  531. Picture *cur_pic = s->current_picture_ptr;
  532. const int mask = dir ? MB_TYPE_L1 : MB_TYPE_L0;
  533. int type = cur_pic->f.mb_type[mb_pos];
  534. memset(A, 0, sizeof(A));
  535. memset(B, 0, sizeof(B));
  536. memset(C, 0, sizeof(C));
  537. if((r->avail_cache[6-1] & type) & mask){
  538. A[0] = cur_pic->f.motion_val[dir][mv_pos - 1][0];
  539. A[1] = cur_pic->f.motion_val[dir][mv_pos - 1][1];
  540. has_A = 1;
  541. }
  542. if((r->avail_cache[6-4] & type) & mask){
  543. B[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride][0];
  544. B[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride][1];
  545. has_B = 1;
  546. }
  547. if(r->avail_cache[6-4] && (r->avail_cache[6-2] & type) & mask){
  548. C[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride + 2][0];
  549. C[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride + 2][1];
  550. has_C = 1;
  551. }else if((s->mb_x+1) == s->mb_width && (r->avail_cache[6-5] & type) & mask){
  552. C[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride - 1][0];
  553. C[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride - 1][1];
  554. has_C = 1;
  555. }
  556. rv34_pred_b_vector(A, B, C, has_A, has_B, has_C, &mx, &my);
  557. mx += r->dmv[dir][0];
  558. my += r->dmv[dir][1];
  559. for(j = 0; j < 2; j++){
  560. for(i = 0; i < 2; i++){
  561. cur_pic->f.motion_val[dir][mv_pos + i + j*s->b8_stride][0] = mx;
  562. cur_pic->f.motion_val[dir][mv_pos + i + j*s->b8_stride][1] = my;
  563. }
  564. }
  565. if(block_type == RV34_MB_B_BACKWARD || block_type == RV34_MB_B_FORWARD){
  566. ZERO8x2(cur_pic->f.motion_val[!dir][mv_pos], s->b8_stride);
  567. }
  568. }
  569. /**
  570. * motion vector prediction - RV3 version
  571. */
  572. static void rv34_pred_mv_rv3(RV34DecContext *r, int block_type, int dir)
  573. {
  574. MpegEncContext *s = &r->s;
  575. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  576. int A[2] = {0}, B[2], C[2];
  577. int i, j, k;
  578. int mx, my;
  579. int avail_index = avail_indexes[0];
  580. if(r->avail_cache[avail_index - 1]){
  581. A[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - 1][0];
  582. A[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - 1][1];
  583. }
  584. if(r->avail_cache[avail_index - 4]){
  585. B[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride][0];
  586. B[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride][1];
  587. }else{
  588. B[0] = A[0];
  589. B[1] = A[1];
  590. }
  591. if(!r->avail_cache[avail_index - 4 + 2]){
  592. if(r->avail_cache[avail_index - 4] && (r->avail_cache[avail_index - 1])){
  593. C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride - 1][0];
  594. C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride - 1][1];
  595. }else{
  596. C[0] = A[0];
  597. C[1] = A[1];
  598. }
  599. }else{
  600. C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride + 2][0];
  601. C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride + 2][1];
  602. }
  603. mx = mid_pred(A[0], B[0], C[0]);
  604. my = mid_pred(A[1], B[1], C[1]);
  605. mx += r->dmv[0][0];
  606. my += r->dmv[0][1];
  607. for(j = 0; j < 2; j++){
  608. for(i = 0; i < 2; i++){
  609. for(k = 0; k < 2; k++){
  610. s->current_picture_ptr->f.motion_val[k][mv_pos + i + j*s->b8_stride][0] = mx;
  611. s->current_picture_ptr->f.motion_val[k][mv_pos + i + j*s->b8_stride][1] = my;
  612. }
  613. }
  614. }
  615. }
  616. static const int chroma_coeffs[3] = { 0, 3, 5 };
  617. /**
  618. * generic motion compensation function
  619. *
  620. * @param r decoder context
  621. * @param block_type type of the current block
  622. * @param xoff horizontal offset from the start of the current block
  623. * @param yoff vertical offset from the start of the current block
  624. * @param mv_off offset to the motion vector information
  625. * @param width width of the current partition in 8x8 blocks
  626. * @param height height of the current partition in 8x8 blocks
  627. * @param dir motion compensation direction (i.e. from the last or the next reference frame)
  628. * @param thirdpel motion vectors are specified in 1/3 of pixel
  629. * @param qpel_mc a set of functions used to perform luma motion compensation
  630. * @param chroma_mc a set of functions used to perform chroma motion compensation
  631. */
  632. static inline void rv34_mc(RV34DecContext *r, const int block_type,
  633. const int xoff, const int yoff, int mv_off,
  634. const int width, const int height, int dir,
  635. const int thirdpel, int weighted,
  636. qpel_mc_func (*qpel_mc)[16],
  637. h264_chroma_mc_func (*chroma_mc))
  638. {
  639. MpegEncContext *s = &r->s;
  640. uint8_t *Y, *U, *V, *srcY, *srcU, *srcV;
  641. int dxy, mx, my, umx, umy, lx, ly, uvmx, uvmy, src_x, src_y, uvsrc_x, uvsrc_y;
  642. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride + mv_off;
  643. int is16x16 = 1;
  644. if(thirdpel){
  645. int chroma_mx, chroma_my;
  646. mx = (s->current_picture_ptr->f.motion_val[dir][mv_pos][0] + (3 << 24)) / 3 - (1 << 24);
  647. my = (s->current_picture_ptr->f.motion_val[dir][mv_pos][1] + (3 << 24)) / 3 - (1 << 24);
  648. lx = (s->current_picture_ptr->f.motion_val[dir][mv_pos][0] + (3 << 24)) % 3;
  649. ly = (s->current_picture_ptr->f.motion_val[dir][mv_pos][1] + (3 << 24)) % 3;
  650. chroma_mx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] / 2;
  651. chroma_my = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] / 2;
  652. umx = (chroma_mx + (3 << 24)) / 3 - (1 << 24);
  653. umy = (chroma_my + (3 << 24)) / 3 - (1 << 24);
  654. uvmx = chroma_coeffs[(chroma_mx + (3 << 24)) % 3];
  655. uvmy = chroma_coeffs[(chroma_my + (3 << 24)) % 3];
  656. }else{
  657. int cx, cy;
  658. mx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] >> 2;
  659. my = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] >> 2;
  660. lx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] & 3;
  661. ly = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] & 3;
  662. cx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] / 2;
  663. cy = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] / 2;
  664. umx = cx >> 2;
  665. umy = cy >> 2;
  666. uvmx = (cx & 3) << 1;
  667. uvmy = (cy & 3) << 1;
  668. //due to some flaw RV40 uses the same MC compensation routine for H2V2 and H3V3
  669. if(uvmx == 6 && uvmy == 6)
  670. uvmx = uvmy = 4;
  671. }
  672. dxy = ly*4 + lx;
  673. srcY = dir ? s->next_picture_ptr->f.data[0] : s->last_picture_ptr->f.data[0];
  674. srcU = dir ? s->next_picture_ptr->f.data[1] : s->last_picture_ptr->f.data[1];
  675. srcV = dir ? s->next_picture_ptr->f.data[2] : s->last_picture_ptr->f.data[2];
  676. src_x = s->mb_x * 16 + xoff + mx;
  677. src_y = s->mb_y * 16 + yoff + my;
  678. uvsrc_x = s->mb_x * 8 + (xoff >> 1) + umx;
  679. uvsrc_y = s->mb_y * 8 + (yoff >> 1) + umy;
  680. srcY += src_y * s->linesize + src_x;
  681. srcU += uvsrc_y * s->uvlinesize + uvsrc_x;
  682. srcV += uvsrc_y * s->uvlinesize + uvsrc_x;
  683. if( (unsigned)(src_x - !!lx*2) > s->h_edge_pos - !!lx*2 - (width <<3) - 4
  684. || (unsigned)(src_y - !!ly*2) > s->v_edge_pos - !!ly*2 - (height<<3) - 4){
  685. uint8_t *uvbuf = s->edge_emu_buffer + 22 * s->linesize;
  686. srcY -= 2 + 2*s->linesize;
  687. s->dsp.emulated_edge_mc(s->edge_emu_buffer, srcY, s->linesize, (width<<3)+6, (height<<3)+6,
  688. src_x - 2, src_y - 2, s->h_edge_pos, s->v_edge_pos);
  689. srcY = s->edge_emu_buffer + 2 + 2*s->linesize;
  690. s->dsp.emulated_edge_mc(uvbuf , srcU, s->uvlinesize, (width<<2)+1, (height<<2)+1,
  691. uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
  692. s->dsp.emulated_edge_mc(uvbuf + 16, srcV, s->uvlinesize, (width<<2)+1, (height<<2)+1,
  693. uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
  694. srcU = uvbuf;
  695. srcV = uvbuf + 16;
  696. }
  697. if(!weighted){
  698. Y = s->dest[0] + xoff + yoff *s->linesize;
  699. U = s->dest[1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  700. V = s->dest[2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  701. }else{
  702. Y = r->tmp_b_block_y [dir] + xoff + yoff *s->linesize;
  703. U = r->tmp_b_block_uv[dir*2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  704. V = r->tmp_b_block_uv[dir*2+1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  705. }
  706. if(block_type == RV34_MB_P_16x8){
  707. qpel_mc[1][dxy](Y, srcY, s->linesize);
  708. Y += 8;
  709. srcY += 8;
  710. }else if(block_type == RV34_MB_P_8x16){
  711. qpel_mc[1][dxy](Y, srcY, s->linesize);
  712. Y += 8 * s->linesize;
  713. srcY += 8 * s->linesize;
  714. }
  715. is16x16 = (block_type != RV34_MB_P_8x8) && (block_type != RV34_MB_P_16x8) && (block_type != RV34_MB_P_8x16);
  716. qpel_mc[!is16x16][dxy](Y, srcY, s->linesize);
  717. chroma_mc[2-width] (U, srcU, s->uvlinesize, height*4, uvmx, uvmy);
  718. chroma_mc[2-width] (V, srcV, s->uvlinesize, height*4, uvmx, uvmy);
  719. }
  720. static void rv34_mc_1mv(RV34DecContext *r, const int block_type,
  721. const int xoff, const int yoff, int mv_off,
  722. const int width, const int height, int dir)
  723. {
  724. rv34_mc(r, block_type, xoff, yoff, mv_off, width, height, dir, r->rv30, 0,
  725. r->rdsp.put_pixels_tab,
  726. r->rdsp.put_chroma_pixels_tab);
  727. }
  728. static void rv4_weight(RV34DecContext *r)
  729. {
  730. r->rdsp.rv40_weight_pixels_tab[0](r->s.dest[0],
  731. r->tmp_b_block_y[0],
  732. r->tmp_b_block_y[1],
  733. r->weight1,
  734. r->weight2,
  735. r->s.linesize);
  736. r->rdsp.rv40_weight_pixels_tab[1](r->s.dest[1],
  737. r->tmp_b_block_uv[0],
  738. r->tmp_b_block_uv[2],
  739. r->weight1,
  740. r->weight2,
  741. r->s.uvlinesize);
  742. r->rdsp.rv40_weight_pixels_tab[1](r->s.dest[2],
  743. r->tmp_b_block_uv[1],
  744. r->tmp_b_block_uv[3],
  745. r->weight1,
  746. r->weight2,
  747. r->s.uvlinesize);
  748. }
  749. static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
  750. {
  751. int weighted = !r->rv30 && block_type != RV34_MB_B_BIDIR && r->weight1 != 8192;
  752. rv34_mc(r, block_type, 0, 0, 0, 2, 2, 0, r->rv30, weighted,
  753. r->rdsp.put_pixels_tab,
  754. r->rdsp.put_chroma_pixels_tab);
  755. if(!weighted){
  756. rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 0,
  757. r->rdsp.avg_pixels_tab,
  758. r->rdsp.avg_chroma_pixels_tab);
  759. }else{
  760. rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 1,
  761. r->rdsp.put_pixels_tab,
  762. r->rdsp.put_chroma_pixels_tab);
  763. rv4_weight(r);
  764. }
  765. }
  766. static void rv34_mc_2mv_skip(RV34DecContext *r)
  767. {
  768. int i, j;
  769. int weighted = !r->rv30 && r->weight1 != 8192;
  770. for(j = 0; j < 2; j++)
  771. for(i = 0; i < 2; i++){
  772. rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 0, r->rv30,
  773. weighted,
  774. r->rdsp.put_pixels_tab,
  775. r->rdsp.put_chroma_pixels_tab);
  776. rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 1, r->rv30,
  777. weighted,
  778. weighted ? r->rdsp.put_pixels_tab : r->rdsp.avg_pixels_tab,
  779. weighted ? r->rdsp.put_chroma_pixels_tab : r->rdsp.avg_chroma_pixels_tab);
  780. }
  781. if(weighted)
  782. rv4_weight(r);
  783. }
  784. /** number of motion vectors in each macroblock type */
  785. static const int num_mvs[RV34_MB_TYPES] = { 0, 0, 1, 4, 1, 1, 0, 0, 2, 2, 2, 1 };
  786. /**
  787. * Decode motion vector differences
  788. * and perform motion vector reconstruction and motion compensation.
  789. */
  790. static int rv34_decode_mv(RV34DecContext *r, int block_type)
  791. {
  792. MpegEncContext *s = &r->s;
  793. GetBitContext *gb = &s->gb;
  794. int i, j, k, l;
  795. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  796. int next_bt;
  797. memset(r->dmv, 0, sizeof(r->dmv));
  798. for(i = 0; i < num_mvs[block_type]; i++){
  799. r->dmv[i][0] = svq3_get_se_golomb(gb);
  800. r->dmv[i][1] = svq3_get_se_golomb(gb);
  801. }
  802. switch(block_type){
  803. case RV34_MB_TYPE_INTRA:
  804. case RV34_MB_TYPE_INTRA16x16:
  805. ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  806. return 0;
  807. case RV34_MB_SKIP:
  808. if(s->pict_type == AV_PICTURE_TYPE_P){
  809. ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  810. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
  811. break;
  812. }
  813. case RV34_MB_B_DIRECT:
  814. //surprisingly, it uses motion scheme from next reference frame
  815. next_bt = s->next_picture_ptr->f.mb_type[s->mb_x + s->mb_y * s->mb_stride];
  816. if(IS_INTRA(next_bt) || IS_SKIP(next_bt)){
  817. ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  818. ZERO8x2(s->current_picture_ptr->f.motion_val[1][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  819. }else
  820. for(j = 0; j < 2; j++)
  821. for(i = 0; i < 2; i++)
  822. for(k = 0; k < 2; k++)
  823. for(l = 0; l < 2; l++)
  824. s->current_picture_ptr->f.motion_val[l][mv_pos + i + j*s->b8_stride][k] = calc_add_mv(r, l, s->next_picture_ptr->f.motion_val[0][mv_pos + i + j*s->b8_stride][k]);
  825. if(!(IS_16X8(next_bt) || IS_8X16(next_bt) || IS_8X8(next_bt))) //we can use whole macroblock MC
  826. rv34_mc_2mv(r, block_type);
  827. else
  828. rv34_mc_2mv_skip(r);
  829. ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  830. break;
  831. case RV34_MB_P_16x16:
  832. case RV34_MB_P_MIX16x16:
  833. rv34_pred_mv(r, block_type, 0, 0);
  834. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
  835. break;
  836. case RV34_MB_B_FORWARD:
  837. case RV34_MB_B_BACKWARD:
  838. r->dmv[1][0] = r->dmv[0][0];
  839. r->dmv[1][1] = r->dmv[0][1];
  840. if(r->rv30)
  841. rv34_pred_mv_rv3(r, block_type, block_type == RV34_MB_B_BACKWARD);
  842. else
  843. rv34_pred_mv_b (r, block_type, block_type == RV34_MB_B_BACKWARD);
  844. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, block_type == RV34_MB_B_BACKWARD);
  845. break;
  846. case RV34_MB_P_16x8:
  847. case RV34_MB_P_8x16:
  848. rv34_pred_mv(r, block_type, 0, 0);
  849. rv34_pred_mv(r, block_type, 1 + (block_type == RV34_MB_P_16x8), 1);
  850. if(block_type == RV34_MB_P_16x8){
  851. rv34_mc_1mv(r, block_type, 0, 0, 0, 2, 1, 0);
  852. rv34_mc_1mv(r, block_type, 0, 8, s->b8_stride, 2, 1, 0);
  853. }
  854. if(block_type == RV34_MB_P_8x16){
  855. rv34_mc_1mv(r, block_type, 0, 0, 0, 1, 2, 0);
  856. rv34_mc_1mv(r, block_type, 8, 0, 1, 1, 2, 0);
  857. }
  858. break;
  859. case RV34_MB_B_BIDIR:
  860. rv34_pred_mv_b (r, block_type, 0);
  861. rv34_pred_mv_b (r, block_type, 1);
  862. rv34_mc_2mv (r, block_type);
  863. break;
  864. case RV34_MB_P_8x8:
  865. for(i=0;i< 4;i++){
  866. rv34_pred_mv(r, block_type, i, i);
  867. rv34_mc_1mv (r, block_type, (i&1)<<3, (i&2)<<2, (i&1)+(i>>1)*s->b8_stride, 1, 1, 0);
  868. }
  869. break;
  870. }
  871. return 0;
  872. }
  873. /** @} */ // mv group
  874. /**
  875. * @name Macroblock reconstruction functions
  876. * @{
  877. */
  878. /** mapping of RV30/40 intra prediction types to standard H.264 types */
  879. static const int ittrans[9] = {
  880. DC_PRED, VERT_PRED, HOR_PRED, DIAG_DOWN_RIGHT_PRED, DIAG_DOWN_LEFT_PRED,
  881. VERT_RIGHT_PRED, VERT_LEFT_PRED, HOR_UP_PRED, HOR_DOWN_PRED,
  882. };
  883. /** mapping of RV30/40 intra 16x16 prediction types to standard H.264 types */
  884. static const int ittrans16[4] = {
  885. DC_PRED8x8, VERT_PRED8x8, HOR_PRED8x8, PLANE_PRED8x8,
  886. };
  887. /**
  888. * Perform 4x4 intra prediction.
  889. */
  890. static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
  891. {
  892. uint8_t *prev = dst - stride + 4;
  893. uint32_t topleft;
  894. if(!up && !left)
  895. itype = DC_128_PRED;
  896. else if(!up){
  897. if(itype == VERT_PRED) itype = HOR_PRED;
  898. if(itype == DC_PRED) itype = LEFT_DC_PRED;
  899. }else if(!left){
  900. if(itype == HOR_PRED) itype = VERT_PRED;
  901. if(itype == DC_PRED) itype = TOP_DC_PRED;
  902. if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
  903. }
  904. if(!down){
  905. if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
  906. if(itype == HOR_UP_PRED) itype = HOR_UP_PRED_RV40_NODOWN;
  907. if(itype == VERT_LEFT_PRED) itype = VERT_LEFT_PRED_RV40_NODOWN;
  908. }
  909. if(!right && up){
  910. topleft = dst[-stride + 3] * 0x01010101;
  911. prev = (uint8_t*)&topleft;
  912. }
  913. r->h.pred4x4[itype](dst, prev, stride);
  914. }
  915. /** add_pixels_clamped for 4x4 block */
  916. static void rv34_add_4x4_block(uint8_t *dst, int stride, DCTELEM block[64], int off)
  917. {
  918. int x, y;
  919. for(y = 0; y < 4; y++)
  920. for(x = 0; x < 4; x++)
  921. dst[x + y*stride] = av_clip_uint8(dst[x + y*stride] + block[off + x+y*8]);
  922. }
  923. static inline int adjust_pred16(int itype, int up, int left)
  924. {
  925. if(!up && !left)
  926. itype = DC_128_PRED8x8;
  927. else if(!up){
  928. if(itype == PLANE_PRED8x8)itype = HOR_PRED8x8;
  929. if(itype == VERT_PRED8x8) itype = HOR_PRED8x8;
  930. if(itype == DC_PRED8x8) itype = LEFT_DC_PRED8x8;
  931. }else if(!left){
  932. if(itype == PLANE_PRED8x8)itype = VERT_PRED8x8;
  933. if(itype == HOR_PRED8x8) itype = VERT_PRED8x8;
  934. if(itype == DC_PRED8x8) itype = TOP_DC_PRED8x8;
  935. }
  936. return itype;
  937. }
  938. static void rv34_output_macroblock(RV34DecContext *r, int8_t *intra_types, int cbp, int is16)
  939. {
  940. MpegEncContext *s = &r->s;
  941. DSPContext *dsp = &s->dsp;
  942. int i, j;
  943. uint8_t *Y, *U, *V;
  944. int itype;
  945. int avail[6*8] = {0};
  946. int idx;
  947. // Set neighbour information.
  948. if(r->avail_cache[1])
  949. avail[0] = 1;
  950. if(r->avail_cache[2])
  951. avail[1] = avail[2] = 1;
  952. if(r->avail_cache[3])
  953. avail[3] = avail[4] = 1;
  954. if(r->avail_cache[4])
  955. avail[5] = 1;
  956. if(r->avail_cache[5])
  957. avail[8] = avail[16] = 1;
  958. if(r->avail_cache[9])
  959. avail[24] = avail[32] = 1;
  960. Y = s->dest[0];
  961. U = s->dest[1];
  962. V = s->dest[2];
  963. if(!is16){
  964. for(j = 0; j < 4; j++){
  965. idx = 9 + j*8;
  966. for(i = 0; i < 4; i++, cbp >>= 1, Y += 4, idx++){
  967. rv34_pred_4x4_block(r, Y, s->linesize, ittrans[intra_types[i]], avail[idx-8], avail[idx-1], avail[idx+7], avail[idx-7]);
  968. avail[idx] = 1;
  969. if(cbp & 1)
  970. rv34_add_4x4_block(Y, s->linesize, s->block[(i>>1)+(j&2)], (i&1)*4+(j&1)*32);
  971. }
  972. Y += s->linesize * 4 - 4*4;
  973. intra_types += r->intra_types_stride;
  974. }
  975. intra_types -= r->intra_types_stride * 4;
  976. fill_rectangle(r->avail_cache + 6, 2, 2, 4, 0, 4);
  977. for(j = 0; j < 2; j++){
  978. idx = 6 + j*4;
  979. for(i = 0; i < 2; i++, cbp >>= 1, idx++){
  980. rv34_pred_4x4_block(r, U + i*4 + j*4*s->uvlinesize, s->uvlinesize, ittrans[intra_types[i*2+j*2*r->intra_types_stride]], r->avail_cache[idx-4], r->avail_cache[idx-1], !i && !j, r->avail_cache[idx-3]);
  981. rv34_pred_4x4_block(r, V + i*4 + j*4*s->uvlinesize, s->uvlinesize, ittrans[intra_types[i*2+j*2*r->intra_types_stride]], r->avail_cache[idx-4], r->avail_cache[idx-1], !i && !j, r->avail_cache[idx-3]);
  982. r->avail_cache[idx] = 1;
  983. if(cbp & 0x01)
  984. rv34_add_4x4_block(U + i*4 + j*4*s->uvlinesize, s->uvlinesize, s->block[4], i*4+j*32);
  985. if(cbp & 0x10)
  986. rv34_add_4x4_block(V + i*4 + j*4*s->uvlinesize, s->uvlinesize, s->block[5], i*4+j*32);
  987. }
  988. }
  989. }else{
  990. itype = ittrans16[intra_types[0]];
  991. itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
  992. r->h.pred16x16[itype](Y, s->linesize);
  993. dsp->add_pixels_clamped(s->block[0], Y, s->linesize);
  994. dsp->add_pixels_clamped(s->block[1], Y + 8, s->linesize);
  995. Y += s->linesize * 8;
  996. dsp->add_pixels_clamped(s->block[2], Y, s->linesize);
  997. dsp->add_pixels_clamped(s->block[3], Y + 8, s->linesize);
  998. itype = ittrans16[intra_types[0]];
  999. if(itype == PLANE_PRED8x8) itype = DC_PRED8x8;
  1000. itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
  1001. r->h.pred8x8[itype](U, s->uvlinesize);
  1002. dsp->add_pixels_clamped(s->block[4], U, s->uvlinesize);
  1003. r->h.pred8x8[itype](V, s->uvlinesize);
  1004. dsp->add_pixels_clamped(s->block[5], V, s->uvlinesize);
  1005. }
  1006. }
  1007. /**
  1008. * mask for retrieving all bits in coded block pattern
  1009. * corresponding to one 8x8 block
  1010. */
  1011. #define LUMA_CBP_BLOCK_MASK 0x33
  1012. #define U_CBP_MASK 0x0F0000
  1013. #define V_CBP_MASK 0xF00000
  1014. /** @} */ // recons group
  1015. static void rv34_apply_differences(RV34DecContext *r, int cbp)
  1016. {
  1017. static const int shifts[4] = { 0, 2, 8, 10 };
  1018. MpegEncContext *s = &r->s;
  1019. int i;
  1020. for(i = 0; i < 4; i++)
  1021. if((cbp & (LUMA_CBP_BLOCK_MASK << shifts[i])) || r->block_type == RV34_MB_P_MIX16x16)
  1022. s->dsp.add_pixels_clamped(s->block[i], s->dest[0] + (i & 1)*8 + (i&2)*4*s->linesize, s->linesize);
  1023. if(cbp & U_CBP_MASK)
  1024. s->dsp.add_pixels_clamped(s->block[4], s->dest[1], s->uvlinesize);
  1025. if(cbp & V_CBP_MASK)
  1026. s->dsp.add_pixels_clamped(s->block[5], s->dest[2], s->uvlinesize);
  1027. }
  1028. static int is_mv_diff_gt_3(int16_t (*motion_val)[2], int step)
  1029. {
  1030. int d;
  1031. d = motion_val[0][0] - motion_val[-step][0];
  1032. if(d < -3 || d > 3)
  1033. return 1;
  1034. d = motion_val[0][1] - motion_val[-step][1];
  1035. if(d < -3 || d > 3)
  1036. return 1;
  1037. return 0;
  1038. }
  1039. static int rv34_set_deblock_coef(RV34DecContext *r)
  1040. {
  1041. MpegEncContext *s = &r->s;
  1042. int hmvmask = 0, vmvmask = 0, i, j;
  1043. int midx = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  1044. int16_t (*motion_val)[2] = &s->current_picture_ptr->f.motion_val[0][midx];
  1045. for(j = 0; j < 16; j += 8){
  1046. for(i = 0; i < 2; i++){
  1047. if(is_mv_diff_gt_3(motion_val + i, 1))
  1048. vmvmask |= 0x11 << (j + i*2);
  1049. if((j || s->mb_y) && is_mv_diff_gt_3(motion_val + i, s->b8_stride))
  1050. hmvmask |= 0x03 << (j + i*2);
  1051. }
  1052. motion_val += s->b8_stride;
  1053. }
  1054. if(s->first_slice_line)
  1055. hmvmask &= ~0x000F;
  1056. if(!s->mb_x)
  1057. vmvmask &= ~0x1111;
  1058. if(r->rv30){ //RV30 marks both subblocks on the edge for filtering
  1059. vmvmask |= (vmvmask & 0x4444) >> 1;
  1060. hmvmask |= (hmvmask & 0x0F00) >> 4;
  1061. if(s->mb_x)
  1062. r->deblock_coefs[s->mb_x - 1 + s->mb_y*s->mb_stride] |= (vmvmask & 0x1111) << 3;
  1063. if(!s->first_slice_line)
  1064. r->deblock_coefs[s->mb_x + (s->mb_y - 1)*s->mb_stride] |= (hmvmask & 0xF) << 12;
  1065. }
  1066. return hmvmask | vmvmask;
  1067. }
  1068. static int rv34_decode_macroblock(RV34DecContext *r, int8_t *intra_types)
  1069. {
  1070. MpegEncContext *s = &r->s;
  1071. GetBitContext *gb = &s->gb;
  1072. int cbp, cbp2;
  1073. int i, blknum, blkoff;
  1074. DCTELEM block16[64];
  1075. int luma_dc_quant;
  1076. int dist;
  1077. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  1078. // Calculate which neighbours are available. Maybe it's worth optimizing too.
  1079. memset(r->avail_cache, 0, sizeof(r->avail_cache));
  1080. fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4);
  1081. dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
  1082. if(s->mb_x && dist)
  1083. r->avail_cache[5] =
  1084. r->avail_cache[9] = s->current_picture_ptr->f.mb_type[mb_pos - 1];
  1085. if(dist >= s->mb_width)
  1086. r->avail_cache[2] =
  1087. r->avail_cache[3] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride];
  1088. if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
  1089. r->avail_cache[4] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride + 1];
  1090. if(s->mb_x && dist > s->mb_width)
  1091. r->avail_cache[1] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride - 1];
  1092. s->qscale = r->si.quant;
  1093. cbp = cbp2 = rv34_decode_mb_header(r, intra_types);
  1094. r->cbp_luma [mb_pos] = cbp;
  1095. r->cbp_chroma[mb_pos] = cbp >> 16;
  1096. if(s->pict_type == AV_PICTURE_TYPE_I)
  1097. r->deblock_coefs[mb_pos] = 0xFFFF;
  1098. else
  1099. r->deblock_coefs[mb_pos] = rv34_set_deblock_coef(r) | r->cbp_luma[mb_pos];
  1100. s->current_picture_ptr->f.qscale_table[mb_pos] = s->qscale;
  1101. if(cbp == -1)
  1102. return -1;
  1103. luma_dc_quant = r->block_type == RV34_MB_P_MIX16x16 ? r->luma_dc_quant_p[s->qscale] : r->luma_dc_quant_i[s->qscale];
  1104. if(r->is16){
  1105. memset(block16, 0, sizeof(block16));
  1106. rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0);
  1107. rv34_dequant4x4_16x16(block16, rv34_qscale_tab[luma_dc_quant],rv34_qscale_tab[s->qscale]);
  1108. rv34_inv_transform_noround(block16);
  1109. }
  1110. for(i = 0; i < 16; i++, cbp >>= 1){
  1111. if(!r->is16 && !(cbp & 1)) continue;
  1112. blknum = ((i & 2) >> 1) + ((i & 8) >> 2);
  1113. blkoff = ((i & 1) << 2) + ((i & 4) << 3);
  1114. if(cbp & 1)
  1115. rv34_decode_block(s->block[blknum] + blkoff, gb, r->cur_vlcs, r->luma_vlc, 0);
  1116. rv34_dequant4x4(s->block[blknum] + blkoff, rv34_qscale_tab[s->qscale],rv34_qscale_tab[s->qscale]);
  1117. if(r->is16) //FIXME: optimize
  1118. s->block[blknum][blkoff] = block16[(i & 3) | ((i & 0xC) << 1)];
  1119. rv34_inv_transform(s->block[blknum] + blkoff);
  1120. }
  1121. if(r->block_type == RV34_MB_P_MIX16x16)
  1122. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
  1123. for(; i < 24; i++, cbp >>= 1){
  1124. if(!(cbp & 1)) continue;
  1125. blknum = ((i & 4) >> 2) + 4;
  1126. blkoff = ((i & 1) << 2) + ((i & 2) << 4);
  1127. rv34_decode_block(s->block[blknum] + blkoff, gb, r->cur_vlcs, r->chroma_vlc, 1);
  1128. rv34_dequant4x4(s->block[blknum] + blkoff, rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]],rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]]);
  1129. rv34_inv_transform(s->block[blknum] + blkoff);
  1130. }
  1131. if (IS_INTRA(s->current_picture_ptr->f.mb_type[mb_pos]))
  1132. rv34_output_macroblock(r, intra_types, cbp2, r->is16);
  1133. else
  1134. rv34_apply_differences(r, cbp2);
  1135. return 0;
  1136. }
  1137. static int check_slice_end(RV34DecContext *r, MpegEncContext *s)
  1138. {
  1139. int bits;
  1140. if(s->mb_y >= s->mb_height)
  1141. return 1;
  1142. if(!s->mb_num_left)
  1143. return 1;
  1144. if(r->s.mb_skip_run > 1)
  1145. return 0;
  1146. bits = r->bits - get_bits_count(&s->gb);
  1147. if(bits < 0 || (bits < 8 && !show_bits(&s->gb, bits)))
  1148. return 1;
  1149. return 0;
  1150. }
  1151. static int rv34_decode_slice(RV34DecContext *r, int end, const uint8_t* buf, int buf_size)
  1152. {
  1153. MpegEncContext *s = &r->s;
  1154. GetBitContext *gb = &s->gb;
  1155. int mb_pos;
  1156. int res;
  1157. init_get_bits(&r->s.gb, buf, buf_size*8);
  1158. res = r->parse_slice_header(r, gb, &r->si);
  1159. if(res < 0){
  1160. av_log(s->avctx, AV_LOG_ERROR, "Incorrect or unknown slice header\n");
  1161. return -1;
  1162. }
  1163. if ((s->mb_x == 0 && s->mb_y == 0) || s->current_picture_ptr==NULL) {
  1164. if(s->width != r->si.width || s->height != r->si.height){
  1165. av_log(s->avctx, AV_LOG_DEBUG, "Changing dimensions to %dx%d\n", r->si.width,r->si.height);
  1166. MPV_common_end(s);
  1167. s->width = r->si.width;
  1168. s->height = r->si.height;
  1169. avcodec_set_dimensions(s->avctx, s->width, s->height);
  1170. if(MPV_common_init(s) < 0)
  1171. return -1;
  1172. r->intra_types_stride = s->mb_width*4 + 4;
  1173. r->intra_types_hist = av_realloc(r->intra_types_hist, r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1174. r->intra_types = r->intra_types_hist + r->intra_types_stride * 4;
  1175. r->mb_type = av_realloc(r->mb_type, r->s.mb_stride * r->s.mb_height * sizeof(*r->mb_type));
  1176. r->cbp_luma = av_realloc(r->cbp_luma, r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_luma));
  1177. r->cbp_chroma = av_realloc(r->cbp_chroma, r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_chroma));
  1178. r->deblock_coefs = av_realloc(r->deblock_coefs, r->s.mb_stride * r->s.mb_height * sizeof(*r->deblock_coefs));
  1179. av_freep(&r->tmp_b_block_base);
  1180. }
  1181. s->pict_type = r->si.type ? r->si.type : AV_PICTURE_TYPE_I;
  1182. if(MPV_frame_start(s, s->avctx) < 0)
  1183. return -1;
  1184. ff_er_frame_start(s);
  1185. if (!r->tmp_b_block_base) {
  1186. int i;
  1187. r->tmp_b_block_base = av_malloc(s->linesize * 48);
  1188. for (i = 0; i < 2; i++)
  1189. r->tmp_b_block_y[i] = r->tmp_b_block_base + i * 16 * s->linesize;
  1190. for (i = 0; i < 4; i++)
  1191. r->tmp_b_block_uv[i] = r->tmp_b_block_base + 32 * s->linesize
  1192. + (i >> 1) * 8 * s->uvlinesize + (i & 1) * 16;
  1193. }
  1194. r->cur_pts = r->si.pts;
  1195. if(s->pict_type != AV_PICTURE_TYPE_B){
  1196. r->last_pts = r->next_pts;
  1197. r->next_pts = r->cur_pts;
  1198. }else{
  1199. int refdist = GET_PTS_DIFF(r->next_pts, r->last_pts);
  1200. int dist0 = GET_PTS_DIFF(r->cur_pts, r->last_pts);
  1201. int dist1 = GET_PTS_DIFF(r->next_pts, r->cur_pts);
  1202. if(!refdist){
  1203. r->weight1 = r->weight2 = 8192;
  1204. }else{
  1205. r->weight1 = (dist0 << 14) / refdist;
  1206. r->weight2 = (dist1 << 14) / refdist;
  1207. }
  1208. }
  1209. s->mb_x = s->mb_y = 0;
  1210. } else {
  1211. int slice_type = r->si.type ? r->si.type : AV_PICTURE_TYPE_I;
  1212. if (slice_type != s->pict_type) {
  1213. av_log(s->avctx, AV_LOG_ERROR, "Slice type mismatch\n");
  1214. return AVERROR_INVALIDDATA;
  1215. }
  1216. if (s->width != r->si.width || s->height != r->si.height) {
  1217. av_log(s->avctx, AV_LOG_ERROR, "Size mismatch\n");
  1218. return AVERROR_INVALIDDATA;
  1219. }
  1220. }
  1221. r->si.end = end;
  1222. s->qscale = r->si.quant;
  1223. r->bits = buf_size*8;
  1224. s->mb_num_left = r->si.end - r->si.start;
  1225. r->s.mb_skip_run = 0;
  1226. mb_pos = s->mb_x + s->mb_y * s->mb_width;
  1227. if(r->si.start != mb_pos){
  1228. av_log(s->avctx, AV_LOG_ERROR, "Slice indicates MB offset %d, got %d\n", r->si.start, mb_pos);
  1229. s->mb_x = r->si.start % s->mb_width;
  1230. s->mb_y = r->si.start / s->mb_width;
  1231. }
  1232. memset(r->intra_types_hist, -1, r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1233. s->first_slice_line = 1;
  1234. s->resync_mb_x = s->mb_x;
  1235. s->resync_mb_y = s->mb_y;
  1236. ff_init_block_index(s);
  1237. while(!check_slice_end(r, s)) {
  1238. ff_update_block_index(s);
  1239. s->dsp.clear_blocks(s->block[0]);
  1240. if(rv34_decode_macroblock(r, r->intra_types + s->mb_x * 4 + 4) < 0){
  1241. 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);
  1242. return -1;
  1243. }
  1244. if (++s->mb_x == s->mb_width) {
  1245. s->mb_x = 0;
  1246. s->mb_y++;
  1247. ff_init_block_index(s);
  1248. memmove(r->intra_types_hist, r->intra_types, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
  1249. memset(r->intra_types, -1, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
  1250. if(r->loop_filter && s->mb_y >= 2)
  1251. r->loop_filter(r, s->mb_y - 2);
  1252. }
  1253. if(s->mb_x == s->resync_mb_x)
  1254. s->first_slice_line=0;
  1255. s->mb_num_left--;
  1256. }
  1257. 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);
  1258. return s->mb_y == s->mb_height;
  1259. }
  1260. /** @} */ // recons group end
  1261. /**
  1262. * Initialize decoder.
  1263. */
  1264. av_cold int ff_rv34_decode_init(AVCodecContext *avctx)
  1265. {
  1266. RV34DecContext *r = avctx->priv_data;
  1267. MpegEncContext *s = &r->s;
  1268. MPV_decode_defaults(s);
  1269. s->avctx = avctx;
  1270. s->out_format = FMT_H263;
  1271. s->codec_id = avctx->codec_id;
  1272. s->width = avctx->width;
  1273. s->height = avctx->height;
  1274. r->s.avctx = avctx;
  1275. avctx->flags |= CODEC_FLAG_EMU_EDGE;
  1276. r->s.flags |= CODEC_FLAG_EMU_EDGE;
  1277. avctx->pix_fmt = PIX_FMT_YUV420P;
  1278. avctx->has_b_frames = 1;
  1279. s->low_delay = 0;
  1280. if (MPV_common_init(s) < 0)
  1281. return -1;
  1282. ff_h264_pred_init(&r->h, CODEC_ID_RV40, 8, 1);
  1283. #if CONFIG_RV30_DECODER
  1284. if (avctx->codec_id == CODEC_ID_RV30)
  1285. ff_rv30dsp_init(&r->rdsp, &r->s.dsp);
  1286. #endif
  1287. #if CONFIG_RV40_DECODER
  1288. if (avctx->codec_id == CODEC_ID_RV40)
  1289. ff_rv40dsp_init(&r->rdsp, &r->s.dsp);
  1290. #endif
  1291. r->intra_types_stride = 4*s->mb_stride + 4;
  1292. r->intra_types_hist = av_malloc(r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1293. r->intra_types = r->intra_types_hist + r->intra_types_stride * 4;
  1294. r->mb_type = av_mallocz(r->s.mb_stride * r->s.mb_height * sizeof(*r->mb_type));
  1295. r->cbp_luma = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_luma));
  1296. r->cbp_chroma = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_chroma));
  1297. r->deblock_coefs = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->deblock_coefs));
  1298. if(!intra_vlcs[0].cbppattern[0].bits)
  1299. rv34_init_tables();
  1300. return 0;
  1301. }
  1302. static int get_slice_offset(AVCodecContext *avctx, const uint8_t *buf, int n)
  1303. {
  1304. if(avctx->slice_count) return avctx->slice_offset[n];
  1305. else return AV_RL32(buf + n*8 - 4) == 1 ? AV_RL32(buf + n*8) : AV_RB32(buf + n*8);
  1306. }
  1307. int ff_rv34_decode_frame(AVCodecContext *avctx,
  1308. void *data, int *data_size,
  1309. AVPacket *avpkt)
  1310. {
  1311. const uint8_t *buf = avpkt->data;
  1312. int buf_size = avpkt->size;
  1313. RV34DecContext *r = avctx->priv_data;
  1314. MpegEncContext *s = &r->s;
  1315. AVFrame *pict = data;
  1316. SliceInfo si;
  1317. int i;
  1318. int slice_count;
  1319. const uint8_t *slices_hdr = NULL;
  1320. int last = 0;
  1321. /* no supplementary picture */
  1322. if (buf_size == 0) {
  1323. /* special case for last picture */
  1324. if (s->low_delay==0 && s->next_picture_ptr) {
  1325. *pict = *(AVFrame*)s->next_picture_ptr;
  1326. s->next_picture_ptr = NULL;
  1327. *data_size = sizeof(AVFrame);
  1328. }
  1329. return 0;
  1330. }
  1331. if(!avctx->slice_count){
  1332. slice_count = (*buf++) + 1;
  1333. slices_hdr = buf + 4;
  1334. buf += 8 * slice_count;
  1335. buf_size -= 1 + 8 * slice_count;
  1336. }else
  1337. slice_count = avctx->slice_count;
  1338. //parse first slice header to check whether this frame can be decoded
  1339. if(get_slice_offset(avctx, slices_hdr, 0) < 0 ||
  1340. get_slice_offset(avctx, slices_hdr, 0) > buf_size){
  1341. av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
  1342. return -1;
  1343. }
  1344. init_get_bits(&s->gb, buf+get_slice_offset(avctx, slices_hdr, 0), (buf_size-get_slice_offset(avctx, slices_hdr, 0))*8);
  1345. if(r->parse_slice_header(r, &r->s.gb, &si) < 0 || si.start){
  1346. av_log(avctx, AV_LOG_ERROR, "First slice header is incorrect\n");
  1347. return -1;
  1348. }
  1349. if ((!s->last_picture_ptr || !s->last_picture_ptr->f.data[0]) && si.type == AV_PICTURE_TYPE_B)
  1350. return -1;
  1351. if( (avctx->skip_frame >= AVDISCARD_NONREF && si.type==AV_PICTURE_TYPE_B)
  1352. || (avctx->skip_frame >= AVDISCARD_NONKEY && si.type!=AV_PICTURE_TYPE_I)
  1353. || avctx->skip_frame >= AVDISCARD_ALL)
  1354. return avpkt->size;
  1355. for(i = 0; i < slice_count; i++){
  1356. int offset = get_slice_offset(avctx, slices_hdr, i);
  1357. int size;
  1358. if(i+1 == slice_count)
  1359. size = buf_size - offset;
  1360. else
  1361. size = get_slice_offset(avctx, slices_hdr, i+1) - offset;
  1362. if(offset < 0 || offset > buf_size){
  1363. av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
  1364. break;
  1365. }
  1366. r->si.end = s->mb_width * s->mb_height;
  1367. if(i+1 < slice_count){
  1368. if (get_slice_offset(avctx, slices_hdr, i+1) < 0 ||
  1369. get_slice_offset(avctx, slices_hdr, i+1) > buf_size) {
  1370. av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
  1371. break;
  1372. }
  1373. 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);
  1374. if(r->parse_slice_header(r, &r->s.gb, &si) < 0){
  1375. if(i+2 < slice_count)
  1376. size = get_slice_offset(avctx, slices_hdr, i+2) - offset;
  1377. else
  1378. size = buf_size - offset;
  1379. }else
  1380. r->si.end = si.start;
  1381. }
  1382. if (size < 0 || size > buf_size - offset) {
  1383. av_log(avctx, AV_LOG_ERROR, "Slice size is invalid\n");
  1384. break;
  1385. }
  1386. last = rv34_decode_slice(r, r->si.end, buf + offset, size);
  1387. s->mb_num_left = r->s.mb_x + r->s.mb_y*r->s.mb_width - r->si.start;
  1388. if(last)
  1389. break;
  1390. }
  1391. if(last && s->current_picture_ptr){
  1392. if(r->loop_filter)
  1393. r->loop_filter(r, s->mb_height - 1);
  1394. ff_er_frame_end(s);
  1395. MPV_frame_end(s);
  1396. if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
  1397. *pict = *(AVFrame*)s->current_picture_ptr;
  1398. } else if (s->last_picture_ptr != NULL) {
  1399. *pict = *(AVFrame*)s->last_picture_ptr;
  1400. }
  1401. if(s->last_picture_ptr || s->low_delay){
  1402. *data_size = sizeof(AVFrame);
  1403. ff_print_debug_info(s, pict);
  1404. }
  1405. s->current_picture_ptr = NULL; //so we can detect if frame_end wasnt called (find some nicer solution...)
  1406. }
  1407. return avpkt->size;
  1408. }
  1409. av_cold int ff_rv34_decode_end(AVCodecContext *avctx)
  1410. {
  1411. RV34DecContext *r = avctx->priv_data;
  1412. MPV_common_end(&r->s);
  1413. av_freep(&r->intra_types_hist);
  1414. r->intra_types = NULL;
  1415. av_freep(&r->tmp_b_block_base);
  1416. av_freep(&r->mb_type);
  1417. av_freep(&r->cbp_luma);
  1418. av_freep(&r->cbp_chroma);
  1419. av_freep(&r->deblock_coefs);
  1420. return 0;
  1421. }