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.

290 lines
10KB

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