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.

297 lines
10KB

  1. /**
  2. * @file vp5.c
  3. * VP5 compatible video decoder
  4. *
  5. * Copyright (C) 2006 Aurelien Jacobs <aurel@gnuage.org>
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include <stdlib.h>
  24. #include <string.h>
  25. #include "avcodec.h"
  26. #include "dsputil.h"
  27. #include "bitstream.h"
  28. #include "vp56.h"
  29. #include "vp56data.h"
  30. #include "vp5data.h"
  31. static int vp5_parse_header(vp56_context_t *s, const uint8_t *buf, int buf_size,
  32. int *golden_frame)
  33. {
  34. vp56_range_coder_t *c = &s->c;
  35. int rows, cols;
  36. vp56_init_range_decoder(&s->c, buf, buf_size);
  37. s->framep[VP56_FRAME_CURRENT]->key_frame = !vp56_rac_get(c);
  38. vp56_rac_get(c);
  39. vp56_init_dequant(s, vp56_rac_gets(c, 6));
  40. if (s->framep[VP56_FRAME_CURRENT]->key_frame)
  41. {
  42. vp56_rac_gets(c, 8);
  43. if(vp56_rac_gets(c, 5) > 5)
  44. return 0;
  45. vp56_rac_gets(c, 2);
  46. if (vp56_rac_get(c)) {
  47. av_log(s->avctx, AV_LOG_ERROR, "interlacing not supported\n");
  48. return 0;
  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. vp56_rac_gets(c, 8); /* number of displayed macroblock rows */
  53. vp56_rac_gets(c, 8); /* number of displayed macroblock cols */
  54. vp56_rac_gets(c, 2);
  55. if (16*cols != s->avctx->coded_width ||
  56. 16*rows != s->avctx->coded_height) {
  57. avcodec_set_dimensions(s->avctx, 16*cols, 16*rows);
  58. return 2;
  59. }
  60. }
  61. return 1;
  62. }
  63. /* Gives very similar result than the vp6 version except in a few cases */
  64. static int vp5_adjust(int v, int t)
  65. {
  66. int s2, s1 = v >> 31;
  67. v ^= s1;
  68. v -= s1;
  69. v *= v < 2*t;
  70. v -= t;
  71. s2 = v >> 31;
  72. v ^= s2;
  73. v -= s2;
  74. v = t - v;
  75. v += s1;
  76. v ^= s1;
  77. return v;
  78. }
  79. static void vp5_parse_vector_adjustment(vp56_context_t *s, vp56_mv_t *vect)
  80. {
  81. vp56_range_coder_t *c = &s->c;
  82. vp56_model_t *model = s->modelp;
  83. int comp, di;
  84. for (comp=0; comp<2; comp++) {
  85. int delta = 0;
  86. if (vp56_rac_get_prob(c, model->vector_dct[comp])) {
  87. int sign = vp56_rac_get_prob(c, model->vector_sig[comp]);
  88. di = vp56_rac_get_prob(c, model->vector_pdi[comp][0]);
  89. di |= vp56_rac_get_prob(c, model->vector_pdi[comp][1]) << 1;
  90. delta = vp56_rac_get_tree(c, vp56_pva_tree,
  91. model->vector_pdv[comp]);
  92. delta = di | (delta << 2);
  93. delta = (delta ^ -sign) + sign;
  94. }
  95. if (!comp)
  96. vect->x = delta;
  97. else
  98. vect->y = delta;
  99. }
  100. }
  101. static void vp5_parse_vector_models(vp56_context_t *s)
  102. {
  103. vp56_range_coder_t *c = &s->c;
  104. vp56_model_t *model = s->modelp;
  105. int comp, node;
  106. for (comp=0; comp<2; comp++) {
  107. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][0]))
  108. model->vector_dct[comp] = vp56_rac_gets_nn(c, 7);
  109. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][1]))
  110. model->vector_sig[comp] = vp56_rac_gets_nn(c, 7);
  111. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][2]))
  112. model->vector_pdi[comp][0] = vp56_rac_gets_nn(c, 7);
  113. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][3]))
  114. model->vector_pdi[comp][1] = vp56_rac_gets_nn(c, 7);
  115. }
  116. for (comp=0; comp<2; comp++)
  117. for (node=0; node<7; node++)
  118. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][4 + node]))
  119. model->vector_pdv[comp][node] = vp56_rac_gets_nn(c, 7);
  120. }
  121. static void vp5_parse_coeff_models(vp56_context_t *s)
  122. {
  123. vp56_range_coder_t *c = &s->c;
  124. vp56_model_t *model = s->modelp;
  125. uint8_t def_prob[11];
  126. int node, cg, ctx;
  127. int ct; /* code type */
  128. int pt; /* plane type (0 for Y, 1 for U or V) */
  129. memset(def_prob, 0x80, sizeof(def_prob));
  130. for (pt=0; pt<2; pt++)
  131. for (node=0; node<11; node++)
  132. if (vp56_rac_get_prob(c, vp5_dccv_pct[pt][node])) {
  133. def_prob[node] = vp56_rac_gets_nn(c, 7);
  134. model->coeff_dccv[pt][node] = def_prob[node];
  135. } else if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
  136. model->coeff_dccv[pt][node] = def_prob[node];
  137. }
  138. for (ct=0; ct<3; ct++)
  139. for (pt=0; pt<2; pt++)
  140. for (cg=0; cg<6; cg++)
  141. for (node=0; node<11; node++)
  142. if (vp56_rac_get_prob(c, vp5_ract_pct[ct][pt][cg][node])) {
  143. def_prob[node] = vp56_rac_gets_nn(c, 7);
  144. model->coeff_ract[pt][ct][cg][node] = def_prob[node];
  145. } else if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
  146. model->coeff_ract[pt][ct][cg][node] = def_prob[node];
  147. }
  148. /* coeff_dcct is a linear combination of coeff_dccv */
  149. for (pt=0; pt<2; pt++)
  150. for (ctx=0; ctx<36; ctx++)
  151. for (node=0; node<5; node++)
  152. 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);
  153. /* coeff_acct is a linear combination of coeff_ract */
  154. for (ct=0; ct<3; ct++)
  155. for (pt=0; pt<2; pt++)
  156. for (cg=0; cg<3; cg++)
  157. for (ctx=0; ctx<6; ctx++)
  158. for (node=0; node<5; node++)
  159. 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);
  160. }
  161. static void vp5_parse_coeff(vp56_context_t *s)
  162. {
  163. vp56_range_coder_t *c = &s->c;
  164. vp56_model_t *model = s->modelp;
  165. uint8_t *permute = s->scantable.permutated;
  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. for (b=0; b<6; b++) {
  171. int ct = 1; /* code type */
  172. if (b > 3) pt = 1;
  173. ctx = 6*s->coeff_ctx[vp56_b6to4[b]][0]
  174. + s->above_blocks[s->above_block_idx[b]].not_null_dc;
  175. model1 = model->coeff_dccv[pt];
  176. model2 = model->coeff_dcct[pt][ctx];
  177. for (coeff_idx=0; coeff_idx<64; ) {
  178. if (vp56_rac_get_prob(c, model2[0])) {
  179. if (vp56_rac_get_prob(c, model2[2])) {
  180. if (vp56_rac_get_prob(c, model2[3])) {
  181. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 4;
  182. idx = vp56_rac_get_tree(c, vp56_pc_tree, model1);
  183. sign = vp56_rac_get(c);
  184. coeff = vp56_coeff_bias[idx+5];
  185. for (i=vp56_coeff_bit_length[idx]; i>=0; i--)
  186. coeff += vp56_rac_get_prob(c, vp56_coeff_parse_table[idx][i]) << i;
  187. } else {
  188. if (vp56_rac_get_prob(c, model2[4])) {
  189. coeff = 3 + vp56_rac_get_prob(c, model1[5]);
  190. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 3;
  191. } else {
  192. coeff = 2;
  193. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 2;
  194. }
  195. sign = vp56_rac_get(c);
  196. }
  197. ct = 2;
  198. } else {
  199. ct = 1;
  200. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 1;
  201. sign = vp56_rac_get(c);
  202. coeff = 1;
  203. }
  204. coeff = (coeff ^ -sign) + sign;
  205. if (coeff_idx)
  206. coeff *= s->dequant_ac;
  207. s->block_coeff[b][permute[coeff_idx]] = coeff;
  208. } else {
  209. if (ct && !vp56_rac_get_prob(c, model2[1]))
  210. break;
  211. ct = 0;
  212. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 0;
  213. }
  214. cg = vp5_coeff_groups[++coeff_idx];
  215. ctx = s->coeff_ctx[vp56_b6to4[b]][coeff_idx];
  216. model1 = model->coeff_ract[pt][ct][cg];
  217. model2 = cg > 2 ? model1 : model->coeff_acct[pt][ct][cg][ctx];
  218. }
  219. ctx_last = FFMIN(s->coeff_ctx_last[vp56_b6to4[b]], 24);
  220. s->coeff_ctx_last[vp56_b6to4[b]] = coeff_idx;
  221. if (coeff_idx < ctx_last)
  222. for (i=coeff_idx; i<=ctx_last; i++)
  223. s->coeff_ctx[vp56_b6to4[b]][i] = 5;
  224. s->above_blocks[s->above_block_idx[b]].not_null_dc = s->coeff_ctx[vp56_b6to4[b]][0];
  225. }
  226. }
  227. static void vp5_default_models_init(vp56_context_t *s)
  228. {
  229. vp56_model_t *model = s->modelp;
  230. int i;
  231. for (i=0; i<2; i++) {
  232. model->vector_sig[i] = 0x80;
  233. model->vector_dct[i] = 0x80;
  234. model->vector_pdi[i][0] = 0x55;
  235. model->vector_pdi[i][1] = 0x80;
  236. }
  237. memcpy(model->mb_types_stats, vp56_def_mb_types_stats, sizeof(model->mb_types_stats));
  238. memset(model->vector_pdv, 0x80, sizeof(model->vector_pdv));
  239. }
  240. static av_cold int vp5_decode_init(AVCodecContext *avctx)
  241. {
  242. vp56_context_t *s = avctx->priv_data;
  243. vp56_init(avctx, 1, 0);
  244. s->vp56_coord_div = vp5_coord_div;
  245. s->parse_vector_adjustment = vp5_parse_vector_adjustment;
  246. s->adjust = vp5_adjust;
  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 vp5_decoder = {
  255. "vp5",
  256. CODEC_TYPE_VIDEO,
  257. CODEC_ID_VP5,
  258. sizeof(vp56_context_t),
  259. vp5_decode_init,
  260. NULL,
  261. vp56_free,
  262. vp56_decode_frame,
  263. CODEC_CAP_DR1,
  264. .long_name = NULL_IF_CONFIG_SMALL("On2 VP5"),
  265. };