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.

1807 lines
63KB

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