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.

1630 lines
57KB

  1. /**
  2. * VP8 compatible video decoder
  3. *
  4. * Copyright (C) 2010 David Conrad
  5. * Copyright (C) 2010 Ronald S. Bultje
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include "avcodec.h"
  24. #include "vp56.h"
  25. #include "vp8data.h"
  26. #include "vp8dsp.h"
  27. #include "h264pred.h"
  28. #include "rectangle.h"
  29. typedef struct {
  30. uint8_t filter_level;
  31. uint8_t inner_limit;
  32. uint8_t inner_filter;
  33. } VP8FilterStrength;
  34. typedef struct {
  35. uint8_t skip;
  36. // todo: make it possible to check for at least (i4x4 or split_mv)
  37. // in one op. are others needed?
  38. uint8_t mode;
  39. uint8_t ref_frame;
  40. uint8_t partitioning;
  41. VP56mv mv;
  42. VP56mv bmv[16];
  43. } VP8Macroblock;
  44. typedef struct {
  45. AVCodecContext *avctx;
  46. DSPContext dsp;
  47. VP8DSPContext vp8dsp;
  48. H264PredContext hpc;
  49. vp8_mc_func put_pixels_tab[3][3][3];
  50. AVFrame frames[4];
  51. AVFrame *framep[4];
  52. uint8_t *edge_emu_buffer;
  53. VP56RangeCoder c; ///< header context, includes mb modes and motion vectors
  54. int profile;
  55. int mb_width; /* number of horizontal MB */
  56. int mb_height; /* number of vertical MB */
  57. int linesize;
  58. int uvlinesize;
  59. int keyframe;
  60. int invisible;
  61. int update_last; ///< update VP56_FRAME_PREVIOUS with the current one
  62. int update_golden; ///< VP56_FRAME_NONE if not updated, or which frame to copy if so
  63. int update_altref;
  64. int deblock_filter;
  65. /**
  66. * If this flag is not set, all the probability updates
  67. * are discarded after this frame is decoded.
  68. */
  69. int update_probabilities;
  70. /**
  71. * All coefficients are contained in separate arith coding contexts.
  72. * There can be 1, 2, 4, or 8 of these after the header context.
  73. */
  74. int num_coeff_partitions;
  75. VP56RangeCoder coeff_partition[8];
  76. VP8Macroblock *macroblocks;
  77. VP8Macroblock *macroblocks_base;
  78. VP8FilterStrength *filter_strength;
  79. int mb_stride;
  80. uint8_t *intra4x4_pred_mode;
  81. uint8_t *intra4x4_pred_mode_base;
  82. uint8_t *segmentation_map;
  83. int b4_stride;
  84. /**
  85. * Cache of the top row needed for intra prediction
  86. * 16 for luma, 8 for each chroma plane
  87. */
  88. uint8_t (*top_border)[16+8+8];
  89. /**
  90. * For coeff decode, we need to know whether the above block had non-zero
  91. * coefficients. This means for each macroblock, we need data for 4 luma
  92. * blocks, 2 u blocks, 2 v blocks, and the luma dc block, for a total of 9
  93. * per macroblock. We keep the last row in top_nnz.
  94. */
  95. uint8_t (*top_nnz)[9];
  96. DECLARE_ALIGNED(8, uint8_t, left_nnz)[9];
  97. /**
  98. * This is the index plus one of the last non-zero coeff
  99. * for each of the blocks in the current macroblock.
  100. * So, 0 -> no coeffs
  101. * 1 -> dc-only (special transform)
  102. * 2+-> full transform
  103. */
  104. DECLARE_ALIGNED(16, uint8_t, non_zero_count_cache)[6][4];
  105. DECLARE_ALIGNED(16, DCTELEM, block)[6][4][16];
  106. uint8_t intra4x4_pred_mode_mb[16];
  107. int chroma_pred_mode; ///< 8x8c pred mode of the current macroblock
  108. int segment; ///< segment of the current macroblock
  109. int mbskip_enabled;
  110. int sign_bias[4]; ///< one state [0, 1] per ref frame type
  111. int ref_count[3];
  112. /**
  113. * Base parameters for segmentation, i.e. per-macroblock parameters.
  114. * These must be kept unchanged even if segmentation is not used for
  115. * a frame, since the values persist between interframes.
  116. */
  117. struct {
  118. int enabled;
  119. int absolute_vals;
  120. int update_map;
  121. int8_t base_quant[4];
  122. int8_t filter_level[4]; ///< base loop filter level
  123. } segmentation;
  124. /**
  125. * Macroblocks can have one of 4 different quants in a frame when
  126. * segmentation is enabled.
  127. * If segmentation is disabled, only the first segment's values are used.
  128. */
  129. struct {
  130. // [0] - DC qmul [1] - AC qmul
  131. int16_t luma_qmul[2];
  132. int16_t luma_dc_qmul[2]; ///< luma dc-only block quant
  133. int16_t chroma_qmul[2];
  134. } qmat[4];
  135. struct {
  136. int simple;
  137. int level;
  138. int sharpness;
  139. } filter;
  140. struct {
  141. int enabled; ///< whether each mb can have a different strength based on mode/ref
  142. /**
  143. * filter strength adjustment for the following macroblock modes:
  144. * [0] - i4x4
  145. * [1] - zero mv
  146. * [2] - inter modes except for zero or split mv
  147. * [3] - split mv
  148. * i16x16 modes never have any adjustment
  149. */
  150. int8_t mode[4];
  151. /**
  152. * filter strength adjustment for macroblocks that reference:
  153. * [0] - intra / VP56_FRAME_CURRENT
  154. * [1] - VP56_FRAME_PREVIOUS
  155. * [2] - VP56_FRAME_GOLDEN
  156. * [3] - altref / VP56_FRAME_GOLDEN2
  157. */
  158. int8_t ref[4];
  159. } lf_delta;
  160. /**
  161. * These are all of the updatable probabilities for binary decisions.
  162. * They are only implictly reset on keyframes, making it quite likely
  163. * for an interframe to desync if a prior frame's header was corrupt
  164. * or missing outright!
  165. */
  166. struct {
  167. uint8_t segmentid[3];
  168. uint8_t mbskip;
  169. uint8_t intra;
  170. uint8_t last;
  171. uint8_t golden;
  172. uint8_t pred16x16[4];
  173. uint8_t pred8x8c[3];
  174. uint8_t token[4][8][3][NUM_DCT_TOKENS-1];
  175. uint8_t mvc[2][19];
  176. } prob[2];
  177. } VP8Context;
  178. #define RL24(p) (AV_RL16(p) + ((p)[2] << 16))
  179. static void vp8_decode_flush(AVCodecContext *avctx)
  180. {
  181. VP8Context *s = avctx->priv_data;
  182. int i;
  183. for (i = 0; i < 4; i++)
  184. if (s->frames[i].data[0])
  185. avctx->release_buffer(avctx, &s->frames[i]);
  186. memset(s->framep, 0, sizeof(s->framep));
  187. av_freep(&s->macroblocks_base);
  188. av_freep(&s->intra4x4_pred_mode_base);
  189. av_freep(&s->top_nnz);
  190. av_freep(&s->edge_emu_buffer);
  191. av_freep(&s->top_border);
  192. av_freep(&s->segmentation_map);
  193. s->macroblocks = NULL;
  194. s->intra4x4_pred_mode = NULL;
  195. }
  196. static int update_dimensions(VP8Context *s, int width, int height)
  197. {
  198. int i;
  199. if (avcodec_check_dimensions(s->avctx, width, height))
  200. return AVERROR_INVALIDDATA;
  201. vp8_decode_flush(s->avctx);
  202. avcodec_set_dimensions(s->avctx, width, height);
  203. s->mb_width = (s->avctx->coded_width +15) / 16;
  204. s->mb_height = (s->avctx->coded_height+15) / 16;
  205. // we allocate a border around the top/left of intra4x4 modes
  206. // this is 4 blocks for intra4x4 to keep 4-byte alignment for fill_rectangle
  207. s->mb_stride = s->mb_width+1;
  208. s->b4_stride = 4*s->mb_stride;
  209. s->macroblocks_base = av_mallocz((s->mb_stride+s->mb_height*2+2)*sizeof(*s->macroblocks));
  210. s->filter_strength = av_mallocz(s->mb_stride*sizeof(*s->filter_strength));
  211. s->intra4x4_pred_mode_base = av_mallocz(s->b4_stride*(4*s->mb_height+1));
  212. s->top_nnz = av_mallocz(s->mb_width*sizeof(*s->top_nnz));
  213. s->top_border = av_mallocz((s->mb_width+1)*sizeof(*s->top_border));
  214. s->segmentation_map = av_mallocz(s->mb_stride*s->mb_height);
  215. if (!s->macroblocks_base || !s->filter_strength || !s->intra4x4_pred_mode_base ||
  216. !s->top_nnz || !s->top_border || !s->segmentation_map)
  217. return AVERROR(ENOMEM);
  218. s->macroblocks = s->macroblocks_base + 1;
  219. s->intra4x4_pred_mode = s->intra4x4_pred_mode_base + 4 + s->b4_stride;
  220. memset(s->intra4x4_pred_mode_base, DC_PRED, s->b4_stride);
  221. for (i = 0; i < 4*s->mb_height; i++)
  222. s->intra4x4_pred_mode[i*s->b4_stride-1] = DC_PRED;
  223. return 0;
  224. }
  225. static void parse_segment_info(VP8Context *s)
  226. {
  227. VP56RangeCoder *c = &s->c;
  228. int i;
  229. s->segmentation.update_map = vp8_rac_get(c);
  230. if (vp8_rac_get(c)) { // update segment feature data
  231. s->segmentation.absolute_vals = vp8_rac_get(c);
  232. for (i = 0; i < 4; i++)
  233. s->segmentation.base_quant[i] = vp8_rac_get_sint(c, 7);
  234. for (i = 0; i < 4; i++)
  235. s->segmentation.filter_level[i] = vp8_rac_get_sint(c, 6);
  236. }
  237. if (s->segmentation.update_map)
  238. for (i = 0; i < 3; i++)
  239. s->prob->segmentid[i] = vp8_rac_get(c) ? vp8_rac_get_uint(c, 8) : 255;
  240. }
  241. static void update_lf_deltas(VP8Context *s)
  242. {
  243. VP56RangeCoder *c = &s->c;
  244. int i;
  245. for (i = 0; i < 4; i++)
  246. s->lf_delta.ref[i] = vp8_rac_get_sint(c, 6);
  247. for (i = 0; i < 4; i++)
  248. s->lf_delta.mode[i] = vp8_rac_get_sint(c, 6);
  249. }
  250. static int setup_partitions(VP8Context *s, const uint8_t *buf, int buf_size)
  251. {
  252. const uint8_t *sizes = buf;
  253. int i;
  254. s->num_coeff_partitions = 1 << vp8_rac_get_uint(&s->c, 2);
  255. buf += 3*(s->num_coeff_partitions-1);
  256. buf_size -= 3*(s->num_coeff_partitions-1);
  257. if (buf_size < 0)
  258. return -1;
  259. for (i = 0; i < s->num_coeff_partitions-1; i++) {
  260. int size = RL24(sizes + 3*i);
  261. if (buf_size - size < 0)
  262. return -1;
  263. vp56_init_range_decoder(&s->coeff_partition[i], buf, size);
  264. buf += size;
  265. buf_size -= size;
  266. }
  267. vp56_init_range_decoder(&s->coeff_partition[i], buf, buf_size);
  268. return 0;
  269. }
  270. static void get_quants(VP8Context *s)
  271. {
  272. VP56RangeCoder *c = &s->c;
  273. int i, base_qi;
  274. int yac_qi = vp8_rac_get_uint(c, 7);
  275. int ydc_delta = vp8_rac_get_sint(c, 4);
  276. int y2dc_delta = vp8_rac_get_sint(c, 4);
  277. int y2ac_delta = vp8_rac_get_sint(c, 4);
  278. int uvdc_delta = vp8_rac_get_sint(c, 4);
  279. int uvac_delta = vp8_rac_get_sint(c, 4);
  280. for (i = 0; i < 4; i++) {
  281. if (s->segmentation.enabled) {
  282. base_qi = s->segmentation.base_quant[i];
  283. if (!s->segmentation.absolute_vals)
  284. base_qi += yac_qi;
  285. } else
  286. base_qi = yac_qi;
  287. s->qmat[i].luma_qmul[0] = vp8_dc_qlookup[av_clip(base_qi + ydc_delta , 0, 127)];
  288. s->qmat[i].luma_qmul[1] = vp8_ac_qlookup[av_clip(base_qi , 0, 127)];
  289. s->qmat[i].luma_dc_qmul[0] = 2 * vp8_dc_qlookup[av_clip(base_qi + y2dc_delta, 0, 127)];
  290. s->qmat[i].luma_dc_qmul[1] = 155 * vp8_ac_qlookup[av_clip(base_qi + y2ac_delta, 0, 127)] / 100;
  291. s->qmat[i].chroma_qmul[0] = vp8_dc_qlookup[av_clip(base_qi + uvdc_delta, 0, 127)];
  292. s->qmat[i].chroma_qmul[1] = vp8_ac_qlookup[av_clip(base_qi + uvac_delta, 0, 127)];
  293. s->qmat[i].luma_dc_qmul[1] = FFMAX(s->qmat[i].luma_dc_qmul[1], 8);
  294. s->qmat[i].chroma_qmul[0] = FFMIN(s->qmat[i].chroma_qmul[0], 132);
  295. }
  296. }
  297. /**
  298. * Determine which buffers golden and altref should be updated with after this frame.
  299. * The spec isn't clear here, so I'm going by my understanding of what libvpx does
  300. *
  301. * Intra frames update all 3 references
  302. * Inter frames update VP56_FRAME_PREVIOUS if the update_last flag is set
  303. * If the update (golden|altref) flag is set, it's updated with the current frame
  304. * if update_last is set, and VP56_FRAME_PREVIOUS otherwise.
  305. * If the flag is not set, the number read means:
  306. * 0: no update
  307. * 1: VP56_FRAME_PREVIOUS
  308. * 2: update golden with altref, or update altref with golden
  309. */
  310. static VP56Frame ref_to_update(VP8Context *s, int update, VP56Frame ref)
  311. {
  312. VP56RangeCoder *c = &s->c;
  313. if (update)
  314. return VP56_FRAME_CURRENT;
  315. switch (vp8_rac_get_uint(c, 2)) {
  316. case 1:
  317. return VP56_FRAME_PREVIOUS;
  318. case 2:
  319. return (ref == VP56_FRAME_GOLDEN) ? VP56_FRAME_GOLDEN2 : VP56_FRAME_GOLDEN;
  320. }
  321. return VP56_FRAME_NONE;
  322. }
  323. static void update_refs(VP8Context *s)
  324. {
  325. VP56RangeCoder *c = &s->c;
  326. int update_golden = vp8_rac_get(c);
  327. int update_altref = vp8_rac_get(c);
  328. s->update_golden = ref_to_update(s, update_golden, VP56_FRAME_GOLDEN);
  329. s->update_altref = ref_to_update(s, update_altref, VP56_FRAME_GOLDEN2);
  330. }
  331. static int decode_frame_header(VP8Context *s, const uint8_t *buf, int buf_size)
  332. {
  333. VP56RangeCoder *c = &s->c;
  334. int header_size, hscale, vscale, i, j, k, l, ret;
  335. int width = s->avctx->width;
  336. int height = s->avctx->height;
  337. s->keyframe = !(buf[0] & 1);
  338. s->profile = (buf[0]>>1) & 7;
  339. s->invisible = !(buf[0] & 0x10);
  340. header_size = RL24(buf) >> 5;
  341. buf += 3;
  342. buf_size -= 3;
  343. if (s->profile > 3)
  344. av_log(s->avctx, AV_LOG_WARNING, "Unknown profile %d\n", s->profile);
  345. if (!s->profile)
  346. memcpy(s->put_pixels_tab, s->vp8dsp.put_vp8_epel_pixels_tab, sizeof(s->put_pixels_tab));
  347. else // profile 1-3 use bilinear, 4+ aren't defined so whatever
  348. memcpy(s->put_pixels_tab, s->vp8dsp.put_vp8_bilinear_pixels_tab, sizeof(s->put_pixels_tab));
  349. if (header_size > buf_size - 7*s->keyframe) {
  350. av_log(s->avctx, AV_LOG_ERROR, "Header size larger than data provided\n");
  351. return AVERROR_INVALIDDATA;
  352. }
  353. if (s->keyframe) {
  354. if (RL24(buf) != 0x2a019d) {
  355. av_log(s->avctx, AV_LOG_ERROR, "Invalid start code 0x%x\n", RL24(buf));
  356. return AVERROR_INVALIDDATA;
  357. }
  358. width = AV_RL16(buf+3) & 0x3fff;
  359. height = AV_RL16(buf+5) & 0x3fff;
  360. hscale = buf[4] >> 6;
  361. vscale = buf[6] >> 6;
  362. buf += 7;
  363. buf_size -= 7;
  364. if (hscale || vscale)
  365. av_log_missing_feature(s->avctx, "Upscaling", 1);
  366. s->update_golden = s->update_altref = VP56_FRAME_CURRENT;
  367. memcpy(s->prob->token , vp8_token_default_probs , sizeof(s->prob->token));
  368. memcpy(s->prob->pred16x16, vp8_pred16x16_prob_inter, sizeof(s->prob->pred16x16));
  369. memcpy(s->prob->pred8x8c , vp8_pred8x8c_prob_inter , sizeof(s->prob->pred8x8c));
  370. memcpy(s->prob->mvc , vp8_mv_default_prob , sizeof(s->prob->mvc));
  371. memset(&s->segmentation, 0, sizeof(s->segmentation));
  372. }
  373. if (!s->macroblocks_base || /* first frame */
  374. width != s->avctx->width || height != s->avctx->height) {
  375. if ((ret = update_dimensions(s, width, height) < 0))
  376. return ret;
  377. }
  378. vp56_init_range_decoder(c, buf, header_size);
  379. buf += header_size;
  380. buf_size -= header_size;
  381. if (s->keyframe) {
  382. if (vp8_rac_get(c))
  383. av_log(s->avctx, AV_LOG_WARNING, "Unspecified colorspace\n");
  384. vp8_rac_get(c); // whether we can skip clamping in dsp functions
  385. }
  386. if ((s->segmentation.enabled = vp8_rac_get(c)))
  387. parse_segment_info(s);
  388. else
  389. s->segmentation.update_map = 0; // FIXME: move this to some init function?
  390. s->filter.simple = vp8_rac_get(c);
  391. s->filter.level = vp8_rac_get_uint(c, 6);
  392. s->filter.sharpness = vp8_rac_get_uint(c, 3);
  393. if ((s->lf_delta.enabled = vp8_rac_get(c)))
  394. if (vp8_rac_get(c))
  395. update_lf_deltas(s);
  396. if (setup_partitions(s, buf, buf_size)) {
  397. av_log(s->avctx, AV_LOG_ERROR, "Invalid partitions\n");
  398. return AVERROR_INVALIDDATA;
  399. }
  400. get_quants(s);
  401. if (!s->keyframe) {
  402. update_refs(s);
  403. s->sign_bias[VP56_FRAME_GOLDEN] = vp8_rac_get(c);
  404. s->sign_bias[VP56_FRAME_GOLDEN2 /* altref */] = vp8_rac_get(c);
  405. }
  406. // if we aren't saving this frame's probabilities for future frames,
  407. // make a copy of the current probabilities
  408. if (!(s->update_probabilities = vp8_rac_get(c)))
  409. s->prob[1] = s->prob[0];
  410. s->update_last = s->keyframe || vp8_rac_get(c);
  411. for (i = 0; i < 4; i++)
  412. for (j = 0; j < 8; j++)
  413. for (k = 0; k < 3; k++)
  414. for (l = 0; l < NUM_DCT_TOKENS-1; l++)
  415. if (vp56_rac_get_prob(c, vp8_token_update_probs[i][j][k][l]))
  416. s->prob->token[i][j][k][l] = vp8_rac_get_uint(c, 8);
  417. if ((s->mbskip_enabled = vp8_rac_get(c)))
  418. s->prob->mbskip = vp8_rac_get_uint(c, 8);
  419. if (!s->keyframe) {
  420. s->prob->intra = vp8_rac_get_uint(c, 8);
  421. s->prob->last = vp8_rac_get_uint(c, 8);
  422. s->prob->golden = vp8_rac_get_uint(c, 8);
  423. if (vp8_rac_get(c))
  424. for (i = 0; i < 4; i++)
  425. s->prob->pred16x16[i] = vp8_rac_get_uint(c, 8);
  426. if (vp8_rac_get(c))
  427. for (i = 0; i < 3; i++)
  428. s->prob->pred8x8c[i] = vp8_rac_get_uint(c, 8);
  429. // 17.2 MV probability update
  430. for (i = 0; i < 2; i++)
  431. for (j = 0; j < 19; j++)
  432. if (vp56_rac_get_prob(c, vp8_mv_update_prob[i][j]))
  433. s->prob->mvc[i][j] = vp8_rac_get_nn(c);
  434. }
  435. return 0;
  436. }
  437. static inline void clamp_mv(VP8Context *s, VP56mv *dst, const VP56mv *src,
  438. int mb_x, int mb_y)
  439. {
  440. #define MARGIN (16 << 2)
  441. dst->x = av_clip(src->x, -((mb_x << 6) + MARGIN),
  442. ((s->mb_width - 1 - mb_x) << 6) + MARGIN);
  443. dst->y = av_clip(src->y, -((mb_y << 6) + MARGIN),
  444. ((s->mb_height - 1 - mb_y) << 6) + MARGIN);
  445. }
  446. static void find_near_mvs(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y,
  447. VP56mv near[2], VP56mv *best, uint8_t cnt[4])
  448. {
  449. VP8Macroblock *mb_edge[3] = { mb + 2 /* top */,
  450. mb - 1 /* left */,
  451. mb + 1 /* top-left */ };
  452. enum { EDGE_TOP, EDGE_LEFT, EDGE_TOPLEFT };
  453. VP56mv near_mv[4] = {{ 0 }};
  454. enum { CNT_ZERO, CNT_NEAREST, CNT_NEAR, CNT_SPLITMV };
  455. int idx = CNT_ZERO;
  456. int best_idx = CNT_ZERO;
  457. int cur_sign_bias = s->sign_bias[mb->ref_frame];
  458. int *sign_bias = s->sign_bias;
  459. /* Process MB on top, left and top-left */
  460. #define MV_EDGE_CHECK(n)\
  461. {\
  462. VP8Macroblock *edge = mb_edge[n];\
  463. int edge_ref = edge->ref_frame;\
  464. if (edge_ref != VP56_FRAME_CURRENT) {\
  465. uint32_t mv = AV_RN32A(&edge->mv);\
  466. if (mv) {\
  467. if (cur_sign_bias != sign_bias[edge_ref]) {\
  468. /* SWAR negate of the values in mv. */\
  469. mv = ~mv;\
  470. mv = ((mv&0x7fff7fff) + 0x00010001) ^ (mv&0x80008000);\
  471. }\
  472. if (!n || mv != AV_RN32A(&near_mv[idx]))\
  473. AV_WN32A(&near_mv[++idx], mv);\
  474. cnt[idx] += 1 + (n != 2);\
  475. } else\
  476. cnt[CNT_ZERO] += 1 + (n != 2);\
  477. }\
  478. }
  479. MV_EDGE_CHECK(0)
  480. MV_EDGE_CHECK(1)
  481. MV_EDGE_CHECK(2)
  482. /* If we have three distinct MVs, merge first and last if they're the same */
  483. if (cnt[CNT_SPLITMV] && AV_RN32A(&near_mv[1+EDGE_TOP]) == AV_RN32A(&near_mv[1+EDGE_TOPLEFT]))
  484. cnt[CNT_NEAREST] += 1;
  485. cnt[CNT_SPLITMV] = ((mb_edge[EDGE_LEFT]->mode == VP8_MVMODE_SPLIT) +
  486. (mb_edge[EDGE_TOP]->mode == VP8_MVMODE_SPLIT)) * 2 +
  487. (mb_edge[EDGE_TOPLEFT]->mode == VP8_MVMODE_SPLIT);
  488. /* Swap near and nearest if necessary */
  489. if (cnt[CNT_NEAR] > cnt[CNT_NEAREST]) {
  490. FFSWAP(uint8_t, cnt[CNT_NEAREST], cnt[CNT_NEAR]);
  491. FFSWAP( VP56mv, near_mv[CNT_NEAREST], near_mv[CNT_NEAR]);
  492. }
  493. /* Choose the best mv out of 0,0 and the nearest mv */
  494. if (cnt[CNT_NEAREST] >= cnt[CNT_ZERO])
  495. best_idx = CNT_NEAREST;
  496. clamp_mv(s, best, &near_mv[best_idx], mb_x, mb_y);
  497. near[0] = near_mv[CNT_NEAREST];
  498. near[1] = near_mv[CNT_NEAR];
  499. }
  500. /**
  501. * Motion vector coding, 17.1.
  502. */
  503. static int read_mv_component(VP56RangeCoder *c, const uint8_t *p)
  504. {
  505. int x = 0;
  506. if (vp56_rac_get_prob(c, p[0])) {
  507. int i;
  508. for (i = 0; i < 3; i++)
  509. x += vp56_rac_get_prob(c, p[9 + i]) << i;
  510. for (i = 9; i > 3; i--)
  511. x += vp56_rac_get_prob(c, p[9 + i]) << i;
  512. if (!(x & 0xFFF0) || vp56_rac_get_prob(c, p[12]))
  513. x += 8;
  514. } else
  515. x = vp8_rac_get_tree(c, vp8_small_mvtree, &p[2]);
  516. return (x && vp56_rac_get_prob(c, p[1])) ? -x : x;
  517. }
  518. static const uint8_t *get_submv_prob(uint32_t left, uint32_t top)
  519. {
  520. if (left == top)
  521. return vp8_submv_prob[4-!!left];
  522. if (!top)
  523. return vp8_submv_prob[2];
  524. return vp8_submv_prob[1-!!left];
  525. }
  526. /**
  527. * Split motion vector prediction, 16.4.
  528. * @returns the number of motion vectors parsed (2, 4 or 16)
  529. */
  530. static int decode_splitmvs(VP8Context *s, VP56RangeCoder *c,
  531. VP8Macroblock *mb, VP56mv *base_mv)
  532. {
  533. int part_idx = mb->partitioning =
  534. vp8_rac_get_tree(c, vp8_mbsplit_tree, vp8_mbsplit_prob);
  535. int n, num = vp8_mbsplit_count[part_idx];
  536. VP8Macroblock *top_mb = &mb[2];
  537. VP8Macroblock *left_mb = &mb[-1];
  538. const uint8_t *mbsplits_left = vp8_mbsplits[left_mb->partitioning],
  539. *mbsplits_top = vp8_mbsplits[top_mb->partitioning],
  540. *mbsplits_cur = vp8_mbsplits[part_idx],
  541. *firstidx = vp8_mbfirstidx[part_idx];
  542. VP56mv *top_mv = top_mb->bmv;
  543. VP56mv *left_mv = left_mb->bmv;
  544. VP56mv *cur_mv = mb->bmv;
  545. for (n = 0; n < num; n++) {
  546. int k = firstidx[n];
  547. uint32_t left, above;
  548. const uint8_t *submv_prob;
  549. if (!(k & 3))
  550. left = AV_RN32A(&left_mv[mbsplits_left[k + 3]]);
  551. else
  552. left = AV_RN32A(&cur_mv[mbsplits_cur[k - 1]]);
  553. if (k <= 3)
  554. above = AV_RN32A(&top_mv[mbsplits_top[k + 12]]);
  555. else
  556. above = AV_RN32A(&cur_mv[mbsplits_cur[k - 4]]);
  557. submv_prob = get_submv_prob(left, above);
  558. switch (vp8_rac_get_tree(c, vp8_submv_ref_tree, submv_prob)) {
  559. case VP8_SUBMVMODE_NEW4X4:
  560. mb->bmv[n].y = base_mv->y + read_mv_component(c, s->prob->mvc[0]);
  561. mb->bmv[n].x = base_mv->x + read_mv_component(c, s->prob->mvc[1]);
  562. break;
  563. case VP8_SUBMVMODE_ZERO4X4:
  564. AV_WN32A(&mb->bmv[n], 0);
  565. break;
  566. case VP8_SUBMVMODE_LEFT4X4:
  567. AV_WN32A(&mb->bmv[n], left);
  568. break;
  569. case VP8_SUBMVMODE_TOP4X4:
  570. AV_WN32A(&mb->bmv[n], above);
  571. break;
  572. }
  573. }
  574. return num;
  575. }
  576. static inline void decode_intra4x4_modes(VP56RangeCoder *c, uint8_t *intra4x4,
  577. int stride, int keyframe)
  578. {
  579. int x, y, t, l, i;
  580. if (keyframe) {
  581. const uint8_t *ctx;
  582. for (y = 0; y < 4; y++) {
  583. for (x = 0; x < 4; x++) {
  584. t = intra4x4[x - stride];
  585. l = intra4x4[x - 1];
  586. ctx = vp8_pred4x4_prob_intra[t][l];
  587. intra4x4[x] = vp8_rac_get_tree(c, vp8_pred4x4_tree, ctx);
  588. }
  589. intra4x4 += stride;
  590. }
  591. } else {
  592. for (i = 0; i < 16; i++)
  593. intra4x4[i] = vp8_rac_get_tree(c, vp8_pred4x4_tree, vp8_pred4x4_prob_inter);
  594. }
  595. }
  596. static void decode_mb_mode(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y,
  597. uint8_t *intra4x4, uint8_t *segment)
  598. {
  599. VP56RangeCoder *c = &s->c;
  600. if (s->segmentation.update_map)
  601. *segment = vp8_rac_get_tree(c, vp8_segmentid_tree, s->prob->segmentid);
  602. s->segment = *segment;
  603. mb->skip = s->mbskip_enabled ? vp56_rac_get_prob(c, s->prob->mbskip) : 0;
  604. if (s->keyframe) {
  605. mb->mode = vp8_rac_get_tree(c, vp8_pred16x16_tree_intra, vp8_pred16x16_prob_intra);
  606. if (mb->mode == MODE_I4x4) {
  607. decode_intra4x4_modes(c, intra4x4, s->b4_stride, 1);
  608. } else
  609. fill_rectangle(intra4x4, 4, 4, s->b4_stride, vp8_pred4x4_mode[mb->mode], 1);
  610. s->chroma_pred_mode = vp8_rac_get_tree(c, vp8_pred8x8c_tree, vp8_pred8x8c_prob_intra);
  611. mb->ref_frame = VP56_FRAME_CURRENT;
  612. } else if (vp56_rac_get_prob(c, s->prob->intra)) {
  613. VP56mv near[2], best;
  614. uint8_t cnt[4] = { 0 };
  615. uint8_t p[4];
  616. // inter MB, 16.2
  617. if (vp56_rac_get_prob(c, s->prob->last))
  618. mb->ref_frame = vp56_rac_get_prob(c, s->prob->golden) ?
  619. VP56_FRAME_GOLDEN2 /* altref */ : VP56_FRAME_GOLDEN;
  620. else
  621. mb->ref_frame = VP56_FRAME_PREVIOUS;
  622. s->ref_count[mb->ref_frame-1]++;
  623. // motion vectors, 16.3
  624. find_near_mvs(s, mb, mb_x, mb_y, near, &best, cnt);
  625. p[0] = vp8_mode_contexts[cnt[0]][0];
  626. p[1] = vp8_mode_contexts[cnt[1]][1];
  627. p[2] = vp8_mode_contexts[cnt[2]][2];
  628. p[3] = vp8_mode_contexts[cnt[3]][3];
  629. mb->mode = vp8_rac_get_tree(c, vp8_pred16x16_tree_mvinter, p);
  630. switch (mb->mode) {
  631. case VP8_MVMODE_SPLIT:
  632. mb->mv = mb->bmv[decode_splitmvs(s, c, mb, &best) - 1];
  633. break;
  634. case VP8_MVMODE_ZERO:
  635. AV_WN32A(&mb->mv, 0);
  636. break;
  637. case VP8_MVMODE_NEAREST:
  638. clamp_mv(s, &mb->mv, &near[0], mb_x, mb_y);
  639. break;
  640. case VP8_MVMODE_NEAR:
  641. clamp_mv(s, &mb->mv, &near[1], mb_x, mb_y);
  642. break;
  643. case VP8_MVMODE_NEW:
  644. mb->mv.y = best.y + read_mv_component(c, s->prob->mvc[0]);
  645. mb->mv.x = best.x + read_mv_component(c, s->prob->mvc[1]);
  646. break;
  647. }
  648. if (mb->mode != VP8_MVMODE_SPLIT) {
  649. mb->partitioning = VP8_SPLITMVMODE_NONE;
  650. mb->bmv[0] = mb->mv;
  651. }
  652. } else {
  653. // intra MB, 16.1
  654. mb->mode = vp8_rac_get_tree(c, vp8_pred16x16_tree_inter, s->prob->pred16x16);
  655. if (mb->mode == MODE_I4x4)
  656. decode_intra4x4_modes(c, intra4x4, 4, 0);
  657. s->chroma_pred_mode = vp8_rac_get_tree(c, vp8_pred8x8c_tree, s->prob->pred8x8c);
  658. mb->ref_frame = VP56_FRAME_CURRENT;
  659. mb->partitioning = VP8_SPLITMVMODE_NONE;
  660. AV_WN32A(&mb->bmv[0], 0);
  661. }
  662. }
  663. /**
  664. * @param c arithmetic bitstream reader context
  665. * @param block destination for block coefficients
  666. * @param probs probabilities to use when reading trees from the bitstream
  667. * @param i initial coeff index, 0 unless a separate DC block is coded
  668. * @param zero_nhood the initial prediction context for number of surrounding
  669. * all-zero blocks (only left/top, so 0-2)
  670. * @param qmul array holding the dc/ac dequant factor at position 0/1
  671. * @return 0 if no coeffs were decoded
  672. * otherwise, the index of the last coeff decoded plus one
  673. */
  674. static int decode_block_coeffs(VP56RangeCoder *c, DCTELEM block[16],
  675. uint8_t probs[8][3][NUM_DCT_TOKENS-1],
  676. int i, int zero_nhood, int16_t qmul[2])
  677. {
  678. int token, nonzero = 0;
  679. int offset = 0;
  680. for (; i < 16; i++) {
  681. token = vp8_rac_get_tree_with_offset(c, vp8_coeff_tree, probs[vp8_coeff_band[i]][zero_nhood], offset);
  682. if (token == DCT_EOB)
  683. break;
  684. else if (token >= DCT_CAT1) {
  685. int cat = token-DCT_CAT1;
  686. token = vp8_rac_get_coeff(c, vp8_dct_cat_prob[cat]);
  687. token += 3 + (2<<cat);
  688. }
  689. // after the first token, the non-zero prediction context becomes
  690. // based on the last decoded coeff
  691. if (!token) {
  692. zero_nhood = 0;
  693. offset = 1;
  694. continue;
  695. } else if (token == 1)
  696. zero_nhood = 1;
  697. else
  698. zero_nhood = 2;
  699. // todo: full [16] qmat? load into register?
  700. block[zigzag_scan[i]] = (vp8_rac_get(c) ? -token : token) * qmul[!!i];
  701. nonzero = i+1;
  702. offset = 0;
  703. }
  704. return nonzero;
  705. }
  706. static void decode_mb_coeffs(VP8Context *s, VP56RangeCoder *c, VP8Macroblock *mb,
  707. uint8_t t_nnz[9], uint8_t l_nnz[9])
  708. {
  709. LOCAL_ALIGNED_16(DCTELEM, dc,[16]);
  710. int i, x, y, luma_start = 0, luma_ctx = 3;
  711. int nnz_pred, nnz, nnz_total = 0;
  712. int segment = s->segment;
  713. if (mb->mode != MODE_I4x4 && mb->mode != VP8_MVMODE_SPLIT) {
  714. AV_ZERO128(dc);
  715. AV_ZERO128(dc+8);
  716. nnz_pred = t_nnz[8] + l_nnz[8];
  717. // decode DC values and do hadamard
  718. nnz = decode_block_coeffs(c, dc, s->prob->token[1], 0, nnz_pred,
  719. s->qmat[segment].luma_dc_qmul);
  720. l_nnz[8] = t_nnz[8] = !!nnz;
  721. nnz_total += nnz;
  722. s->vp8dsp.vp8_luma_dc_wht(s->block, dc);
  723. luma_start = 1;
  724. luma_ctx = 0;
  725. }
  726. // luma blocks
  727. for (y = 0; y < 4; y++)
  728. for (x = 0; x < 4; x++) {
  729. nnz_pred = l_nnz[y] + t_nnz[x];
  730. nnz = decode_block_coeffs(c, s->block[y][x], s->prob->token[luma_ctx], luma_start,
  731. nnz_pred, s->qmat[segment].luma_qmul);
  732. // nnz+luma_start may be one more than the actual last index, but we don't care
  733. s->non_zero_count_cache[y][x] = nnz + luma_start;
  734. t_nnz[x] = l_nnz[y] = !!nnz;
  735. nnz_total += nnz;
  736. }
  737. // chroma blocks
  738. // TODO: what to do about dimensions? 2nd dim for luma is x,
  739. // but for chroma it's (y<<1)|x
  740. for (i = 4; i < 6; i++)
  741. for (y = 0; y < 2; y++)
  742. for (x = 0; x < 2; x++) {
  743. nnz_pred = l_nnz[i+2*y] + t_nnz[i+2*x];
  744. nnz = decode_block_coeffs(c, s->block[i][(y<<1)+x], s->prob->token[2], 0,
  745. nnz_pred, s->qmat[segment].chroma_qmul);
  746. s->non_zero_count_cache[i][(y<<1)+x] = nnz;
  747. t_nnz[i+2*x] = l_nnz[i+2*y] = !!nnz;
  748. nnz_total += nnz;
  749. }
  750. // if there were no coded coeffs despite the macroblock not being marked skip,
  751. // we MUST not do the inner loop filter and should not do IDCT
  752. // Since skip isn't used for bitstream prediction, just manually set it.
  753. if (!nnz_total)
  754. mb->skip = 1;
  755. }
  756. static av_always_inline
  757. void backup_mb_border(uint8_t *top_border, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr,
  758. int linesize, int uvlinesize, int simple)
  759. {
  760. AV_COPY128(top_border, src_y + 15*linesize);
  761. if (!simple) {
  762. AV_COPY64(top_border+16, src_cb + 7*uvlinesize);
  763. AV_COPY64(top_border+24, src_cr + 7*uvlinesize);
  764. }
  765. }
  766. static av_always_inline
  767. void xchg_mb_border(uint8_t *top_border, uint8_t *src_y, uint8_t *src_cb, uint8_t *src_cr,
  768. int linesize, int uvlinesize, int mb_x, int mb_y, int mb_width,
  769. int simple, int xchg)
  770. {
  771. uint8_t *top_border_m1 = top_border-32; // for TL prediction
  772. src_y -= linesize;
  773. src_cb -= uvlinesize;
  774. src_cr -= uvlinesize;
  775. #define XCHG(a,b,xchg) do { \
  776. if (xchg) AV_SWAP64(b,a); \
  777. else AV_COPY64(b,a); \
  778. } while (0)
  779. XCHG(top_border_m1+8, src_y-8, xchg);
  780. XCHG(top_border, src_y, xchg);
  781. XCHG(top_border+8, src_y+8, 1);
  782. if (mb_x < mb_width-1)
  783. XCHG(top_border+32, src_y+16, 1);
  784. // only copy chroma for normal loop filter
  785. // or to initialize the top row to 127
  786. if (!simple || !mb_y) {
  787. XCHG(top_border_m1+16, src_cb-8, xchg);
  788. XCHG(top_border_m1+24, src_cr-8, xchg);
  789. XCHG(top_border+16, src_cb, 1);
  790. XCHG(top_border+24, src_cr, 1);
  791. }
  792. }
  793. static int check_intra_pred_mode(int mode, int mb_x, int mb_y)
  794. {
  795. if (mode == DC_PRED8x8) {
  796. if (!(mb_x|mb_y))
  797. mode = DC_128_PRED8x8;
  798. else if (!mb_y)
  799. mode = LEFT_DC_PRED8x8;
  800. else if (!mb_x)
  801. mode = TOP_DC_PRED8x8;
  802. }
  803. return mode;
  804. }
  805. static void intra_predict(VP8Context *s, uint8_t *dst[3], VP8Macroblock *mb,
  806. uint8_t *intra4x4, int mb_x, int mb_y)
  807. {
  808. int x, y, mode, nnz, tr;
  809. // for the first row, we need to run xchg_mb_border to init the top edge to 127
  810. // otherwise, skip it if we aren't going to deblock
  811. if (s->deblock_filter || !mb_y)
  812. xchg_mb_border(s->top_border[mb_x+1], dst[0], dst[1], dst[2],
  813. s->linesize, s->uvlinesize, mb_x, mb_y, s->mb_width,
  814. s->filter.simple, 1);
  815. if (mb->mode < MODE_I4x4) {
  816. mode = check_intra_pred_mode(mb->mode, mb_x, mb_y);
  817. s->hpc.pred16x16[mode](dst[0], s->linesize);
  818. } else {
  819. uint8_t *ptr = dst[0];
  820. int stride = s->keyframe ? s->b4_stride : 4;
  821. // all blocks on the right edge of the macroblock use bottom edge
  822. // the top macroblock for their topright edge
  823. uint8_t *tr_right = ptr - s->linesize + 16;
  824. // if we're on the right edge of the frame, said edge is extended
  825. // from the top macroblock
  826. if (mb_x == s->mb_width-1) {
  827. tr = tr_right[-1]*0x01010101;
  828. tr_right = (uint8_t *)&tr;
  829. }
  830. if (mb->skip)
  831. AV_ZERO128(s->non_zero_count_cache);
  832. for (y = 0; y < 4; y++) {
  833. uint8_t *topright = ptr + 4 - s->linesize;
  834. for (x = 0; x < 4; x++) {
  835. if (x == 3)
  836. topright = tr_right;
  837. s->hpc.pred4x4[intra4x4[x]](ptr+4*x, topright, s->linesize);
  838. nnz = s->non_zero_count_cache[y][x];
  839. if (nnz) {
  840. if (nnz == 1)
  841. s->vp8dsp.vp8_idct_dc_add(ptr+4*x, s->block[y][x], s->linesize);
  842. else
  843. s->vp8dsp.vp8_idct_add(ptr+4*x, s->block[y][x], s->linesize);
  844. }
  845. topright += 4;
  846. }
  847. ptr += 4*s->linesize;
  848. intra4x4 += stride;
  849. }
  850. }
  851. mode = check_intra_pred_mode(s->chroma_pred_mode, mb_x, mb_y);
  852. s->hpc.pred8x8[mode](dst[1], s->uvlinesize);
  853. s->hpc.pred8x8[mode](dst[2], s->uvlinesize);
  854. if (s->deblock_filter || !mb_y)
  855. xchg_mb_border(s->top_border[mb_x+1], dst[0], dst[1], dst[2],
  856. s->linesize, s->uvlinesize, mb_x, mb_y, s->mb_width,
  857. s->filter.simple, 0);
  858. }
  859. /**
  860. * Generic MC function.
  861. *
  862. * @param s VP8 decoding context
  863. * @param luma 1 for luma (Y) planes, 0 for chroma (Cb/Cr) planes
  864. * @param dst target buffer for block data at block position
  865. * @param src reference picture buffer at origin (0, 0)
  866. * @param mv motion vector (relative to block position) to get pixel data from
  867. * @param x_off horizontal position of block from origin (0, 0)
  868. * @param y_off vertical position of block from origin (0, 0)
  869. * @param block_w width of block (16, 8 or 4)
  870. * @param block_h height of block (always same as block_w)
  871. * @param width width of src/dst plane data
  872. * @param height height of src/dst plane data
  873. * @param linesize size of a single line of plane data, including padding
  874. * @param mc_func motion compensation function pointers (bilinear or sixtap MC)
  875. */
  876. static inline void vp8_mc(VP8Context *s, int luma,
  877. uint8_t *dst, uint8_t *src, const VP56mv *mv,
  878. int x_off, int y_off, int block_w, int block_h,
  879. int width, int height, int linesize,
  880. vp8_mc_func mc_func[3][3])
  881. {
  882. if (AV_RN32A(mv)) {
  883. static const uint8_t idx[8] = { 0, 1, 2, 1, 2, 1, 2, 1 };
  884. int mx = (mv->x << luma)&7, mx_idx = idx[mx];
  885. int my = (mv->y << luma)&7, my_idx = idx[my];
  886. x_off += mv->x >> (3 - luma);
  887. y_off += mv->y >> (3 - luma);
  888. // edge emulation
  889. src += y_off * linesize + x_off;
  890. if (x_off < 2 || x_off >= width - block_w - 3 ||
  891. y_off < 2 || y_off >= height - block_h - 3) {
  892. ff_emulated_edge_mc(s->edge_emu_buffer, src - 2 * linesize - 2, linesize,
  893. block_w + 5, block_h + 5,
  894. x_off - 2, y_off - 2, width, height);
  895. src = s->edge_emu_buffer + 2 + linesize * 2;
  896. }
  897. mc_func[my_idx][mx_idx](dst, linesize, src, linesize, block_h, mx, my);
  898. } else
  899. mc_func[0][0](dst, linesize, src + y_off * linesize + x_off, linesize, block_h, 0, 0);
  900. }
  901. static inline void vp8_mc_part(VP8Context *s, uint8_t *dst[3],
  902. AVFrame *ref_frame, int x_off, int y_off,
  903. int bx_off, int by_off,
  904. int block_w, int block_h,
  905. int width, int height, VP56mv *mv)
  906. {
  907. VP56mv uvmv = *mv;
  908. /* Y */
  909. vp8_mc(s, 1, dst[0] + by_off * s->linesize + bx_off,
  910. ref_frame->data[0], mv, x_off + bx_off, y_off + by_off,
  911. block_w, block_h, width, height, s->linesize,
  912. s->put_pixels_tab[block_w == 8]);
  913. /* U/V */
  914. if (s->profile == 3) {
  915. uvmv.x &= ~7;
  916. uvmv.y &= ~7;
  917. }
  918. x_off >>= 1; y_off >>= 1;
  919. bx_off >>= 1; by_off >>= 1;
  920. width >>= 1; height >>= 1;
  921. block_w >>= 1; block_h >>= 1;
  922. vp8_mc(s, 0, dst[1] + by_off * s->uvlinesize + bx_off,
  923. ref_frame->data[1], &uvmv, x_off + bx_off, y_off + by_off,
  924. block_w, block_h, width, height, s->uvlinesize,
  925. s->put_pixels_tab[1 + (block_w == 4)]);
  926. vp8_mc(s, 0, dst[2] + by_off * s->uvlinesize + bx_off,
  927. ref_frame->data[2], &uvmv, x_off + bx_off, y_off + by_off,
  928. block_w, block_h, width, height, s->uvlinesize,
  929. s->put_pixels_tab[1 + (block_w == 4)]);
  930. }
  931. /* Fetch pixels for estimated mv 4 macroblocks ahead.
  932. * Optimized for 64-byte cache lines. Inspired by ffh264 prefetch_motion. */
  933. static inline void prefetch_motion(VP8Context *s, VP8Macroblock *mb, int mb_x, int mb_y, int mb_xy, int ref)
  934. {
  935. /* Don't prefetch refs that haven't been used very often this frame. */
  936. if (s->ref_count[ref-1] > (mb_xy >> 5)) {
  937. int x_off = mb_x << 4, y_off = mb_y << 4;
  938. int mx = mb->mv.x + x_off + 8;
  939. int my = mb->mv.y + y_off;
  940. uint8_t **src= s->framep[ref]->data;
  941. int off= mx + (my + (mb_x&3)*4)*s->linesize + 64;
  942. s->dsp.prefetch(src[0]+off, s->linesize, 4);
  943. off= (mx>>1) + ((my>>1) + (mb_x&7))*s->uvlinesize + 64;
  944. s->dsp.prefetch(src[1]+off, src[2]-src[1], 2);
  945. }
  946. }
  947. /**
  948. * Apply motion vectors to prediction buffer, chapter 18.
  949. */
  950. static void inter_predict(VP8Context *s, uint8_t *dst[3], VP8Macroblock *mb,
  951. int mb_x, int mb_y)
  952. {
  953. int x_off = mb_x << 4, y_off = mb_y << 4;
  954. int width = 16*s->mb_width, height = 16*s->mb_height;
  955. AVFrame *ref = s->framep[mb->ref_frame];
  956. VP56mv *bmv = mb->bmv;
  957. if (mb->mode < VP8_MVMODE_SPLIT) {
  958. vp8_mc_part(s, dst, ref, x_off, y_off,
  959. 0, 0, 16, 16, width, height, &mb->mv);
  960. } else switch (mb->partitioning) {
  961. case VP8_SPLITMVMODE_4x4: {
  962. int x, y;
  963. VP56mv uvmv;
  964. /* Y */
  965. for (y = 0; y < 4; y++) {
  966. for (x = 0; x < 4; x++) {
  967. vp8_mc(s, 1, dst[0] + 4*y*s->linesize + x*4,
  968. ref->data[0], &bmv[4*y + x],
  969. 4*x + x_off, 4*y + y_off, 4, 4,
  970. width, height, s->linesize,
  971. s->put_pixels_tab[2]);
  972. }
  973. }
  974. /* U/V */
  975. x_off >>= 1; y_off >>= 1; width >>= 1; height >>= 1;
  976. for (y = 0; y < 2; y++) {
  977. for (x = 0; x < 2; x++) {
  978. uvmv.x = mb->bmv[ 2*y * 4 + 2*x ].x +
  979. mb->bmv[ 2*y * 4 + 2*x+1].x +
  980. mb->bmv[(2*y+1) * 4 + 2*x ].x +
  981. mb->bmv[(2*y+1) * 4 + 2*x+1].x;
  982. uvmv.y = mb->bmv[ 2*y * 4 + 2*x ].y +
  983. mb->bmv[ 2*y * 4 + 2*x+1].y +
  984. mb->bmv[(2*y+1) * 4 + 2*x ].y +
  985. mb->bmv[(2*y+1) * 4 + 2*x+1].y;
  986. uvmv.x = (uvmv.x + 2 + (uvmv.x >> (INT_BIT-1))) >> 2;
  987. uvmv.y = (uvmv.y + 2 + (uvmv.y >> (INT_BIT-1))) >> 2;
  988. if (s->profile == 3) {
  989. uvmv.x &= ~7;
  990. uvmv.y &= ~7;
  991. }
  992. vp8_mc(s, 0, dst[1] + 4*y*s->uvlinesize + x*4,
  993. ref->data[1], &uvmv,
  994. 4*x + x_off, 4*y + y_off, 4, 4,
  995. width, height, s->uvlinesize,
  996. s->put_pixels_tab[2]);
  997. vp8_mc(s, 0, dst[2] + 4*y*s->uvlinesize + x*4,
  998. ref->data[2], &uvmv,
  999. 4*x + x_off, 4*y + y_off, 4, 4,
  1000. width, height, s->uvlinesize,
  1001. s->put_pixels_tab[2]);
  1002. }
  1003. }
  1004. break;
  1005. }
  1006. case VP8_SPLITMVMODE_16x8:
  1007. vp8_mc_part(s, dst, ref, x_off, y_off,
  1008. 0, 0, 16, 8, width, height, &bmv[0]);
  1009. vp8_mc_part(s, dst, ref, x_off, y_off,
  1010. 0, 8, 16, 8, width, height, &bmv[1]);
  1011. break;
  1012. case VP8_SPLITMVMODE_8x16:
  1013. vp8_mc_part(s, dst, ref, x_off, y_off,
  1014. 0, 0, 8, 16, width, height, &bmv[0]);
  1015. vp8_mc_part(s, dst, ref, x_off, y_off,
  1016. 8, 0, 8, 16, width, height, &bmv[1]);
  1017. break;
  1018. case VP8_SPLITMVMODE_8x8:
  1019. vp8_mc_part(s, dst, ref, x_off, y_off,
  1020. 0, 0, 8, 8, width, height, &bmv[0]);
  1021. vp8_mc_part(s, dst, ref, x_off, y_off,
  1022. 8, 0, 8, 8, width, height, &bmv[1]);
  1023. vp8_mc_part(s, dst, ref, x_off, y_off,
  1024. 0, 8, 8, 8, width, height, &bmv[2]);
  1025. vp8_mc_part(s, dst, ref, x_off, y_off,
  1026. 8, 8, 8, 8, width, height, &bmv[3]);
  1027. break;
  1028. }
  1029. }
  1030. static void idct_mb(VP8Context *s, uint8_t *dst[3], VP8Macroblock *mb)
  1031. {
  1032. int x, y, ch;
  1033. if (mb->mode != MODE_I4x4) {
  1034. uint8_t *y_dst = dst[0];
  1035. for (y = 0; y < 4; y++) {
  1036. uint32_t nnz4 = AV_RN32A(s->non_zero_count_cache[y]);
  1037. if (nnz4) {
  1038. if (nnz4&~0x01010101) {
  1039. for (x = 0; x < 4; x++) {
  1040. int nnz = s->non_zero_count_cache[y][x];
  1041. if (nnz) {
  1042. if (nnz == 1)
  1043. s->vp8dsp.vp8_idct_dc_add(y_dst+4*x, s->block[y][x], s->linesize);
  1044. else
  1045. s->vp8dsp.vp8_idct_add(y_dst+4*x, s->block[y][x], s->linesize);
  1046. }
  1047. }
  1048. } else {
  1049. s->vp8dsp.vp8_idct_dc_add4y(y_dst, s->block[y], s->linesize);
  1050. }
  1051. }
  1052. y_dst += 4*s->linesize;
  1053. }
  1054. }
  1055. for (ch = 0; ch < 2; ch++) {
  1056. uint32_t nnz4 = AV_RN32A(s->non_zero_count_cache[4+ch]);
  1057. if (nnz4) {
  1058. uint8_t *ch_dst = dst[1+ch];
  1059. if (nnz4&~0x01010101) {
  1060. for (y = 0; y < 2; y++) {
  1061. for (x = 0; x < 2; x++) {
  1062. int nnz = s->non_zero_count_cache[4+ch][(y<<1)+x];
  1063. if (nnz) {
  1064. if (nnz == 1)
  1065. s->vp8dsp.vp8_idct_dc_add(ch_dst+4*x, s->block[4+ch][(y<<1)+x], s->uvlinesize);
  1066. else
  1067. s->vp8dsp.vp8_idct_add(ch_dst+4*x, s->block[4+ch][(y<<1)+x], s->uvlinesize);
  1068. }
  1069. }
  1070. ch_dst += 4*s->uvlinesize;
  1071. }
  1072. } else {
  1073. s->vp8dsp.vp8_idct_dc_add4uv(ch_dst, s->block[4+ch], s->uvlinesize);
  1074. }
  1075. }
  1076. }
  1077. }
  1078. static void filter_level_for_mb(VP8Context *s, VP8Macroblock *mb, VP8FilterStrength *f )
  1079. {
  1080. int interior_limit, filter_level;
  1081. if (s->segmentation.enabled) {
  1082. filter_level = s->segmentation.filter_level[s->segment];
  1083. if (!s->segmentation.absolute_vals)
  1084. filter_level += s->filter.level;
  1085. } else
  1086. filter_level = s->filter.level;
  1087. if (s->lf_delta.enabled) {
  1088. filter_level += s->lf_delta.ref[mb->ref_frame];
  1089. if (mb->ref_frame == VP56_FRAME_CURRENT) {
  1090. if (mb->mode == MODE_I4x4)
  1091. filter_level += s->lf_delta.mode[0];
  1092. } else {
  1093. if (mb->mode == VP8_MVMODE_ZERO)
  1094. filter_level += s->lf_delta.mode[1];
  1095. else if (mb->mode == VP8_MVMODE_SPLIT)
  1096. filter_level += s->lf_delta.mode[3];
  1097. else
  1098. filter_level += s->lf_delta.mode[2];
  1099. }
  1100. }
  1101. filter_level = av_clip(filter_level, 0, 63);
  1102. interior_limit = filter_level;
  1103. if (s->filter.sharpness) {
  1104. interior_limit >>= s->filter.sharpness > 4 ? 2 : 1;
  1105. interior_limit = FFMIN(interior_limit, 9 - s->filter.sharpness);
  1106. }
  1107. interior_limit = FFMAX(interior_limit, 1);
  1108. f->filter_level = filter_level;
  1109. f->inner_limit = interior_limit;
  1110. f->inner_filter = !mb->skip || mb->mode == MODE_I4x4 || mb->mode == VP8_MVMODE_SPLIT;
  1111. }
  1112. static void filter_mb(VP8Context *s, uint8_t *dst[3], VP8FilterStrength *f, int mb_x, int mb_y)
  1113. {
  1114. int mbedge_lim, bedge_lim, hev_thresh;
  1115. int filter_level = f->filter_level;
  1116. int inner_limit = f->inner_limit;
  1117. int inner_filter = f->inner_filter;
  1118. int linesize = s->linesize;
  1119. int uvlinesize = s->uvlinesize;
  1120. if (!filter_level)
  1121. return;
  1122. mbedge_lim = 2*(filter_level+2) + inner_limit;
  1123. bedge_lim = 2* filter_level + inner_limit;
  1124. hev_thresh = filter_level >= 15;
  1125. if (s->keyframe) {
  1126. if (filter_level >= 40)
  1127. hev_thresh = 2;
  1128. } else {
  1129. if (filter_level >= 40)
  1130. hev_thresh = 3;
  1131. else if (filter_level >= 20)
  1132. hev_thresh = 2;
  1133. }
  1134. if (mb_x) {
  1135. s->vp8dsp.vp8_h_loop_filter16y(dst[0], linesize,
  1136. mbedge_lim, inner_limit, hev_thresh);
  1137. s->vp8dsp.vp8_h_loop_filter8uv(dst[1], dst[2], uvlinesize,
  1138. mbedge_lim, inner_limit, hev_thresh);
  1139. }
  1140. if (inner_filter) {
  1141. s->vp8dsp.vp8_h_loop_filter16y_inner(dst[0]+ 4, linesize, bedge_lim,
  1142. inner_limit, hev_thresh);
  1143. s->vp8dsp.vp8_h_loop_filter16y_inner(dst[0]+ 8, linesize, bedge_lim,
  1144. inner_limit, hev_thresh);
  1145. s->vp8dsp.vp8_h_loop_filter16y_inner(dst[0]+12, linesize, bedge_lim,
  1146. inner_limit, hev_thresh);
  1147. s->vp8dsp.vp8_h_loop_filter8uv_inner(dst[1] + 4, dst[2] + 4,
  1148. uvlinesize, bedge_lim,
  1149. inner_limit, hev_thresh);
  1150. }
  1151. if (mb_y) {
  1152. s->vp8dsp.vp8_v_loop_filter16y(dst[0], linesize,
  1153. mbedge_lim, inner_limit, hev_thresh);
  1154. s->vp8dsp.vp8_v_loop_filter8uv(dst[1], dst[2], uvlinesize,
  1155. mbedge_lim, inner_limit, hev_thresh);
  1156. }
  1157. if (inner_filter) {
  1158. s->vp8dsp.vp8_v_loop_filter16y_inner(dst[0]+ 4*linesize,
  1159. linesize, bedge_lim,
  1160. inner_limit, hev_thresh);
  1161. s->vp8dsp.vp8_v_loop_filter16y_inner(dst[0]+ 8*linesize,
  1162. linesize, bedge_lim,
  1163. inner_limit, hev_thresh);
  1164. s->vp8dsp.vp8_v_loop_filter16y_inner(dst[0]+12*linesize,
  1165. linesize, bedge_lim,
  1166. inner_limit, hev_thresh);
  1167. s->vp8dsp.vp8_v_loop_filter8uv_inner(dst[1] + 4 * uvlinesize,
  1168. dst[2] + 4 * uvlinesize,
  1169. uvlinesize, bedge_lim,
  1170. inner_limit, hev_thresh);
  1171. }
  1172. }
  1173. static void filter_mb_simple(VP8Context *s, uint8_t *dst, VP8FilterStrength *f, int mb_x, int mb_y)
  1174. {
  1175. int mbedge_lim, bedge_lim;
  1176. int filter_level = f->filter_level;
  1177. int inner_limit = f->inner_limit;
  1178. int inner_filter = f->inner_filter;
  1179. int linesize = s->linesize;
  1180. if (!filter_level)
  1181. return;
  1182. mbedge_lim = 2*(filter_level+2) + inner_limit;
  1183. bedge_lim = 2* filter_level + inner_limit;
  1184. if (mb_x)
  1185. s->vp8dsp.vp8_h_loop_filter_simple(dst, linesize, mbedge_lim);
  1186. if (inner_filter) {
  1187. s->vp8dsp.vp8_h_loop_filter_simple(dst+ 4, linesize, bedge_lim);
  1188. s->vp8dsp.vp8_h_loop_filter_simple(dst+ 8, linesize, bedge_lim);
  1189. s->vp8dsp.vp8_h_loop_filter_simple(dst+12, linesize, bedge_lim);
  1190. }
  1191. if (mb_y)
  1192. s->vp8dsp.vp8_v_loop_filter_simple(dst, linesize, mbedge_lim);
  1193. if (inner_filter) {
  1194. s->vp8dsp.vp8_v_loop_filter_simple(dst+ 4*linesize, linesize, bedge_lim);
  1195. s->vp8dsp.vp8_v_loop_filter_simple(dst+ 8*linesize, linesize, bedge_lim);
  1196. s->vp8dsp.vp8_v_loop_filter_simple(dst+12*linesize, linesize, bedge_lim);
  1197. }
  1198. }
  1199. static void filter_mb_row(VP8Context *s, int mb_y)
  1200. {
  1201. VP8FilterStrength *f = s->filter_strength;
  1202. uint8_t *dst[3] = {
  1203. s->framep[VP56_FRAME_CURRENT]->data[0] + 16*mb_y*s->linesize,
  1204. s->framep[VP56_FRAME_CURRENT]->data[1] + 8*mb_y*s->uvlinesize,
  1205. s->framep[VP56_FRAME_CURRENT]->data[2] + 8*mb_y*s->uvlinesize
  1206. };
  1207. int mb_x;
  1208. for (mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1209. backup_mb_border(s->top_border[mb_x+1], dst[0], dst[1], dst[2], s->linesize, s->uvlinesize, 0);
  1210. filter_mb(s, dst, f++, mb_x, mb_y);
  1211. dst[0] += 16;
  1212. dst[1] += 8;
  1213. dst[2] += 8;
  1214. }
  1215. }
  1216. static void filter_mb_row_simple(VP8Context *s, int mb_y)
  1217. {
  1218. VP8FilterStrength *f = s->filter_strength;
  1219. uint8_t *dst = s->framep[VP56_FRAME_CURRENT]->data[0] + 16*mb_y*s->linesize;
  1220. int mb_x;
  1221. for (mb_x = 0; mb_x < s->mb_width; mb_x++) {
  1222. backup_mb_border(s->top_border[mb_x+1], dst, NULL, NULL, s->linesize, 0, 1);
  1223. filter_mb_simple(s, dst, f++, mb_x, mb_y);
  1224. dst += 16;
  1225. }
  1226. }
  1227. static int vp8_decode_frame(AVCodecContext *avctx, void *data, int *data_size,
  1228. AVPacket *avpkt)
  1229. {
  1230. VP8Context *s = avctx->priv_data;
  1231. int ret, mb_x, mb_y, i, y, referenced;
  1232. enum AVDiscard skip_thresh;
  1233. AVFrame *curframe = NULL;
  1234. if ((ret = decode_frame_header(s, avpkt->data, avpkt->size)) < 0)
  1235. return ret;
  1236. referenced = s->update_last || s->update_golden == VP56_FRAME_CURRENT
  1237. || s->update_altref == VP56_FRAME_CURRENT;
  1238. skip_thresh = !referenced ? AVDISCARD_NONREF :
  1239. !s->keyframe ? AVDISCARD_NONKEY : AVDISCARD_ALL;
  1240. if (avctx->skip_frame >= skip_thresh) {
  1241. s->invisible = 1;
  1242. goto skip_decode;
  1243. }
  1244. s->deblock_filter = s->filter.level && avctx->skip_loop_filter < skip_thresh;
  1245. for (i = 0; i < 4; i++)
  1246. if (&s->frames[i] != s->framep[VP56_FRAME_PREVIOUS] &&
  1247. &s->frames[i] != s->framep[VP56_FRAME_GOLDEN] &&
  1248. &s->frames[i] != s->framep[VP56_FRAME_GOLDEN2]) {
  1249. curframe = s->framep[VP56_FRAME_CURRENT] = &s->frames[i];
  1250. break;
  1251. }
  1252. if (curframe->data[0])
  1253. avctx->release_buffer(avctx, curframe);
  1254. curframe->key_frame = s->keyframe;
  1255. curframe->pict_type = s->keyframe ? FF_I_TYPE : FF_P_TYPE;
  1256. curframe->reference = referenced ? 3 : 0;
  1257. if ((ret = avctx->get_buffer(avctx, curframe))) {
  1258. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed!\n");
  1259. return ret;
  1260. }
  1261. // Given that arithmetic probabilities are updated every frame, it's quite likely
  1262. // that the values we have on a random interframe are complete junk if we didn't
  1263. // start decode on a keyframe. So just don't display anything rather than junk.
  1264. if (!s->keyframe && (!s->framep[VP56_FRAME_PREVIOUS] ||
  1265. !s->framep[VP56_FRAME_GOLDEN] ||
  1266. !s->framep[VP56_FRAME_GOLDEN2])) {
  1267. av_log(avctx, AV_LOG_WARNING, "Discarding interframe without a prior keyframe!\n");
  1268. return AVERROR_INVALIDDATA;
  1269. }
  1270. s->linesize = curframe->linesize[0];
  1271. s->uvlinesize = curframe->linesize[1];
  1272. if (!s->edge_emu_buffer)
  1273. s->edge_emu_buffer = av_malloc(21*s->linesize);
  1274. memset(s->top_nnz, 0, s->mb_width*sizeof(*s->top_nnz));
  1275. /* Zero macroblock structures for top/left prediction from outside the frame. */
  1276. memset(s->macroblocks, 0, (s->mb_width + s->mb_height*2)*sizeof(*s->macroblocks));
  1277. // top edge of 127 for intra prediction
  1278. memset(s->top_border, 127, (s->mb_width+1)*sizeof(*s->top_border));
  1279. memset(s->ref_count, 0, sizeof(s->ref_count));
  1280. for (mb_y = 0; mb_y < s->mb_height; mb_y++) {
  1281. VP56RangeCoder *c = &s->coeff_partition[mb_y & (s->num_coeff_partitions-1)];
  1282. VP8Macroblock *mb = s->macroblocks + (s->mb_height - mb_y - 1)*2;
  1283. uint8_t *intra4x4 = s->intra4x4_pred_mode + 4*mb_y*s->b4_stride;
  1284. uint8_t *segment_map = s->segmentation_map + mb_y*s->mb_stride;
  1285. int mb_xy = mb_y * s->mb_stride;
  1286. uint8_t *dst[3] = {
  1287. curframe->data[0] + 16*mb_y*s->linesize,
  1288. curframe->data[1] + 8*mb_y*s->uvlinesize,
  1289. curframe->data[2] + 8*mb_y*s->uvlinesize
  1290. };
  1291. memset(s->left_nnz, 0, sizeof(s->left_nnz));
  1292. // left edge of 129 for intra prediction
  1293. if (!(avctx->flags & CODEC_FLAG_EMU_EDGE))
  1294. for (i = 0; i < 3; i++)
  1295. for (y = 0; y < 16>>!!i; y++)
  1296. dst[i][y*curframe->linesize[i]-1] = 129;
  1297. if (mb_y)
  1298. memset(s->top_border, 129, sizeof(*s->top_border));
  1299. for (mb_x = 0; mb_x < s->mb_width; mb_x++, mb_xy++, mb++) {
  1300. uint8_t *intra4x4_mb = s->keyframe ? intra4x4 + 4*mb_x : s->intra4x4_pred_mode_mb;
  1301. uint8_t *segment_mb = segment_map+mb_x;
  1302. /* Prefetch the current frame, 4 MBs ahead */
  1303. s->dsp.prefetch(dst[0] + (mb_x&3)*4*s->linesize + 64, s->linesize, 4);
  1304. s->dsp.prefetch(dst[1] + (mb_x&7)*s->uvlinesize + 64, dst[2] - dst[1], 2);
  1305. decode_mb_mode(s, mb, mb_x, mb_y, intra4x4_mb, segment_mb);
  1306. prefetch_motion(s, mb, mb_x, mb_y, mb_xy, VP56_FRAME_PREVIOUS);
  1307. if (!mb->skip)
  1308. decode_mb_coeffs(s, c, mb, s->top_nnz[mb_x], s->left_nnz);
  1309. if (mb->mode <= MODE_I4x4)
  1310. intra_predict(s, dst, mb, intra4x4_mb, mb_x, mb_y);
  1311. else
  1312. inter_predict(s, dst, mb, mb_x, mb_y);
  1313. prefetch_motion(s, mb, mb_x, mb_y, mb_xy, VP56_FRAME_GOLDEN);
  1314. if (!mb->skip) {
  1315. idct_mb(s, dst, mb);
  1316. } else {
  1317. AV_ZERO64(s->left_nnz);
  1318. AV_WN64(s->top_nnz[mb_x], 0); // array of 9, so unaligned
  1319. // Reset DC block predictors if they would exist if the mb had coefficients
  1320. if (mb->mode != MODE_I4x4 && mb->mode != VP8_MVMODE_SPLIT) {
  1321. s->left_nnz[8] = 0;
  1322. s->top_nnz[mb_x][8] = 0;
  1323. }
  1324. }
  1325. if (s->deblock_filter)
  1326. filter_level_for_mb(s, mb, &s->filter_strength[mb_x]);
  1327. prefetch_motion(s, mb, mb_x, mb_y, mb_xy, VP56_FRAME_GOLDEN2);
  1328. dst[0] += 16;
  1329. dst[1] += 8;
  1330. dst[2] += 8;
  1331. }
  1332. if (s->deblock_filter) {
  1333. if (s->filter.simple)
  1334. filter_mb_row_simple(s, mb_y);
  1335. else
  1336. filter_mb_row(s, mb_y);
  1337. }
  1338. }
  1339. skip_decode:
  1340. // if future frames don't use the updated probabilities,
  1341. // reset them to the values we saved
  1342. if (!s->update_probabilities)
  1343. s->prob[0] = s->prob[1];
  1344. // check if golden and altref are swapped
  1345. if (s->update_altref == VP56_FRAME_GOLDEN &&
  1346. s->update_golden == VP56_FRAME_GOLDEN2)
  1347. FFSWAP(AVFrame *, s->framep[VP56_FRAME_GOLDEN], s->framep[VP56_FRAME_GOLDEN2]);
  1348. else {
  1349. if (s->update_altref != VP56_FRAME_NONE)
  1350. s->framep[VP56_FRAME_GOLDEN2] = s->framep[s->update_altref];
  1351. if (s->update_golden != VP56_FRAME_NONE)
  1352. s->framep[VP56_FRAME_GOLDEN] = s->framep[s->update_golden];
  1353. }
  1354. if (s->update_last) // move cur->prev
  1355. s->framep[VP56_FRAME_PREVIOUS] = s->framep[VP56_FRAME_CURRENT];
  1356. // release no longer referenced frames
  1357. for (i = 0; i < 4; i++)
  1358. if (s->frames[i].data[0] &&
  1359. &s->frames[i] != s->framep[VP56_FRAME_CURRENT] &&
  1360. &s->frames[i] != s->framep[VP56_FRAME_PREVIOUS] &&
  1361. &s->frames[i] != s->framep[VP56_FRAME_GOLDEN] &&
  1362. &s->frames[i] != s->framep[VP56_FRAME_GOLDEN2])
  1363. avctx->release_buffer(avctx, &s->frames[i]);
  1364. if (!s->invisible) {
  1365. *(AVFrame*)data = *s->framep[VP56_FRAME_CURRENT];
  1366. *data_size = sizeof(AVFrame);
  1367. }
  1368. return avpkt->size;
  1369. }
  1370. static av_cold int vp8_decode_init(AVCodecContext *avctx)
  1371. {
  1372. VP8Context *s = avctx->priv_data;
  1373. s->avctx = avctx;
  1374. avctx->pix_fmt = PIX_FMT_YUV420P;
  1375. dsputil_init(&s->dsp, avctx);
  1376. ff_h264_pred_init(&s->hpc, CODEC_ID_VP8);
  1377. ff_vp8dsp_init(&s->vp8dsp);
  1378. // intra pred needs edge emulation among other things
  1379. if (avctx->flags&CODEC_FLAG_EMU_EDGE) {
  1380. av_log(avctx, AV_LOG_ERROR, "Edge emulation not supported\n");
  1381. return AVERROR_PATCHWELCOME;
  1382. }
  1383. return 0;
  1384. }
  1385. static av_cold int vp8_decode_free(AVCodecContext *avctx)
  1386. {
  1387. vp8_decode_flush(avctx);
  1388. return 0;
  1389. }
  1390. AVCodec vp8_decoder = {
  1391. "vp8",
  1392. AVMEDIA_TYPE_VIDEO,
  1393. CODEC_ID_VP8,
  1394. sizeof(VP8Context),
  1395. vp8_decode_init,
  1396. NULL,
  1397. vp8_decode_free,
  1398. vp8_decode_frame,
  1399. CODEC_CAP_DR1,
  1400. .flush = vp8_decode_flush,
  1401. .long_name = NULL_IF_CONFIG_SMALL("On2 VP8"),
  1402. };