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.

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