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.

309 lines
11KB

  1. /*
  2. * Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * VP5 compatible video decoder
  23. */
  24. #include <stdlib.h>
  25. #include <string.h>
  26. #include "avcodec.h"
  27. #include "internal.h"
  28. #include "vp56.h"
  29. #include "vp56data.h"
  30. #include "vp5data.h"
  31. static int vp5_parse_header(VP56Context *s, const uint8_t *buf, int buf_size)
  32. {
  33. VP56RangeCoder *c = &s->c;
  34. int rows, cols;
  35. int ret;
  36. ret = ff_vp56_init_range_decoder(&s->c, buf, buf_size);
  37. if (ret < 0)
  38. return ret;
  39. s->frames[VP56_FRAME_CURRENT]->key_frame = !vp56_rac_get(c);
  40. vp56_rac_get(c);
  41. ff_vp56_init_dequant(s, vp56_rac_gets(c, 6));
  42. if (s->frames[VP56_FRAME_CURRENT]->key_frame)
  43. {
  44. int render_x, render_y;
  45. vp56_rac_gets(c, 8);
  46. if(vp56_rac_gets(c, 5) > 5)
  47. return AVERROR_INVALIDDATA;
  48. vp56_rac_gets(c, 2);
  49. if (vp56_rac_get(c)) {
  50. avpriv_report_missing_feature(s->avctx, "Interlacing");
  51. return AVERROR_PATCHWELCOME;
  52. }
  53. rows = vp56_rac_gets(c, 8); /* number of stored macroblock rows */
  54. cols = vp56_rac_gets(c, 8); /* number of stored macroblock cols */
  55. if (!rows || !cols) {
  56. av_log(s->avctx, AV_LOG_ERROR, "Invalid size %dx%d\n",
  57. cols << 4, rows << 4);
  58. return AVERROR_INVALIDDATA;
  59. }
  60. render_y = vp56_rac_gets(c, 8); /* number of displayed macroblock rows */
  61. render_x = vp56_rac_gets(c, 8); /* number of displayed macroblock cols */
  62. if (render_x == 0 || render_x > cols ||
  63. render_y == 0 || render_y > rows)
  64. return AVERROR_INVALIDDATA;
  65. vp56_rac_gets(c, 2);
  66. if (!s->macroblocks || /* first frame */
  67. 16*cols != s->avctx->coded_width ||
  68. 16*rows != s->avctx->coded_height) {
  69. int ret = ff_set_dimensions(s->avctx, 16 * cols, 16 * rows);
  70. if (ret < 0)
  71. return ret;
  72. return VP56_SIZE_CHANGE;
  73. }
  74. } else if (!s->macroblocks)
  75. return AVERROR_INVALIDDATA;
  76. return 0;
  77. }
  78. static void vp5_parse_vector_adjustment(VP56Context *s, VP56mv *vect)
  79. {
  80. VP56RangeCoder *c = &s->c;
  81. VP56Model *model = s->modelp;
  82. int comp, di;
  83. for (comp=0; comp<2; comp++) {
  84. int delta = 0;
  85. if (vp56_rac_get_prob_branchy(c, model->vector_dct[comp])) {
  86. int sign = vp56_rac_get_prob(c, model->vector_sig[comp]);
  87. di = vp56_rac_get_prob(c, model->vector_pdi[comp][0]);
  88. di |= vp56_rac_get_prob(c, model->vector_pdi[comp][1]) << 1;
  89. delta = vp56_rac_get_tree(c, ff_vp56_pva_tree,
  90. model->vector_pdv[comp]);
  91. delta = di | (delta << 2);
  92. delta = (delta ^ -sign) + sign;
  93. }
  94. if (!comp)
  95. vect->x = delta;
  96. else
  97. vect->y = delta;
  98. }
  99. }
  100. static void vp5_parse_vector_models(VP56Context *s)
  101. {
  102. VP56RangeCoder *c = &s->c;
  103. VP56Model *model = s->modelp;
  104. int comp, node;
  105. for (comp=0; comp<2; comp++) {
  106. if (vp56_rac_get_prob_branchy(c, vp5_vmc_pct[comp][0]))
  107. model->vector_dct[comp] = vp56_rac_gets_nn(c, 7);
  108. if (vp56_rac_get_prob_branchy(c, vp5_vmc_pct[comp][1]))
  109. model->vector_sig[comp] = vp56_rac_gets_nn(c, 7);
  110. if (vp56_rac_get_prob_branchy(c, vp5_vmc_pct[comp][2]))
  111. model->vector_pdi[comp][0] = vp56_rac_gets_nn(c, 7);
  112. if (vp56_rac_get_prob_branchy(c, vp5_vmc_pct[comp][3]))
  113. model->vector_pdi[comp][1] = vp56_rac_gets_nn(c, 7);
  114. }
  115. for (comp=0; comp<2; comp++)
  116. for (node=0; node<7; node++)
  117. if (vp56_rac_get_prob_branchy(c, vp5_vmc_pct[comp][4 + node]))
  118. model->vector_pdv[comp][node] = vp56_rac_gets_nn(c, 7);
  119. }
  120. static int vp5_parse_coeff_models(VP56Context *s)
  121. {
  122. VP56RangeCoder *c = &s->c;
  123. VP56Model *model = s->modelp;
  124. uint8_t def_prob[11];
  125. int node, cg, ctx;
  126. int ct; /* code type */
  127. int pt; /* plane type (0 for Y, 1 for U or V) */
  128. memset(def_prob, 0x80, sizeof(def_prob));
  129. for (pt=0; pt<2; pt++)
  130. for (node=0; node<11; node++)
  131. if (vp56_rac_get_prob_branchy(c, vp5_dccv_pct[pt][node])) {
  132. def_prob[node] = vp56_rac_gets_nn(c, 7);
  133. model->coeff_dccv[pt][node] = def_prob[node];
  134. } else if (s->frames[VP56_FRAME_CURRENT]->key_frame) {
  135. model->coeff_dccv[pt][node] = def_prob[node];
  136. }
  137. for (ct=0; ct<3; ct++)
  138. for (pt=0; pt<2; pt++)
  139. for (cg=0; cg<6; cg++)
  140. for (node=0; node<11; node++)
  141. if (vp56_rac_get_prob_branchy(c, vp5_ract_pct[ct][pt][cg][node])) {
  142. def_prob[node] = vp56_rac_gets_nn(c, 7);
  143. model->coeff_ract[pt][ct][cg][node] = def_prob[node];
  144. } else if (s->frames[VP56_FRAME_CURRENT]->key_frame) {
  145. model->coeff_ract[pt][ct][cg][node] = def_prob[node];
  146. }
  147. /* coeff_dcct is a linear combination of coeff_dccv */
  148. for (pt=0; pt<2; pt++)
  149. for (ctx=0; ctx<36; ctx++)
  150. for (node=0; node<5; node++)
  151. model->coeff_dcct[pt][ctx][node] = av_clip(((model->coeff_dccv[pt][node] * vp5_dccv_lc[node][ctx][0] + 128) >> 8) + vp5_dccv_lc[node][ctx][1], 1, 254);
  152. /* coeff_acct is a linear combination of coeff_ract */
  153. for (ct=0; ct<3; ct++)
  154. for (pt=0; pt<2; pt++)
  155. for (cg=0; cg<3; cg++)
  156. for (ctx=0; ctx<6; ctx++)
  157. for (node=0; node<5; node++)
  158. model->coeff_acct[pt][ct][cg][ctx][node] = av_clip(((model->coeff_ract[pt][ct][cg][node] * vp5_ract_lc[ct][cg][node][ctx][0] + 128) >> 8) + vp5_ract_lc[ct][cg][node][ctx][1], 1, 254);
  159. return 0;
  160. }
  161. static int vp5_parse_coeff(VP56Context *s)
  162. {
  163. VP56RangeCoder *c = &s->c;
  164. VP56Model *model = s->modelp;
  165. uint8_t *permute = s->idct_scantable;
  166. uint8_t *model1, *model2;
  167. int coeff, sign, coeff_idx;
  168. int b, i, cg, idx, ctx, ctx_last;
  169. int pt = 0; /* plane type (0 for Y, 1 for U or V) */
  170. if (vpX_rac_is_end(c)) {
  171. av_log(s->avctx, AV_LOG_ERROR, "End of AC stream reached in vp5_parse_coeff\n");
  172. return AVERROR_INVALIDDATA;
  173. }
  174. for (b=0; b<6; b++) {
  175. int ct = 1; /* code type */
  176. if (b > 3) pt = 1;
  177. ctx = 6*s->coeff_ctx[ff_vp56_b6to4[b]][0]
  178. + s->above_blocks[s->above_block_idx[b]].not_null_dc;
  179. model1 = model->coeff_dccv[pt];
  180. model2 = model->coeff_dcct[pt][ctx];
  181. coeff_idx = 0;
  182. for (;;) {
  183. if (vp56_rac_get_prob_branchy(c, model2[0])) {
  184. if (vp56_rac_get_prob_branchy(c, model2[2])) {
  185. if (vp56_rac_get_prob_branchy(c, model2[3])) {
  186. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 4;
  187. idx = vp56_rac_get_tree(c, ff_vp56_pc_tree, model1);
  188. sign = vp56_rac_get(c);
  189. coeff = ff_vp56_coeff_bias[idx+5];
  190. for (i=ff_vp56_coeff_bit_length[idx]; i>=0; i--)
  191. coeff += vp56_rac_get_prob(c, ff_vp56_coeff_parse_table[idx][i]) << i;
  192. } else {
  193. if (vp56_rac_get_prob_branchy(c, model2[4])) {
  194. coeff = 3 + vp56_rac_get_prob(c, model1[5]);
  195. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 3;
  196. } else {
  197. coeff = 2;
  198. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 2;
  199. }
  200. sign = vp56_rac_get(c);
  201. }
  202. ct = 2;
  203. } else {
  204. ct = 1;
  205. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 1;
  206. sign = vp56_rac_get(c);
  207. coeff = 1;
  208. }
  209. coeff = (coeff ^ -sign) + sign;
  210. if (coeff_idx)
  211. coeff *= s->dequant_ac;
  212. s->block_coeff[b][permute[coeff_idx]] = coeff;
  213. } else {
  214. if (ct && !vp56_rac_get_prob_branchy(c, model2[1]))
  215. break;
  216. ct = 0;
  217. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 0;
  218. }
  219. coeff_idx++;
  220. if (coeff_idx >= 64)
  221. break;
  222. cg = vp5_coeff_groups[coeff_idx];
  223. ctx = s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx];
  224. model1 = model->coeff_ract[pt][ct][cg];
  225. model2 = cg > 2 ? model1 : model->coeff_acct[pt][ct][cg][ctx];
  226. }
  227. ctx_last = FFMIN(s->coeff_ctx_last[ff_vp56_b6to4[b]], 24);
  228. s->coeff_ctx_last[ff_vp56_b6to4[b]] = coeff_idx;
  229. if (coeff_idx < ctx_last)
  230. for (i=coeff_idx; i<=ctx_last; i++)
  231. s->coeff_ctx[ff_vp56_b6to4[b]][i] = 5;
  232. s->above_blocks[s->above_block_idx[b]].not_null_dc = s->coeff_ctx[ff_vp56_b6to4[b]][0];
  233. }
  234. return 0;
  235. }
  236. static void vp5_default_models_init(VP56Context *s)
  237. {
  238. VP56Model *model = s->modelp;
  239. int i;
  240. for (i=0; i<2; i++) {
  241. model->vector_sig[i] = 0x80;
  242. model->vector_dct[i] = 0x80;
  243. model->vector_pdi[i][0] = 0x55;
  244. model->vector_pdi[i][1] = 0x80;
  245. }
  246. memcpy(model->mb_types_stats, ff_vp56_def_mb_types_stats, sizeof(model->mb_types_stats));
  247. memset(model->vector_pdv, 0x80, sizeof(model->vector_pdv));
  248. }
  249. static av_cold int vp5_decode_init(AVCodecContext *avctx)
  250. {
  251. VP56Context *s = avctx->priv_data;
  252. int ret;
  253. if ((ret = ff_vp56_init(avctx, 1, 0)) < 0)
  254. return ret;
  255. ff_vp5dsp_init(&s->vp56dsp);
  256. s->vp56_coord_div = vp5_coord_div;
  257. s->parse_vector_adjustment = vp5_parse_vector_adjustment;
  258. s->parse_coeff = vp5_parse_coeff;
  259. s->default_models_init = vp5_default_models_init;
  260. s->parse_vector_models = vp5_parse_vector_models;
  261. s->parse_coeff_models = vp5_parse_coeff_models;
  262. s->parse_header = vp5_parse_header;
  263. return 0;
  264. }
  265. AVCodec ff_vp5_decoder = {
  266. .name = "vp5",
  267. .long_name = NULL_IF_CONFIG_SMALL("On2 VP5"),
  268. .type = AVMEDIA_TYPE_VIDEO,
  269. .id = AV_CODEC_ID_VP5,
  270. .priv_data_size = sizeof(VP56Context),
  271. .init = vp5_decode_init,
  272. .close = ff_vp56_free,
  273. .decode = ff_vp56_decode_frame,
  274. .capabilities = AV_CODEC_CAP_DR1,
  275. };