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.

296 lines
11KB

  1. /*
  2. * Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; 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. int *golden_frame)
  33. {
  34. VP56RangeCoder *c = &s->c;
  35. int rows, cols;
  36. ff_vp56_init_range_decoder(&s->c, buf, buf_size);
  37. s->frames[VP56_FRAME_CURRENT]->key_frame = !vp56_rac_get(c);
  38. vp56_rac_get(c);
  39. ff_vp56_init_dequant(s, vp56_rac_gets(c, 6));
  40. if (s->frames[VP56_FRAME_CURRENT]->key_frame)
  41. {
  42. vp56_rac_gets(c, 8);
  43. if(vp56_rac_gets(c, 5) > 5)
  44. return AVERROR_INVALIDDATA;
  45. vp56_rac_gets(c, 2);
  46. if (vp56_rac_get(c)) {
  47. avpriv_report_missing_feature(s->avctx, "Interlacing");
  48. return AVERROR_PATCHWELCOME;
  49. }
  50. rows = vp56_rac_gets(c, 8); /* number of stored macroblock rows */
  51. cols = vp56_rac_gets(c, 8); /* number of stored macroblock cols */
  52. if (!rows || !cols) {
  53. av_log(s->avctx, AV_LOG_ERROR, "Invalid size %dx%d\n",
  54. cols << 4, rows << 4);
  55. return AVERROR_INVALIDDATA;
  56. }
  57. vp56_rac_gets(c, 8); /* number of displayed macroblock rows */
  58. vp56_rac_gets(c, 8); /* number of displayed macroblock cols */
  59. vp56_rac_gets(c, 2);
  60. if (!s->macroblocks || /* first frame */
  61. 16*cols != s->avctx->coded_width ||
  62. 16*rows != s->avctx->coded_height) {
  63. int ret = ff_set_dimensions(s->avctx, 16 * cols, 16 * rows);
  64. if (ret < 0)
  65. return ret;
  66. return VP56_SIZE_CHANGE;
  67. }
  68. } else if (!s->macroblocks)
  69. return AVERROR_INVALIDDATA;
  70. return 0;
  71. }
  72. static void vp5_parse_vector_adjustment(VP56Context *s, VP56mv *vect)
  73. {
  74. VP56RangeCoder *c = &s->c;
  75. VP56Model *model = s->modelp;
  76. int comp, di;
  77. for (comp=0; comp<2; comp++) {
  78. int delta = 0;
  79. if (vp56_rac_get_prob(c, model->vector_dct[comp])) {
  80. int sign = vp56_rac_get_prob(c, model->vector_sig[comp]);
  81. di = vp56_rac_get_prob(c, model->vector_pdi[comp][0]);
  82. di |= vp56_rac_get_prob(c, model->vector_pdi[comp][1]) << 1;
  83. delta = vp56_rac_get_tree(c, ff_vp56_pva_tree,
  84. model->vector_pdv[comp]);
  85. delta = di | (delta << 2);
  86. delta = (delta ^ -sign) + sign;
  87. }
  88. if (!comp)
  89. vect->x = delta;
  90. else
  91. vect->y = delta;
  92. }
  93. }
  94. static void vp5_parse_vector_models(VP56Context *s)
  95. {
  96. VP56RangeCoder *c = &s->c;
  97. VP56Model *model = s->modelp;
  98. int comp, node;
  99. for (comp=0; comp<2; comp++) {
  100. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][0]))
  101. model->vector_dct[comp] = vp56_rac_gets_nn(c, 7);
  102. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][1]))
  103. model->vector_sig[comp] = vp56_rac_gets_nn(c, 7);
  104. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][2]))
  105. model->vector_pdi[comp][0] = vp56_rac_gets_nn(c, 7);
  106. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][3]))
  107. model->vector_pdi[comp][1] = vp56_rac_gets_nn(c, 7);
  108. }
  109. for (comp=0; comp<2; comp++)
  110. for (node=0; node<7; node++)
  111. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][4 + node]))
  112. model->vector_pdv[comp][node] = vp56_rac_gets_nn(c, 7);
  113. }
  114. static int vp5_parse_coeff_models(VP56Context *s)
  115. {
  116. VP56RangeCoder *c = &s->c;
  117. VP56Model *model = s->modelp;
  118. uint8_t def_prob[11];
  119. int node, cg, ctx;
  120. int ct; /* code type */
  121. int pt; /* plane type (0 for Y, 1 for U or V) */
  122. memset(def_prob, 0x80, sizeof(def_prob));
  123. for (pt=0; pt<2; pt++)
  124. for (node=0; node<11; node++)
  125. if (vp56_rac_get_prob(c, vp5_dccv_pct[pt][node])) {
  126. def_prob[node] = vp56_rac_gets_nn(c, 7);
  127. model->coeff_dccv[pt][node] = def_prob[node];
  128. } else if (s->frames[VP56_FRAME_CURRENT]->key_frame) {
  129. model->coeff_dccv[pt][node] = def_prob[node];
  130. }
  131. for (ct=0; ct<3; ct++)
  132. for (pt=0; pt<2; pt++)
  133. for (cg=0; cg<6; cg++)
  134. for (node=0; node<11; node++)
  135. if (vp56_rac_get_prob(c, vp5_ract_pct[ct][pt][cg][node])) {
  136. def_prob[node] = vp56_rac_gets_nn(c, 7);
  137. model->coeff_ract[pt][ct][cg][node] = def_prob[node];
  138. } else if (s->frames[VP56_FRAME_CURRENT]->key_frame) {
  139. model->coeff_ract[pt][ct][cg][node] = def_prob[node];
  140. }
  141. /* coeff_dcct is a linear combination of coeff_dccv */
  142. for (pt=0; pt<2; pt++)
  143. for (ctx=0; ctx<36; ctx++)
  144. for (node=0; node<5; node++)
  145. 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);
  146. /* coeff_acct is a linear combination of coeff_ract */
  147. for (ct=0; ct<3; ct++)
  148. for (pt=0; pt<2; pt++)
  149. for (cg=0; cg<3; cg++)
  150. for (ctx=0; ctx<6; ctx++)
  151. for (node=0; node<5; node++)
  152. 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);
  153. return 0;
  154. }
  155. static void vp5_parse_coeff(VP56Context *s)
  156. {
  157. VP56RangeCoder *c = &s->c;
  158. VP56Model *model = s->modelp;
  159. uint8_t *permute = s->idct_scantable;
  160. uint8_t *model1, *model2;
  161. int coeff, sign, coeff_idx;
  162. int b, i, cg, idx, ctx, ctx_last;
  163. int pt = 0; /* plane type (0 for Y, 1 for U or V) */
  164. for (b=0; b<6; b++) {
  165. int ct = 1; /* code type */
  166. if (b > 3) pt = 1;
  167. ctx = 6*s->coeff_ctx[ff_vp56_b6to4[b]][0]
  168. + s->above_blocks[s->above_block_idx[b]].not_null_dc;
  169. model1 = model->coeff_dccv[pt];
  170. model2 = model->coeff_dcct[pt][ctx];
  171. coeff_idx = 0;
  172. for (;;) {
  173. if (vp56_rac_get_prob(c, model2[0])) {
  174. if (vp56_rac_get_prob(c, model2[2])) {
  175. if (vp56_rac_get_prob(c, model2[3])) {
  176. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 4;
  177. idx = vp56_rac_get_tree(c, ff_vp56_pc_tree, model1);
  178. sign = vp56_rac_get(c);
  179. coeff = ff_vp56_coeff_bias[idx+5];
  180. for (i=ff_vp56_coeff_bit_length[idx]; i>=0; i--)
  181. coeff += vp56_rac_get_prob(c, ff_vp56_coeff_parse_table[idx][i]) << i;
  182. } else {
  183. if (vp56_rac_get_prob(c, model2[4])) {
  184. coeff = 3 + vp56_rac_get_prob(c, model1[5]);
  185. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 3;
  186. } else {
  187. coeff = 2;
  188. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 2;
  189. }
  190. sign = vp56_rac_get(c);
  191. }
  192. ct = 2;
  193. } else {
  194. ct = 1;
  195. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 1;
  196. sign = vp56_rac_get(c);
  197. coeff = 1;
  198. }
  199. coeff = (coeff ^ -sign) + sign;
  200. if (coeff_idx)
  201. coeff *= s->dequant_ac;
  202. s->block_coeff[b][permute[coeff_idx]] = coeff;
  203. } else {
  204. if (ct && !vp56_rac_get_prob(c, model2[1]))
  205. break;
  206. ct = 0;
  207. s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx] = 0;
  208. }
  209. coeff_idx++;
  210. if (coeff_idx >= 64)
  211. break;
  212. cg = vp5_coeff_groups[coeff_idx];
  213. ctx = s->coeff_ctx[ff_vp56_b6to4[b]][coeff_idx];
  214. model1 = model->coeff_ract[pt][ct][cg];
  215. model2 = cg > 2 ? model1 : model->coeff_acct[pt][ct][cg][ctx];
  216. }
  217. ctx_last = FFMIN(s->coeff_ctx_last[ff_vp56_b6to4[b]], 24);
  218. s->coeff_ctx_last[ff_vp56_b6to4[b]] = coeff_idx;
  219. if (coeff_idx < ctx_last)
  220. for (i=coeff_idx; i<=ctx_last; i++)
  221. s->coeff_ctx[ff_vp56_b6to4[b]][i] = 5;
  222. s->above_blocks[s->above_block_idx[b]].not_null_dc = s->coeff_ctx[ff_vp56_b6to4[b]][0];
  223. }
  224. }
  225. static void vp5_default_models_init(VP56Context *s)
  226. {
  227. VP56Model *model = s->modelp;
  228. int i;
  229. for (i=0; i<2; i++) {
  230. model->vector_sig[i] = 0x80;
  231. model->vector_dct[i] = 0x80;
  232. model->vector_pdi[i][0] = 0x55;
  233. model->vector_pdi[i][1] = 0x80;
  234. }
  235. memcpy(model->mb_types_stats, ff_vp56_def_mb_types_stats, sizeof(model->mb_types_stats));
  236. memset(model->vector_pdv, 0x80, sizeof(model->vector_pdv));
  237. }
  238. static av_cold int vp5_decode_init(AVCodecContext *avctx)
  239. {
  240. VP56Context *s = avctx->priv_data;
  241. int ret;
  242. if ((ret = ff_vp56_init(avctx, 1, 0)) < 0)
  243. return ret;
  244. ff_vp5dsp_init(&s->vp56dsp);
  245. s->vp56_coord_div = vp5_coord_div;
  246. s->parse_vector_adjustment = vp5_parse_vector_adjustment;
  247. s->parse_coeff = vp5_parse_coeff;
  248. s->default_models_init = vp5_default_models_init;
  249. s->parse_vector_models = vp5_parse_vector_models;
  250. s->parse_coeff_models = vp5_parse_coeff_models;
  251. s->parse_header = vp5_parse_header;
  252. return 0;
  253. }
  254. AVCodec ff_vp5_decoder = {
  255. .name = "vp5",
  256. .long_name = NULL_IF_CONFIG_SMALL("On2 VP5"),
  257. .type = AVMEDIA_TYPE_VIDEO,
  258. .id = AV_CODEC_ID_VP5,
  259. .priv_data_size = sizeof(VP56Context),
  260. .init = vp5_decode_init,
  261. .close = ff_vp56_free,
  262. .decode = ff_vp56_decode_frame,
  263. .capabilities = AV_CODEC_CAP_DR1,
  264. };