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.

1497 lines
54KB

  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 4x4 block decoding functions
  155. * @{
  156. */
  157. /**
  158. * Decode coded block pattern.
  159. */
  160. static int rv34_decode_cbp(GetBitContext *gb, RV34VLC *vlc, int table)
  161. {
  162. int pattern, code, cbp=0;
  163. int ones;
  164. static const int cbp_masks[3] = {0x100000, 0x010000, 0x110000};
  165. static const int shifts[4] = { 0, 2, 8, 10 };
  166. const int *curshift = shifts;
  167. int i, t, mask;
  168. code = get_vlc2(gb, vlc->cbppattern[table].table, 9, 2);
  169. pattern = code & 0xF;
  170. code >>= 4;
  171. ones = rv34_count_ones[pattern];
  172. for(mask = 8; mask; mask >>= 1, curshift++){
  173. if(pattern & mask)
  174. cbp |= get_vlc2(gb, vlc->cbp[table][ones].table, vlc->cbp[table][ones].bits, 1) << curshift[0];
  175. }
  176. for(i = 0; i < 4; i++){
  177. t = modulo_three_table[code][i];
  178. if(t == 1)
  179. cbp |= cbp_masks[get_bits1(gb)] << i;
  180. if(t == 2)
  181. cbp |= cbp_masks[2] << i;
  182. }
  183. return cbp;
  184. }
  185. /**
  186. * Get one coefficient value from the bistream and store it.
  187. */
  188. static inline void decode_coeff(DCTELEM *dst, int coef, int esc, GetBitContext *gb, VLC* vlc)
  189. {
  190. if(coef){
  191. if(coef == esc){
  192. coef = get_vlc2(gb, vlc->table, 9, 2);
  193. if(coef > 23){
  194. coef -= 23;
  195. coef = 22 + ((1 << coef) | get_bits(gb, coef));
  196. }
  197. coef += esc;
  198. }
  199. if(get_bits1(gb))
  200. coef = -coef;
  201. *dst = coef;
  202. }
  203. }
  204. /**
  205. * Decode 2x2 subblock of coefficients.
  206. */
  207. static inline void decode_subblock(DCTELEM *dst, int code, const int is_block2, GetBitContext *gb, VLC *vlc)
  208. {
  209. int coeffs[4];
  210. coeffs[0] = modulo_three_table[code][0];
  211. coeffs[1] = modulo_three_table[code][1];
  212. coeffs[2] = modulo_three_table[code][2];
  213. coeffs[3] = modulo_three_table[code][3];
  214. decode_coeff(dst , coeffs[0], 3, gb, vlc);
  215. if(is_block2){
  216. decode_coeff(dst+8, coeffs[1], 2, gb, vlc);
  217. decode_coeff(dst+1, coeffs[2], 2, gb, vlc);
  218. }else{
  219. decode_coeff(dst+1, coeffs[1], 2, gb, vlc);
  220. decode_coeff(dst+8, coeffs[2], 2, gb, vlc);
  221. }
  222. decode_coeff(dst+9, coeffs[3], 2, gb, vlc);
  223. }
  224. /**
  225. * Decode coefficients for 4x4 block.
  226. *
  227. * This is done by filling 2x2 subblocks with decoded coefficients
  228. * in this order (the same for subblocks and subblock coefficients):
  229. * o--o
  230. * /
  231. * /
  232. * o--o
  233. */
  234. static inline void rv34_decode_block(DCTELEM *dst, GetBitContext *gb, RV34VLC *rvlc, int fc, int sc)
  235. {
  236. int code, pattern;
  237. code = get_vlc2(gb, rvlc->first_pattern[fc].table, 9, 2);
  238. pattern = code & 0x7;
  239. code >>= 3;
  240. decode_subblock(dst, code, 0, gb, &rvlc->coefficient);
  241. if(pattern & 4){
  242. code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
  243. decode_subblock(dst + 2, code, 0, gb, &rvlc->coefficient);
  244. }
  245. if(pattern & 2){ // Looks like coefficients 1 and 2 are swapped for this block
  246. code = get_vlc2(gb, rvlc->second_pattern[sc].table, 9, 2);
  247. decode_subblock(dst + 8*2, code, 1, gb, &rvlc->coefficient);
  248. }
  249. if(pattern & 1){
  250. code = get_vlc2(gb, rvlc->third_pattern[sc].table, 9, 2);
  251. decode_subblock(dst + 8*2+2, code, 0, gb, &rvlc->coefficient);
  252. }
  253. }
  254. /**
  255. * Dequantize 4x4 block of DC values for 16x16 macroblock.
  256. * @todo optimize
  257. */
  258. static inline void rv34_dequant4x4_16x16(DCTELEM *block, int Qdc, int Q)
  259. {
  260. int i;
  261. for(i = 0; i < 3; i++)
  262. block[rv34_dezigzag[i]] = (block[rv34_dezigzag[i]] * Qdc + 8) >> 4;
  263. for(; i < 16; i++)
  264. block[rv34_dezigzag[i]] = (block[rv34_dezigzag[i]] * Q + 8) >> 4;
  265. }
  266. /** @} */ //block functions
  267. /**
  268. * @name RV30/40 bitstream parsing
  269. * @{
  270. */
  271. /**
  272. * Decode starting slice position.
  273. * @todo Maybe replace with ff_h263_decode_mba() ?
  274. */
  275. int ff_rv34_get_start_offset(GetBitContext *gb, int mb_size)
  276. {
  277. int i;
  278. for(i = 0; i < 5; i++)
  279. if(rv34_mb_max_sizes[i] >= mb_size - 1)
  280. break;
  281. return rv34_mb_bits_sizes[i];
  282. }
  283. /**
  284. * Select VLC set for decoding from current quantizer, modifier and frame type.
  285. */
  286. static inline RV34VLC* choose_vlc_set(int quant, int mod, int type)
  287. {
  288. if(mod == 2 && quant < 19) quant += 10;
  289. else if(mod && quant < 26) quant += 5;
  290. return type ? &inter_vlcs[rv34_quant_to_vlc_set[1][av_clip(quant, 0, 30)]]
  291. : &intra_vlcs[rv34_quant_to_vlc_set[0][av_clip(quant, 0, 30)]];
  292. }
  293. /**
  294. * Decode macroblock header and return CBP in case of success, -1 otherwise.
  295. */
  296. static int rv34_decode_mb_header(RV34DecContext *r, int8_t *intra_types)
  297. {
  298. MpegEncContext *s = &r->s;
  299. GetBitContext *gb = &s->gb;
  300. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  301. int i, t;
  302. if(!r->si.type){
  303. r->is16 = get_bits1(gb);
  304. if(!r->is16 && !r->rv30){
  305. if(!get_bits1(gb))
  306. av_log(s->avctx, AV_LOG_ERROR, "Need DQUANT\n");
  307. }
  308. s->current_picture_ptr->f.mb_type[mb_pos] = r->is16 ? MB_TYPE_INTRA16x16 : MB_TYPE_INTRA;
  309. r->block_type = r->is16 ? RV34_MB_TYPE_INTRA16x16 : RV34_MB_TYPE_INTRA;
  310. }else{
  311. r->block_type = r->decode_mb_info(r);
  312. if(r->block_type == -1)
  313. return -1;
  314. s->current_picture_ptr->f.mb_type[mb_pos] = rv34_mb_type_to_lavc[r->block_type];
  315. r->mb_type[mb_pos] = r->block_type;
  316. if(r->block_type == RV34_MB_SKIP){
  317. if(s->pict_type == AV_PICTURE_TYPE_P)
  318. r->mb_type[mb_pos] = RV34_MB_P_16x16;
  319. if(s->pict_type == AV_PICTURE_TYPE_B)
  320. r->mb_type[mb_pos] = RV34_MB_B_DIRECT;
  321. }
  322. r->is16 = !!IS_INTRA16x16(s->current_picture_ptr->f.mb_type[mb_pos]);
  323. rv34_decode_mv(r, r->block_type);
  324. if(r->block_type == RV34_MB_SKIP){
  325. fill_rectangle(intra_types, 4, 4, r->intra_types_stride, 0, sizeof(intra_types[0]));
  326. return 0;
  327. }
  328. r->chroma_vlc = 1;
  329. r->luma_vlc = 0;
  330. }
  331. if(IS_INTRA(s->current_picture_ptr->f.mb_type[mb_pos])){
  332. if(r->is16){
  333. t = get_bits(gb, 2);
  334. fill_rectangle(intra_types, 4, 4, r->intra_types_stride, t, sizeof(intra_types[0]));
  335. r->luma_vlc = 2;
  336. }else{
  337. if(r->decode_intra_types(r, gb, intra_types) < 0)
  338. return -1;
  339. r->luma_vlc = 1;
  340. }
  341. r->chroma_vlc = 0;
  342. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
  343. }else{
  344. for(i = 0; i < 16; i++)
  345. intra_types[(i & 3) + (i>>2) * r->intra_types_stride] = 0;
  346. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
  347. if(r->mb_type[mb_pos] == RV34_MB_P_MIX16x16){
  348. r->is16 = 1;
  349. r->chroma_vlc = 1;
  350. r->luma_vlc = 2;
  351. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 0);
  352. }
  353. }
  354. return rv34_decode_cbp(gb, r->cur_vlcs, r->is16);
  355. }
  356. /** @} */ //bitstream functions
  357. /**
  358. * @name motion vector related code (prediction, reconstruction, motion compensation)
  359. * @{
  360. */
  361. /** macroblock partition width in 8x8 blocks */
  362. static const uint8_t part_sizes_w[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2 };
  363. /** macroblock partition height in 8x8 blocks */
  364. static const uint8_t part_sizes_h[RV34_MB_TYPES] = { 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2 };
  365. /** availability index for subblocks */
  366. static const uint8_t avail_indexes[4] = { 6, 7, 10, 11 };
  367. /**
  368. * motion vector prediction
  369. *
  370. * Motion prediction performed for the block by using median prediction of
  371. * motion vectors from the left, top and right top blocks but in corner cases
  372. * some other vectors may be used instead.
  373. */
  374. static void rv34_pred_mv(RV34DecContext *r, int block_type, int subblock_no, int dmv_no)
  375. {
  376. MpegEncContext *s = &r->s;
  377. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  378. int A[2] = {0}, B[2], C[2];
  379. int i, j;
  380. int mx, my;
  381. int avail_index = avail_indexes[subblock_no];
  382. int c_off = part_sizes_w[block_type];
  383. mv_pos += (subblock_no & 1) + (subblock_no >> 1)*s->b8_stride;
  384. if(subblock_no == 3)
  385. c_off = -1;
  386. if(r->avail_cache[avail_index - 1]){
  387. A[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-1][0];
  388. A[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-1][1];
  389. }
  390. if(r->avail_cache[avail_index - 4]){
  391. B[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride][0];
  392. B[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride][1];
  393. }else{
  394. B[0] = A[0];
  395. B[1] = A[1];
  396. }
  397. if(!r->avail_cache[avail_index - 4 + c_off]){
  398. if(r->avail_cache[avail_index - 4] && (r->avail_cache[avail_index - 1] || r->rv30)){
  399. C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride-1][0];
  400. C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride-1][1];
  401. }else{
  402. C[0] = A[0];
  403. C[1] = A[1];
  404. }
  405. }else{
  406. C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride+c_off][0];
  407. C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos-s->b8_stride+c_off][1];
  408. }
  409. mx = mid_pred(A[0], B[0], C[0]);
  410. my = mid_pred(A[1], B[1], C[1]);
  411. mx += r->dmv[dmv_no][0];
  412. my += r->dmv[dmv_no][1];
  413. for(j = 0; j < part_sizes_h[block_type]; j++){
  414. for(i = 0; i < part_sizes_w[block_type]; i++){
  415. s->current_picture_ptr->f.motion_val[0][mv_pos + i + j*s->b8_stride][0] = mx;
  416. s->current_picture_ptr->f.motion_val[0][mv_pos + i + j*s->b8_stride][1] = my;
  417. }
  418. }
  419. }
  420. #define GET_PTS_DIFF(a, b) ((a - b + 8192) & 0x1FFF)
  421. /**
  422. * Calculate motion vector component that should be added for direct blocks.
  423. */
  424. static int calc_add_mv(RV34DecContext *r, int dir, int val)
  425. {
  426. int mul = dir ? -r->weight2 : r->weight1;
  427. return (val * mul + 0x2000) >> 14;
  428. }
  429. /**
  430. * Predict motion vector for B-frame macroblock.
  431. */
  432. static inline void rv34_pred_b_vector(int A[2], int B[2], int C[2],
  433. int A_avail, int B_avail, int C_avail,
  434. int *mx, int *my)
  435. {
  436. if(A_avail + B_avail + C_avail != 3){
  437. *mx = A[0] + B[0] + C[0];
  438. *my = A[1] + B[1] + C[1];
  439. if(A_avail + B_avail + C_avail == 2){
  440. *mx /= 2;
  441. *my /= 2;
  442. }
  443. }else{
  444. *mx = mid_pred(A[0], B[0], C[0]);
  445. *my = mid_pred(A[1], B[1], C[1]);
  446. }
  447. }
  448. /**
  449. * motion vector prediction for B-frames
  450. */
  451. static void rv34_pred_mv_b(RV34DecContext *r, int block_type, int dir)
  452. {
  453. MpegEncContext *s = &r->s;
  454. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  455. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  456. int A[2], B[2], C[2];
  457. int has_A = 0, has_B = 0, has_C = 0;
  458. int mx, my;
  459. int i, j;
  460. Picture *cur_pic = s->current_picture_ptr;
  461. const int mask = dir ? MB_TYPE_L1 : MB_TYPE_L0;
  462. int type = cur_pic->f.mb_type[mb_pos];
  463. memset(A, 0, sizeof(A));
  464. memset(B, 0, sizeof(B));
  465. memset(C, 0, sizeof(C));
  466. if((r->avail_cache[6-1] & type) & mask){
  467. A[0] = cur_pic->f.motion_val[dir][mv_pos - 1][0];
  468. A[1] = cur_pic->f.motion_val[dir][mv_pos - 1][1];
  469. has_A = 1;
  470. }
  471. if((r->avail_cache[6-4] & type) & mask){
  472. B[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride][0];
  473. B[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride][1];
  474. has_B = 1;
  475. }
  476. if(r->avail_cache[6-4] && (r->avail_cache[6-2] & type) & mask){
  477. C[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride + 2][0];
  478. C[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride + 2][1];
  479. has_C = 1;
  480. }else if((s->mb_x+1) == s->mb_width && (r->avail_cache[6-5] & type) & mask){
  481. C[0] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride - 1][0];
  482. C[1] = cur_pic->f.motion_val[dir][mv_pos - s->b8_stride - 1][1];
  483. has_C = 1;
  484. }
  485. rv34_pred_b_vector(A, B, C, has_A, has_B, has_C, &mx, &my);
  486. mx += r->dmv[dir][0];
  487. my += r->dmv[dir][1];
  488. for(j = 0; j < 2; j++){
  489. for(i = 0; i < 2; i++){
  490. cur_pic->f.motion_val[dir][mv_pos + i + j*s->b8_stride][0] = mx;
  491. cur_pic->f.motion_val[dir][mv_pos + i + j*s->b8_stride][1] = my;
  492. }
  493. }
  494. if(block_type == RV34_MB_B_BACKWARD || block_type == RV34_MB_B_FORWARD){
  495. ZERO8x2(cur_pic->f.motion_val[!dir][mv_pos], s->b8_stride);
  496. }
  497. }
  498. /**
  499. * motion vector prediction - RV3 version
  500. */
  501. static void rv34_pred_mv_rv3(RV34DecContext *r, int block_type, int dir)
  502. {
  503. MpegEncContext *s = &r->s;
  504. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  505. int A[2] = {0}, B[2], C[2];
  506. int i, j, k;
  507. int mx, my;
  508. int avail_index = avail_indexes[0];
  509. if(r->avail_cache[avail_index - 1]){
  510. A[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - 1][0];
  511. A[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - 1][1];
  512. }
  513. if(r->avail_cache[avail_index - 4]){
  514. B[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride][0];
  515. B[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride][1];
  516. }else{
  517. B[0] = A[0];
  518. B[1] = A[1];
  519. }
  520. if(!r->avail_cache[avail_index - 4 + 2]){
  521. if(r->avail_cache[avail_index - 4] && (r->avail_cache[avail_index - 1])){
  522. C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride - 1][0];
  523. C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride - 1][1];
  524. }else{
  525. C[0] = A[0];
  526. C[1] = A[1];
  527. }
  528. }else{
  529. C[0] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride + 2][0];
  530. C[1] = s->current_picture_ptr->f.motion_val[0][mv_pos - s->b8_stride + 2][1];
  531. }
  532. mx = mid_pred(A[0], B[0], C[0]);
  533. my = mid_pred(A[1], B[1], C[1]);
  534. mx += r->dmv[0][0];
  535. my += r->dmv[0][1];
  536. for(j = 0; j < 2; j++){
  537. for(i = 0; i < 2; i++){
  538. for(k = 0; k < 2; k++){
  539. s->current_picture_ptr->f.motion_val[k][mv_pos + i + j*s->b8_stride][0] = mx;
  540. s->current_picture_ptr->f.motion_val[k][mv_pos + i + j*s->b8_stride][1] = my;
  541. }
  542. }
  543. }
  544. }
  545. static const int chroma_coeffs[3] = { 0, 3, 5 };
  546. /**
  547. * generic motion compensation function
  548. *
  549. * @param r decoder context
  550. * @param block_type type of the current block
  551. * @param xoff horizontal offset from the start of the current block
  552. * @param yoff vertical offset from the start of the current block
  553. * @param mv_off offset to the motion vector information
  554. * @param width width of the current partition in 8x8 blocks
  555. * @param height height of the current partition in 8x8 blocks
  556. * @param dir motion compensation direction (i.e. from the last or the next reference frame)
  557. * @param thirdpel motion vectors are specified in 1/3 of pixel
  558. * @param qpel_mc a set of functions used to perform luma motion compensation
  559. * @param chroma_mc a set of functions used to perform chroma motion compensation
  560. */
  561. static inline void rv34_mc(RV34DecContext *r, const int block_type,
  562. const int xoff, const int yoff, int mv_off,
  563. const int width, const int height, int dir,
  564. const int thirdpel, int weighted,
  565. qpel_mc_func (*qpel_mc)[16],
  566. h264_chroma_mc_func (*chroma_mc))
  567. {
  568. MpegEncContext *s = &r->s;
  569. uint8_t *Y, *U, *V, *srcY, *srcU, *srcV;
  570. int dxy, mx, my, umx, umy, lx, ly, uvmx, uvmy, src_x, src_y, uvsrc_x, uvsrc_y;
  571. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride + mv_off;
  572. int is16x16 = 1;
  573. if(thirdpel){
  574. int chroma_mx, chroma_my;
  575. mx = (s->current_picture_ptr->f.motion_val[dir][mv_pos][0] + (3 << 24)) / 3 - (1 << 24);
  576. my = (s->current_picture_ptr->f.motion_val[dir][mv_pos][1] + (3 << 24)) / 3 - (1 << 24);
  577. lx = (s->current_picture_ptr->f.motion_val[dir][mv_pos][0] + (3 << 24)) % 3;
  578. ly = (s->current_picture_ptr->f.motion_val[dir][mv_pos][1] + (3 << 24)) % 3;
  579. chroma_mx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] / 2;
  580. chroma_my = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] / 2;
  581. umx = (chroma_mx + (3 << 24)) / 3 - (1 << 24);
  582. umy = (chroma_my + (3 << 24)) / 3 - (1 << 24);
  583. uvmx = chroma_coeffs[(chroma_mx + (3 << 24)) % 3];
  584. uvmy = chroma_coeffs[(chroma_my + (3 << 24)) % 3];
  585. }else{
  586. int cx, cy;
  587. mx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] >> 2;
  588. my = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] >> 2;
  589. lx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] & 3;
  590. ly = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] & 3;
  591. cx = s->current_picture_ptr->f.motion_val[dir][mv_pos][0] / 2;
  592. cy = s->current_picture_ptr->f.motion_val[dir][mv_pos][1] / 2;
  593. umx = cx >> 2;
  594. umy = cy >> 2;
  595. uvmx = (cx & 3) << 1;
  596. uvmy = (cy & 3) << 1;
  597. //due to some flaw RV40 uses the same MC compensation routine for H2V2 and H3V3
  598. if(uvmx == 6 && uvmy == 6)
  599. uvmx = uvmy = 4;
  600. }
  601. dxy = ly*4 + lx;
  602. srcY = dir ? s->next_picture_ptr->f.data[0] : s->last_picture_ptr->f.data[0];
  603. srcU = dir ? s->next_picture_ptr->f.data[1] : s->last_picture_ptr->f.data[1];
  604. srcV = dir ? s->next_picture_ptr->f.data[2] : s->last_picture_ptr->f.data[2];
  605. src_x = s->mb_x * 16 + xoff + mx;
  606. src_y = s->mb_y * 16 + yoff + my;
  607. uvsrc_x = s->mb_x * 8 + (xoff >> 1) + umx;
  608. uvsrc_y = s->mb_y * 8 + (yoff >> 1) + umy;
  609. srcY += src_y * s->linesize + src_x;
  610. srcU += uvsrc_y * s->uvlinesize + uvsrc_x;
  611. srcV += uvsrc_y * s->uvlinesize + uvsrc_x;
  612. if( (unsigned)(src_x - !!lx*2) > s->h_edge_pos - !!lx*2 - (width <<3) - 4
  613. || (unsigned)(src_y - !!ly*2) > s->v_edge_pos - !!ly*2 - (height<<3) - 4){
  614. uint8_t *uvbuf = s->edge_emu_buffer + 22 * s->linesize;
  615. srcY -= 2 + 2*s->linesize;
  616. s->dsp.emulated_edge_mc(s->edge_emu_buffer, srcY, s->linesize, (width<<3)+6, (height<<3)+6,
  617. src_x - 2, src_y - 2, s->h_edge_pos, s->v_edge_pos);
  618. srcY = s->edge_emu_buffer + 2 + 2*s->linesize;
  619. s->dsp.emulated_edge_mc(uvbuf , srcU, s->uvlinesize, (width<<2)+1, (height<<2)+1,
  620. uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
  621. s->dsp.emulated_edge_mc(uvbuf + 16, srcV, s->uvlinesize, (width<<2)+1, (height<<2)+1,
  622. uvsrc_x, uvsrc_y, s->h_edge_pos >> 1, s->v_edge_pos >> 1);
  623. srcU = uvbuf;
  624. srcV = uvbuf + 16;
  625. }
  626. if(!weighted){
  627. Y = s->dest[0] + xoff + yoff *s->linesize;
  628. U = s->dest[1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  629. V = s->dest[2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  630. }else{
  631. Y = r->tmp_b_block_y [dir] + xoff + yoff *s->linesize;
  632. U = r->tmp_b_block_uv[dir*2] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  633. V = r->tmp_b_block_uv[dir*2+1] + (xoff>>1) + (yoff>>1)*s->uvlinesize;
  634. }
  635. if(block_type == RV34_MB_P_16x8){
  636. qpel_mc[1][dxy](Y, srcY, s->linesize);
  637. Y += 8;
  638. srcY += 8;
  639. }else if(block_type == RV34_MB_P_8x16){
  640. qpel_mc[1][dxy](Y, srcY, s->linesize);
  641. Y += 8 * s->linesize;
  642. srcY += 8 * s->linesize;
  643. }
  644. is16x16 = (block_type != RV34_MB_P_8x8) && (block_type != RV34_MB_P_16x8) && (block_type != RV34_MB_P_8x16);
  645. qpel_mc[!is16x16][dxy](Y, srcY, s->linesize);
  646. chroma_mc[2-width] (U, srcU, s->uvlinesize, height*4, uvmx, uvmy);
  647. chroma_mc[2-width] (V, srcV, s->uvlinesize, height*4, uvmx, uvmy);
  648. }
  649. static void rv34_mc_1mv(RV34DecContext *r, const int block_type,
  650. const int xoff, const int yoff, int mv_off,
  651. const int width, const int height, int dir)
  652. {
  653. rv34_mc(r, block_type, xoff, yoff, mv_off, width, height, dir, r->rv30, 0,
  654. r->rdsp.put_pixels_tab,
  655. r->rdsp.put_chroma_pixels_tab);
  656. }
  657. static void rv4_weight(RV34DecContext *r)
  658. {
  659. r->rdsp.rv40_weight_pixels_tab[0](r->s.dest[0],
  660. r->tmp_b_block_y[0],
  661. r->tmp_b_block_y[1],
  662. r->weight1,
  663. r->weight2,
  664. r->s.linesize);
  665. r->rdsp.rv40_weight_pixels_tab[1](r->s.dest[1],
  666. r->tmp_b_block_uv[0],
  667. r->tmp_b_block_uv[2],
  668. r->weight1,
  669. r->weight2,
  670. r->s.uvlinesize);
  671. r->rdsp.rv40_weight_pixels_tab[1](r->s.dest[2],
  672. r->tmp_b_block_uv[1],
  673. r->tmp_b_block_uv[3],
  674. r->weight1,
  675. r->weight2,
  676. r->s.uvlinesize);
  677. }
  678. static void rv34_mc_2mv(RV34DecContext *r, const int block_type)
  679. {
  680. int weighted = !r->rv30 && block_type != RV34_MB_B_BIDIR && r->weight1 != 8192;
  681. rv34_mc(r, block_type, 0, 0, 0, 2, 2, 0, r->rv30, weighted,
  682. r->rdsp.put_pixels_tab,
  683. r->rdsp.put_chroma_pixels_tab);
  684. if(!weighted){
  685. rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 0,
  686. r->rdsp.avg_pixels_tab,
  687. r->rdsp.avg_chroma_pixels_tab);
  688. }else{
  689. rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30, 1,
  690. r->rdsp.put_pixels_tab,
  691. r->rdsp.put_chroma_pixels_tab);
  692. rv4_weight(r);
  693. }
  694. }
  695. static void rv34_mc_2mv_skip(RV34DecContext *r)
  696. {
  697. int i, j;
  698. int weighted = !r->rv30 && r->weight1 != 8192;
  699. for(j = 0; j < 2; j++)
  700. for(i = 0; i < 2; i++){
  701. rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 0, r->rv30,
  702. weighted,
  703. r->rdsp.put_pixels_tab,
  704. r->rdsp.put_chroma_pixels_tab);
  705. rv34_mc(r, RV34_MB_P_8x8, i*8, j*8, i+j*r->s.b8_stride, 1, 1, 1, r->rv30,
  706. weighted,
  707. weighted ? r->rdsp.put_pixels_tab : r->rdsp.avg_pixels_tab,
  708. weighted ? r->rdsp.put_chroma_pixels_tab : r->rdsp.avg_chroma_pixels_tab);
  709. }
  710. if(weighted)
  711. rv4_weight(r);
  712. }
  713. /** number of motion vectors in each macroblock type */
  714. static const int num_mvs[RV34_MB_TYPES] = { 0, 0, 1, 4, 1, 1, 0, 0, 2, 2, 2, 1 };
  715. /**
  716. * Decode motion vector differences
  717. * and perform motion vector reconstruction and motion compensation.
  718. */
  719. static int rv34_decode_mv(RV34DecContext *r, int block_type)
  720. {
  721. MpegEncContext *s = &r->s;
  722. GetBitContext *gb = &s->gb;
  723. int i, j, k, l;
  724. int mv_pos = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  725. int next_bt;
  726. memset(r->dmv, 0, sizeof(r->dmv));
  727. for(i = 0; i < num_mvs[block_type]; i++){
  728. r->dmv[i][0] = svq3_get_se_golomb(gb);
  729. r->dmv[i][1] = svq3_get_se_golomb(gb);
  730. }
  731. switch(block_type){
  732. case RV34_MB_TYPE_INTRA:
  733. case RV34_MB_TYPE_INTRA16x16:
  734. ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  735. return 0;
  736. case RV34_MB_SKIP:
  737. if(s->pict_type == AV_PICTURE_TYPE_P){
  738. ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  739. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
  740. break;
  741. }
  742. case RV34_MB_B_DIRECT:
  743. //surprisingly, it uses motion scheme from next reference frame
  744. next_bt = s->next_picture_ptr->f.mb_type[s->mb_x + s->mb_y * s->mb_stride];
  745. if(IS_INTRA(next_bt) || IS_SKIP(next_bt)){
  746. ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  747. ZERO8x2(s->current_picture_ptr->f.motion_val[1][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  748. }else
  749. for(j = 0; j < 2; j++)
  750. for(i = 0; i < 2; i++)
  751. for(k = 0; k < 2; k++)
  752. for(l = 0; l < 2; l++)
  753. 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]);
  754. if(!(IS_16X8(next_bt) || IS_8X16(next_bt) || IS_8X8(next_bt))) //we can use whole macroblock MC
  755. rv34_mc_2mv(r, block_type);
  756. else
  757. rv34_mc_2mv_skip(r);
  758. ZERO8x2(s->current_picture_ptr->f.motion_val[0][s->mb_x * 2 + s->mb_y * 2 * s->b8_stride], s->b8_stride);
  759. break;
  760. case RV34_MB_P_16x16:
  761. case RV34_MB_P_MIX16x16:
  762. rv34_pred_mv(r, block_type, 0, 0);
  763. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, 0);
  764. break;
  765. case RV34_MB_B_FORWARD:
  766. case RV34_MB_B_BACKWARD:
  767. r->dmv[1][0] = r->dmv[0][0];
  768. r->dmv[1][1] = r->dmv[0][1];
  769. if(r->rv30)
  770. rv34_pred_mv_rv3(r, block_type, block_type == RV34_MB_B_BACKWARD);
  771. else
  772. rv34_pred_mv_b (r, block_type, block_type == RV34_MB_B_BACKWARD);
  773. rv34_mc_1mv (r, block_type, 0, 0, 0, 2, 2, block_type == RV34_MB_B_BACKWARD);
  774. break;
  775. case RV34_MB_P_16x8:
  776. case RV34_MB_P_8x16:
  777. rv34_pred_mv(r, block_type, 0, 0);
  778. rv34_pred_mv(r, block_type, 1 + (block_type == RV34_MB_P_16x8), 1);
  779. if(block_type == RV34_MB_P_16x8){
  780. rv34_mc_1mv(r, block_type, 0, 0, 0, 2, 1, 0);
  781. rv34_mc_1mv(r, block_type, 0, 8, s->b8_stride, 2, 1, 0);
  782. }
  783. if(block_type == RV34_MB_P_8x16){
  784. rv34_mc_1mv(r, block_type, 0, 0, 0, 1, 2, 0);
  785. rv34_mc_1mv(r, block_type, 8, 0, 1, 1, 2, 0);
  786. }
  787. break;
  788. case RV34_MB_B_BIDIR:
  789. rv34_pred_mv_b (r, block_type, 0);
  790. rv34_pred_mv_b (r, block_type, 1);
  791. rv34_mc_2mv (r, block_type);
  792. break;
  793. case RV34_MB_P_8x8:
  794. for(i=0;i< 4;i++){
  795. rv34_pred_mv(r, block_type, i, i);
  796. rv34_mc_1mv (r, block_type, (i&1)<<3, (i&2)<<2, (i&1)+(i>>1)*s->b8_stride, 1, 1, 0);
  797. }
  798. break;
  799. }
  800. return 0;
  801. }
  802. /** @} */ // mv group
  803. /**
  804. * @name Macroblock reconstruction functions
  805. * @{
  806. */
  807. /** mapping of RV30/40 intra prediction types to standard H.264 types */
  808. static const int ittrans[9] = {
  809. DC_PRED, VERT_PRED, HOR_PRED, DIAG_DOWN_RIGHT_PRED, DIAG_DOWN_LEFT_PRED,
  810. VERT_RIGHT_PRED, VERT_LEFT_PRED, HOR_UP_PRED, HOR_DOWN_PRED,
  811. };
  812. /** mapping of RV30/40 intra 16x16 prediction types to standard H.264 types */
  813. static const int ittrans16[4] = {
  814. DC_PRED8x8, VERT_PRED8x8, HOR_PRED8x8, PLANE_PRED8x8,
  815. };
  816. /**
  817. * Perform 4x4 intra prediction.
  818. */
  819. static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right)
  820. {
  821. uint8_t *prev = dst - stride + 4;
  822. uint32_t topleft;
  823. if(!up && !left)
  824. itype = DC_128_PRED;
  825. else if(!up){
  826. if(itype == VERT_PRED) itype = HOR_PRED;
  827. if(itype == DC_PRED) itype = LEFT_DC_PRED;
  828. }else if(!left){
  829. if(itype == HOR_PRED) itype = VERT_PRED;
  830. if(itype == DC_PRED) itype = TOP_DC_PRED;
  831. if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
  832. }
  833. if(!down){
  834. if(itype == DIAG_DOWN_LEFT_PRED) itype = DIAG_DOWN_LEFT_PRED_RV40_NODOWN;
  835. if(itype == HOR_UP_PRED) itype = HOR_UP_PRED_RV40_NODOWN;
  836. if(itype == VERT_LEFT_PRED) itype = VERT_LEFT_PRED_RV40_NODOWN;
  837. }
  838. if(!right && up){
  839. topleft = dst[-stride + 3] * 0x01010101u;
  840. prev = (uint8_t*)&topleft;
  841. }
  842. r->h.pred4x4[itype](dst, prev, stride);
  843. }
  844. /** add_pixels_clamped for 4x4 block */
  845. static void rv34_add_4x4_block(uint8_t *dst, int stride, DCTELEM block[64], int off)
  846. {
  847. int x, y;
  848. for(y = 0; y < 4; y++)
  849. for(x = 0; x < 4; x++)
  850. dst[x + y*stride] = av_clip_uint8(dst[x + y*stride] + block[off + x+y*8]);
  851. }
  852. static inline int adjust_pred16(int itype, int up, int left)
  853. {
  854. if(!up && !left)
  855. itype = DC_128_PRED8x8;
  856. else if(!up){
  857. if(itype == PLANE_PRED8x8)itype = HOR_PRED8x8;
  858. if(itype == VERT_PRED8x8) itype = HOR_PRED8x8;
  859. if(itype == DC_PRED8x8) itype = LEFT_DC_PRED8x8;
  860. }else if(!left){
  861. if(itype == PLANE_PRED8x8)itype = VERT_PRED8x8;
  862. if(itype == HOR_PRED8x8) itype = VERT_PRED8x8;
  863. if(itype == DC_PRED8x8) itype = TOP_DC_PRED8x8;
  864. }
  865. return itype;
  866. }
  867. static void rv34_output_macroblock(RV34DecContext *r, int8_t *intra_types, int cbp, int is16)
  868. {
  869. MpegEncContext *s = &r->s;
  870. DSPContext *dsp = &s->dsp;
  871. int i, j;
  872. uint8_t *Y, *U, *V;
  873. int itype;
  874. int avail[6*8] = {0};
  875. int idx;
  876. // Set neighbour information.
  877. if(r->avail_cache[1])
  878. avail[0] = 1;
  879. if(r->avail_cache[2])
  880. avail[1] = avail[2] = 1;
  881. if(r->avail_cache[3])
  882. avail[3] = avail[4] = 1;
  883. if(r->avail_cache[4])
  884. avail[5] = 1;
  885. if(r->avail_cache[5])
  886. avail[8] = avail[16] = 1;
  887. if(r->avail_cache[9])
  888. avail[24] = avail[32] = 1;
  889. Y = s->dest[0];
  890. U = s->dest[1];
  891. V = s->dest[2];
  892. if(!is16){
  893. for(j = 0; j < 4; j++){
  894. idx = 9 + j*8;
  895. for(i = 0; i < 4; i++, cbp >>= 1, Y += 4, idx++){
  896. rv34_pred_4x4_block(r, Y, s->linesize, ittrans[intra_types[i]], avail[idx-8], avail[idx-1], avail[idx+7], avail[idx-7]);
  897. avail[idx] = 1;
  898. if(cbp & 1)
  899. rv34_add_4x4_block(Y, s->linesize, s->block[(i>>1)+(j&2)], (i&1)*4+(j&1)*32);
  900. }
  901. Y += s->linesize * 4 - 4*4;
  902. intra_types += r->intra_types_stride;
  903. }
  904. intra_types -= r->intra_types_stride * 4;
  905. fill_rectangle(r->avail_cache + 6, 2, 2, 4, 0, 4);
  906. for(j = 0; j < 2; j++){
  907. idx = 6 + j*4;
  908. for(i = 0; i < 2; i++, cbp >>= 1, idx++){
  909. 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]);
  910. 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]);
  911. r->avail_cache[idx] = 1;
  912. if(cbp & 0x01)
  913. rv34_add_4x4_block(U + i*4 + j*4*s->uvlinesize, s->uvlinesize, s->block[4], i*4+j*32);
  914. if(cbp & 0x10)
  915. rv34_add_4x4_block(V + i*4 + j*4*s->uvlinesize, s->uvlinesize, s->block[5], i*4+j*32);
  916. }
  917. }
  918. }else{
  919. itype = ittrans16[intra_types[0]];
  920. itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
  921. r->h.pred16x16[itype](Y, s->linesize);
  922. dsp->add_pixels_clamped(s->block[0], Y, s->linesize);
  923. dsp->add_pixels_clamped(s->block[1], Y + 8, s->linesize);
  924. Y += s->linesize * 8;
  925. dsp->add_pixels_clamped(s->block[2], Y, s->linesize);
  926. dsp->add_pixels_clamped(s->block[3], Y + 8, s->linesize);
  927. itype = ittrans16[intra_types[0]];
  928. if(itype == PLANE_PRED8x8) itype = DC_PRED8x8;
  929. itype = adjust_pred16(itype, r->avail_cache[6-4], r->avail_cache[6-1]);
  930. r->h.pred8x8[itype](U, s->uvlinesize);
  931. dsp->add_pixels_clamped(s->block[4], U, s->uvlinesize);
  932. r->h.pred8x8[itype](V, s->uvlinesize);
  933. dsp->add_pixels_clamped(s->block[5], V, s->uvlinesize);
  934. }
  935. }
  936. /**
  937. * mask for retrieving all bits in coded block pattern
  938. * corresponding to one 8x8 block
  939. */
  940. #define LUMA_CBP_BLOCK_MASK 0x33
  941. #define U_CBP_MASK 0x0F0000
  942. #define V_CBP_MASK 0xF00000
  943. /** @} */ // recons group
  944. static void rv34_apply_differences(RV34DecContext *r, int cbp)
  945. {
  946. static const int shifts[4] = { 0, 2, 8, 10 };
  947. MpegEncContext *s = &r->s;
  948. int i;
  949. for(i = 0; i < 4; i++)
  950. if((cbp & (LUMA_CBP_BLOCK_MASK << shifts[i])) || r->block_type == RV34_MB_P_MIX16x16)
  951. s->dsp.add_pixels_clamped(s->block[i], s->dest[0] + (i & 1)*8 + (i&2)*4*s->linesize, s->linesize);
  952. if(cbp & U_CBP_MASK)
  953. s->dsp.add_pixels_clamped(s->block[4], s->dest[1], s->uvlinesize);
  954. if(cbp & V_CBP_MASK)
  955. s->dsp.add_pixels_clamped(s->block[5], s->dest[2], s->uvlinesize);
  956. }
  957. static int is_mv_diff_gt_3(int16_t (*motion_val)[2], int step)
  958. {
  959. int d;
  960. d = motion_val[0][0] - motion_val[-step][0];
  961. if(d < -3 || d > 3)
  962. return 1;
  963. d = motion_val[0][1] - motion_val[-step][1];
  964. if(d < -3 || d > 3)
  965. return 1;
  966. return 0;
  967. }
  968. static int rv34_set_deblock_coef(RV34DecContext *r)
  969. {
  970. MpegEncContext *s = &r->s;
  971. int hmvmask = 0, vmvmask = 0, i, j;
  972. int midx = s->mb_x * 2 + s->mb_y * 2 * s->b8_stride;
  973. int16_t (*motion_val)[2] = &s->current_picture_ptr->f.motion_val[0][midx];
  974. for(j = 0; j < 16; j += 8){
  975. for(i = 0; i < 2; i++){
  976. if(is_mv_diff_gt_3(motion_val + i, 1))
  977. vmvmask |= 0x11 << (j + i*2);
  978. if((j || s->mb_y) && is_mv_diff_gt_3(motion_val + i, s->b8_stride))
  979. hmvmask |= 0x03 << (j + i*2);
  980. }
  981. motion_val += s->b8_stride;
  982. }
  983. if(s->first_slice_line)
  984. hmvmask &= ~0x000F;
  985. if(!s->mb_x)
  986. vmvmask &= ~0x1111;
  987. if(r->rv30){ //RV30 marks both subblocks on the edge for filtering
  988. vmvmask |= (vmvmask & 0x4444) >> 1;
  989. hmvmask |= (hmvmask & 0x0F00) >> 4;
  990. if(s->mb_x)
  991. r->deblock_coefs[s->mb_x - 1 + s->mb_y*s->mb_stride] |= (vmvmask & 0x1111) << 3;
  992. if(!s->first_slice_line)
  993. r->deblock_coefs[s->mb_x + (s->mb_y - 1)*s->mb_stride] |= (hmvmask & 0xF) << 12;
  994. }
  995. return hmvmask | vmvmask;
  996. }
  997. static int rv34_decode_macroblock(RV34DecContext *r, int8_t *intra_types)
  998. {
  999. MpegEncContext *s = &r->s;
  1000. GetBitContext *gb = &s->gb;
  1001. int cbp, cbp2;
  1002. int i, blknum, blkoff;
  1003. LOCAL_ALIGNED_16(DCTELEM, block16, [64]);
  1004. int luma_dc_quant;
  1005. int dist;
  1006. int mb_pos = s->mb_x + s->mb_y * s->mb_stride;
  1007. // Calculate which neighbours are available. Maybe it's worth optimizing too.
  1008. memset(r->avail_cache, 0, sizeof(r->avail_cache));
  1009. fill_rectangle(r->avail_cache + 6, 2, 2, 4, 1, 4);
  1010. dist = (s->mb_x - s->resync_mb_x) + (s->mb_y - s->resync_mb_y) * s->mb_width;
  1011. if(s->mb_x && dist)
  1012. r->avail_cache[5] =
  1013. r->avail_cache[9] = s->current_picture_ptr->f.mb_type[mb_pos - 1];
  1014. if(dist >= s->mb_width)
  1015. r->avail_cache[2] =
  1016. r->avail_cache[3] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride];
  1017. if(((s->mb_x+1) < s->mb_width) && dist >= s->mb_width - 1)
  1018. r->avail_cache[4] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride + 1];
  1019. if(s->mb_x && dist > s->mb_width)
  1020. r->avail_cache[1] = s->current_picture_ptr->f.mb_type[mb_pos - s->mb_stride - 1];
  1021. s->qscale = r->si.quant;
  1022. cbp = cbp2 = rv34_decode_mb_header(r, intra_types);
  1023. r->cbp_luma [mb_pos] = cbp;
  1024. r->cbp_chroma[mb_pos] = cbp >> 16;
  1025. if(s->pict_type == AV_PICTURE_TYPE_I)
  1026. r->deblock_coefs[mb_pos] = 0xFFFF;
  1027. else
  1028. r->deblock_coefs[mb_pos] = rv34_set_deblock_coef(r) | r->cbp_luma[mb_pos];
  1029. s->current_picture_ptr->f.qscale_table[mb_pos] = s->qscale;
  1030. if(cbp == -1)
  1031. return -1;
  1032. luma_dc_quant = r->block_type == RV34_MB_P_MIX16x16 ? r->luma_dc_quant_p[s->qscale] : r->luma_dc_quant_i[s->qscale];
  1033. if(r->is16){
  1034. memset(block16, 0, 64 * sizeof(*block16));
  1035. rv34_decode_block(block16, gb, r->cur_vlcs, 3, 0);
  1036. rv34_dequant4x4_16x16(block16, rv34_qscale_tab[luma_dc_quant],rv34_qscale_tab[s->qscale]);
  1037. r->rdsp.rv34_inv_transform_tab[1](block16);
  1038. }
  1039. for(i = 0; i < 16; i++, cbp >>= 1){
  1040. if(!r->is16 && !(cbp & 1)) continue;
  1041. blknum = ((i & 2) >> 1) + ((i & 8) >> 2);
  1042. blkoff = ((i & 1) << 2) + ((i & 4) << 3);
  1043. if(cbp & 1)
  1044. rv34_decode_block(s->block[blknum] + blkoff, gb, r->cur_vlcs, r->luma_vlc, 0);
  1045. r->rdsp.rv34_dequant4x4(s->block[blknum] + blkoff, rv34_qscale_tab[s->qscale],rv34_qscale_tab[s->qscale]);
  1046. if(r->is16) //FIXME: optimize
  1047. s->block[blknum][blkoff] = block16[(i & 3) | ((i & 0xC) << 1)];
  1048. r->rdsp.rv34_inv_transform_tab[0](s->block[blknum] + blkoff);
  1049. }
  1050. if(r->block_type == RV34_MB_P_MIX16x16)
  1051. r->cur_vlcs = choose_vlc_set(r->si.quant, r->si.vlc_set, 1);
  1052. for(; i < 24; i++, cbp >>= 1){
  1053. if(!(cbp & 1)) continue;
  1054. blknum = ((i & 4) >> 2) + 4;
  1055. blkoff = ((i & 1) << 2) + ((i & 2) << 4);
  1056. rv34_decode_block(s->block[blknum] + blkoff, gb, r->cur_vlcs, r->chroma_vlc, 1);
  1057. r->rdsp.rv34_dequant4x4(s->block[blknum] + blkoff, rv34_qscale_tab[rv34_chroma_quant[1][s->qscale]],rv34_qscale_tab[rv34_chroma_quant[0][s->qscale]]);
  1058. r->rdsp.rv34_inv_transform_tab[0](s->block[blknum] + blkoff);
  1059. }
  1060. if (IS_INTRA(s->current_picture_ptr->f.mb_type[mb_pos]))
  1061. rv34_output_macroblock(r, intra_types, cbp2, r->is16);
  1062. else
  1063. rv34_apply_differences(r, cbp2);
  1064. return 0;
  1065. }
  1066. static int check_slice_end(RV34DecContext *r, MpegEncContext *s)
  1067. {
  1068. int bits;
  1069. if(s->mb_y >= s->mb_height)
  1070. return 1;
  1071. if(!s->mb_num_left)
  1072. return 1;
  1073. if(r->s.mb_skip_run > 1)
  1074. return 0;
  1075. bits = r->bits - get_bits_count(&s->gb);
  1076. if(bits < 0 || (bits < 8 && !show_bits(&s->gb, bits)))
  1077. return 1;
  1078. return 0;
  1079. }
  1080. static int rv34_decode_slice(RV34DecContext *r, int end, const uint8_t* buf, int buf_size)
  1081. {
  1082. MpegEncContext *s = &r->s;
  1083. GetBitContext *gb = &s->gb;
  1084. int mb_pos;
  1085. int res;
  1086. init_get_bits(&r->s.gb, buf, buf_size*8);
  1087. res = r->parse_slice_header(r, gb, &r->si);
  1088. if(res < 0){
  1089. av_log(s->avctx, AV_LOG_ERROR, "Incorrect or unknown slice header\n");
  1090. return -1;
  1091. }
  1092. if ((s->mb_x == 0 && s->mb_y == 0) || s->current_picture_ptr==NULL) {
  1093. if(s->width != r->si.width || s->height != r->si.height){
  1094. av_log(s->avctx, AV_LOG_DEBUG, "Changing dimensions to %dx%d\n", r->si.width,r->si.height);
  1095. MPV_common_end(s);
  1096. s->width = r->si.width;
  1097. s->height = r->si.height;
  1098. avcodec_set_dimensions(s->avctx, s->width, s->height);
  1099. if(MPV_common_init(s) < 0)
  1100. return -1;
  1101. r->intra_types_stride = s->mb_width*4 + 4;
  1102. r->intra_types_hist = av_realloc(r->intra_types_hist, r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1103. r->intra_types = r->intra_types_hist + r->intra_types_stride * 4;
  1104. r->mb_type = av_realloc(r->mb_type, r->s.mb_stride * r->s.mb_height * sizeof(*r->mb_type));
  1105. r->cbp_luma = av_realloc(r->cbp_luma, r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_luma));
  1106. r->cbp_chroma = av_realloc(r->cbp_chroma, r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_chroma));
  1107. r->deblock_coefs = av_realloc(r->deblock_coefs, r->s.mb_stride * r->s.mb_height * sizeof(*r->deblock_coefs));
  1108. av_freep(&r->tmp_b_block_base);
  1109. }
  1110. s->pict_type = r->si.type ? r->si.type : AV_PICTURE_TYPE_I;
  1111. if(MPV_frame_start(s, s->avctx) < 0)
  1112. return -1;
  1113. ff_er_frame_start(s);
  1114. if (!r->tmp_b_block_base) {
  1115. int i;
  1116. r->tmp_b_block_base = av_malloc(s->linesize * 48);
  1117. for (i = 0; i < 2; i++)
  1118. r->tmp_b_block_y[i] = r->tmp_b_block_base + i * 16 * s->linesize;
  1119. for (i = 0; i < 4; i++)
  1120. r->tmp_b_block_uv[i] = r->tmp_b_block_base + 32 * s->linesize
  1121. + (i >> 1) * 8 * s->uvlinesize + (i & 1) * 16;
  1122. }
  1123. r->cur_pts = r->si.pts;
  1124. if(s->pict_type != AV_PICTURE_TYPE_B){
  1125. r->last_pts = r->next_pts;
  1126. r->next_pts = r->cur_pts;
  1127. }else{
  1128. int refdist = GET_PTS_DIFF(r->next_pts, r->last_pts);
  1129. int dist0 = GET_PTS_DIFF(r->cur_pts, r->last_pts);
  1130. int dist1 = GET_PTS_DIFF(r->next_pts, r->cur_pts);
  1131. if(!refdist){
  1132. r->weight1 = r->weight2 = 8192;
  1133. }else{
  1134. r->weight1 = (dist0 << 14) / refdist;
  1135. r->weight2 = (dist1 << 14) / refdist;
  1136. }
  1137. }
  1138. s->mb_x = s->mb_y = 0;
  1139. } else {
  1140. int slice_type = r->si.type ? r->si.type : AV_PICTURE_TYPE_I;
  1141. if (slice_type != s->pict_type) {
  1142. av_log(s->avctx, AV_LOG_ERROR, "Slice type mismatch\n");
  1143. return AVERROR_INVALIDDATA;
  1144. }
  1145. if (s->width != r->si.width || s->height != r->si.height) {
  1146. av_log(s->avctx, AV_LOG_ERROR, "Size mismatch\n");
  1147. return AVERROR_INVALIDDATA;
  1148. }
  1149. }
  1150. r->si.end = end;
  1151. s->qscale = r->si.quant;
  1152. r->bits = buf_size*8;
  1153. s->mb_num_left = r->si.end - r->si.start;
  1154. r->s.mb_skip_run = 0;
  1155. mb_pos = s->mb_x + s->mb_y * s->mb_width;
  1156. if(r->si.start != mb_pos){
  1157. av_log(s->avctx, AV_LOG_ERROR, "Slice indicates MB offset %d, got %d\n", r->si.start, mb_pos);
  1158. s->mb_x = r->si.start % s->mb_width;
  1159. s->mb_y = r->si.start / s->mb_width;
  1160. }
  1161. memset(r->intra_types_hist, -1, r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1162. s->first_slice_line = 1;
  1163. s->resync_mb_x = s->mb_x;
  1164. s->resync_mb_y = s->mb_y;
  1165. ff_init_block_index(s);
  1166. while(!check_slice_end(r, s)) {
  1167. ff_update_block_index(s);
  1168. s->dsp.clear_blocks(s->block[0]);
  1169. if(rv34_decode_macroblock(r, r->intra_types + s->mb_x * 4 + 4) < 0){
  1170. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_ERROR);
  1171. return -1;
  1172. }
  1173. if (++s->mb_x == s->mb_width) {
  1174. s->mb_x = 0;
  1175. s->mb_y++;
  1176. ff_init_block_index(s);
  1177. memmove(r->intra_types_hist, r->intra_types, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
  1178. memset(r->intra_types, -1, r->intra_types_stride * 4 * sizeof(*r->intra_types_hist));
  1179. if(r->loop_filter && s->mb_y >= 2)
  1180. r->loop_filter(r, s->mb_y - 2);
  1181. }
  1182. if(s->mb_x == s->resync_mb_x)
  1183. s->first_slice_line=0;
  1184. s->mb_num_left--;
  1185. }
  1186. ff_er_add_slice(s, s->resync_mb_x, s->resync_mb_y, s->mb_x-1, s->mb_y, ER_MB_END);
  1187. return s->mb_y == s->mb_height;
  1188. }
  1189. /** @} */ // recons group end
  1190. /**
  1191. * Initialize decoder.
  1192. */
  1193. av_cold int ff_rv34_decode_init(AVCodecContext *avctx)
  1194. {
  1195. RV34DecContext *r = avctx->priv_data;
  1196. MpegEncContext *s = &r->s;
  1197. MPV_decode_defaults(s);
  1198. s->avctx = avctx;
  1199. s->out_format = FMT_H263;
  1200. s->codec_id = avctx->codec_id;
  1201. s->width = avctx->width;
  1202. s->height = avctx->height;
  1203. r->s.avctx = avctx;
  1204. avctx->flags |= CODEC_FLAG_EMU_EDGE;
  1205. r->s.flags |= CODEC_FLAG_EMU_EDGE;
  1206. avctx->pix_fmt = PIX_FMT_YUV420P;
  1207. avctx->has_b_frames = 1;
  1208. s->low_delay = 0;
  1209. if (MPV_common_init(s) < 0)
  1210. return -1;
  1211. ff_h264_pred_init(&r->h, CODEC_ID_RV40, 8, 1);
  1212. #if CONFIG_RV30_DECODER
  1213. if (avctx->codec_id == CODEC_ID_RV30)
  1214. ff_rv30dsp_init(&r->rdsp, &r->s.dsp);
  1215. #endif
  1216. #if CONFIG_RV40_DECODER
  1217. if (avctx->codec_id == CODEC_ID_RV40)
  1218. ff_rv40dsp_init(&r->rdsp, &r->s.dsp);
  1219. #endif
  1220. r->intra_types_stride = 4*s->mb_stride + 4;
  1221. r->intra_types_hist = av_malloc(r->intra_types_stride * 4 * 2 * sizeof(*r->intra_types_hist));
  1222. r->intra_types = r->intra_types_hist + r->intra_types_stride * 4;
  1223. r->mb_type = av_mallocz(r->s.mb_stride * r->s.mb_height * sizeof(*r->mb_type));
  1224. r->cbp_luma = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_luma));
  1225. r->cbp_chroma = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->cbp_chroma));
  1226. r->deblock_coefs = av_malloc(r->s.mb_stride * r->s.mb_height * sizeof(*r->deblock_coefs));
  1227. if(!intra_vlcs[0].cbppattern[0].bits)
  1228. rv34_init_tables();
  1229. return 0;
  1230. }
  1231. static int get_slice_offset(AVCodecContext *avctx, const uint8_t *buf, int n)
  1232. {
  1233. if(avctx->slice_count) return avctx->slice_offset[n];
  1234. else return AV_RL32(buf + n*8 - 4) == 1 ? AV_RL32(buf + n*8) : AV_RB32(buf + n*8);
  1235. }
  1236. int ff_rv34_decode_frame(AVCodecContext *avctx,
  1237. void *data, int *data_size,
  1238. AVPacket *avpkt)
  1239. {
  1240. const uint8_t *buf = avpkt->data;
  1241. int buf_size = avpkt->size;
  1242. RV34DecContext *r = avctx->priv_data;
  1243. MpegEncContext *s = &r->s;
  1244. AVFrame *pict = data;
  1245. SliceInfo si;
  1246. int i;
  1247. int slice_count;
  1248. const uint8_t *slices_hdr = NULL;
  1249. int last = 0;
  1250. /* no supplementary picture */
  1251. if (buf_size == 0) {
  1252. /* special case for last picture */
  1253. if (s->low_delay==0 && s->next_picture_ptr) {
  1254. *pict = *(AVFrame*)s->next_picture_ptr;
  1255. s->next_picture_ptr = NULL;
  1256. *data_size = sizeof(AVFrame);
  1257. }
  1258. return 0;
  1259. }
  1260. if(!avctx->slice_count){
  1261. slice_count = (*buf++) + 1;
  1262. slices_hdr = buf + 4;
  1263. buf += 8 * slice_count;
  1264. buf_size -= 1 + 8 * slice_count;
  1265. }else
  1266. slice_count = avctx->slice_count;
  1267. //parse first slice header to check whether this frame can be decoded
  1268. if(get_slice_offset(avctx, slices_hdr, 0) < 0 ||
  1269. get_slice_offset(avctx, slices_hdr, 0) > buf_size){
  1270. av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
  1271. return -1;
  1272. }
  1273. init_get_bits(&s->gb, buf+get_slice_offset(avctx, slices_hdr, 0), (buf_size-get_slice_offset(avctx, slices_hdr, 0))*8);
  1274. if(r->parse_slice_header(r, &r->s.gb, &si) < 0 || si.start){
  1275. av_log(avctx, AV_LOG_ERROR, "First slice header is incorrect\n");
  1276. return -1;
  1277. }
  1278. if ((!s->last_picture_ptr || !s->last_picture_ptr->f.data[0]) && si.type == AV_PICTURE_TYPE_B)
  1279. return -1;
  1280. if( (avctx->skip_frame >= AVDISCARD_NONREF && si.type==AV_PICTURE_TYPE_B)
  1281. || (avctx->skip_frame >= AVDISCARD_NONKEY && si.type!=AV_PICTURE_TYPE_I)
  1282. || avctx->skip_frame >= AVDISCARD_ALL)
  1283. return avpkt->size;
  1284. for(i = 0; i < slice_count; i++){
  1285. int offset = get_slice_offset(avctx, slices_hdr, i);
  1286. int size;
  1287. if(i+1 == slice_count)
  1288. size = buf_size - offset;
  1289. else
  1290. size = get_slice_offset(avctx, slices_hdr, i+1) - offset;
  1291. if(offset < 0 || offset > buf_size){
  1292. av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
  1293. break;
  1294. }
  1295. r->si.end = s->mb_width * s->mb_height;
  1296. if(i+1 < slice_count){
  1297. if (get_slice_offset(avctx, slices_hdr, i+1) < 0 ||
  1298. get_slice_offset(avctx, slices_hdr, i+1) > buf_size) {
  1299. av_log(avctx, AV_LOG_ERROR, "Slice offset is invalid\n");
  1300. break;
  1301. }
  1302. 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);
  1303. if(r->parse_slice_header(r, &r->s.gb, &si) < 0){
  1304. if(i+2 < slice_count)
  1305. size = get_slice_offset(avctx, slices_hdr, i+2) - offset;
  1306. else
  1307. size = buf_size - offset;
  1308. }else
  1309. r->si.end = si.start;
  1310. }
  1311. if (size < 0 || size > buf_size - offset) {
  1312. av_log(avctx, AV_LOG_ERROR, "Slice size is invalid\n");
  1313. break;
  1314. }
  1315. last = rv34_decode_slice(r, r->si.end, buf + offset, size);
  1316. s->mb_num_left = r->s.mb_x + r->s.mb_y*r->s.mb_width - r->si.start;
  1317. if(last)
  1318. break;
  1319. }
  1320. if(last && s->current_picture_ptr){
  1321. if(r->loop_filter)
  1322. r->loop_filter(r, s->mb_height - 1);
  1323. ff_er_frame_end(s);
  1324. MPV_frame_end(s);
  1325. if (s->pict_type == AV_PICTURE_TYPE_B || s->low_delay) {
  1326. *pict = *(AVFrame*)s->current_picture_ptr;
  1327. } else if (s->last_picture_ptr != NULL) {
  1328. *pict = *(AVFrame*)s->last_picture_ptr;
  1329. }
  1330. if(s->last_picture_ptr || s->low_delay){
  1331. *data_size = sizeof(AVFrame);
  1332. ff_print_debug_info(s, pict);
  1333. }
  1334. s->current_picture_ptr = NULL; //so we can detect if frame_end wasnt called (find some nicer solution...)
  1335. }
  1336. return avpkt->size;
  1337. }
  1338. av_cold int ff_rv34_decode_end(AVCodecContext *avctx)
  1339. {
  1340. RV34DecContext *r = avctx->priv_data;
  1341. MPV_common_end(&r->s);
  1342. av_freep(&r->intra_types_hist);
  1343. r->intra_types = NULL;
  1344. av_freep(&r->tmp_b_block_base);
  1345. av_freep(&r->mb_type);
  1346. av_freep(&r->cbp_luma);
  1347. av_freep(&r->cbp_chroma);
  1348. av_freep(&r->deblock_coefs);
  1349. return 0;
  1350. }