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.

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