vp5.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. /**
  2. * @file libavcodec/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(VP56Context *s, const uint8_t *buf, int buf_size,
  32. int *golden_frame)
  33. {
  34. VP56RangeCoder *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 (!s->macroblocks || /* first frame */
  56. 16*cols != s->avctx->coded_width ||
  57. 16*rows != s->avctx->coded_height) {
  58. avcodec_set_dimensions(s->avctx, 16*cols, 16*rows);
  59. return 2;
  60. }
  61. } else if (!s->macroblocks)
  62. return 0;
  63. return 1;
  64. }
  65. /* Gives very similar result than the vp6 version except in a few cases */
  66. static int vp5_adjust(int v, int t)
  67. {
  68. int s2, s1 = v >> 31;
  69. v ^= s1;
  70. v -= s1;
  71. v *= v < 2*t;
  72. v -= t;
  73. s2 = v >> 31;
  74. v ^= s2;
  75. v -= s2;
  76. v = t - v;
  77. v += s1;
  78. v ^= s1;
  79. return v;
  80. }
  81. static void vp5_parse_vector_adjustment(VP56Context *s, VP56mv *vect)
  82. {
  83. VP56RangeCoder *c = &s->c;
  84. VP56Model *model = s->modelp;
  85. int comp, di;
  86. for (comp=0; comp<2; comp++) {
  87. int delta = 0;
  88. if (vp56_rac_get_prob(c, model->vector_dct[comp])) {
  89. int sign = vp56_rac_get_prob(c, model->vector_sig[comp]);
  90. di = vp56_rac_get_prob(c, model->vector_pdi[comp][0]);
  91. di |= vp56_rac_get_prob(c, model->vector_pdi[comp][1]) << 1;
  92. delta = vp56_rac_get_tree(c, vp56_pva_tree,
  93. model->vector_pdv[comp]);
  94. delta = di | (delta << 2);
  95. delta = (delta ^ -sign) + sign;
  96. }
  97. if (!comp)
  98. vect->x = delta;
  99. else
  100. vect->y = delta;
  101. }
  102. }
  103. static void vp5_parse_vector_models(VP56Context *s)
  104. {
  105. VP56RangeCoder *c = &s->c;
  106. VP56Model *model = s->modelp;
  107. int comp, node;
  108. for (comp=0; comp<2; comp++) {
  109. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][0]))
  110. model->vector_dct[comp] = vp56_rac_gets_nn(c, 7);
  111. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][1]))
  112. model->vector_sig[comp] = vp56_rac_gets_nn(c, 7);
  113. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][2]))
  114. model->vector_pdi[comp][0] = vp56_rac_gets_nn(c, 7);
  115. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][3]))
  116. model->vector_pdi[comp][1] = vp56_rac_gets_nn(c, 7);
  117. }
  118. for (comp=0; comp<2; comp++)
  119. for (node=0; node<7; node++)
  120. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][4 + node]))
  121. model->vector_pdv[comp][node] = vp56_rac_gets_nn(c, 7);
  122. }
  123. static void vp5_parse_coeff_models(VP56Context *s)
  124. {
  125. VP56RangeCoder *c = &s->c;
  126. VP56Model *model = s->modelp;
  127. uint8_t def_prob[11];
  128. int node, cg, ctx;
  129. int ct; /* code type */
  130. int pt; /* plane type (0 for Y, 1 for U or V) */
  131. memset(def_prob, 0x80, sizeof(def_prob));
  132. for (pt=0; pt<2; pt++)
  133. for (node=0; node<11; node++)
  134. if (vp56_rac_get_prob(c, vp5_dccv_pct[pt][node])) {
  135. def_prob[node] = vp56_rac_gets_nn(c, 7);
  136. model->coeff_dccv[pt][node] = def_prob[node];
  137. } else if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
  138. model->coeff_dccv[pt][node] = def_prob[node];
  139. }
  140. for (ct=0; ct<3; ct++)
  141. for (pt=0; pt<2; pt++)
  142. for (cg=0; cg<6; cg++)
  143. for (node=0; node<11; node++)
  144. if (vp56_rac_get_prob(c, vp5_ract_pct[ct][pt][cg][node])) {
  145. def_prob[node] = vp56_rac_gets_nn(c, 7);
  146. model->coeff_ract[pt][ct][cg][node] = def_prob[node];
  147. } else if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
  148. model->coeff_ract[pt][ct][cg][node] = def_prob[node];
  149. }
  150. /* coeff_dcct is a linear combination of coeff_dccv */
  151. for (pt=0; pt<2; pt++)
  152. for (ctx=0; ctx<36; ctx++)
  153. for (node=0; node<5; node++)
  154. 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);
  155. /* coeff_acct is a linear combination of coeff_ract */
  156. for (ct=0; ct<3; ct++)
  157. for (pt=0; pt<2; pt++)
  158. for (cg=0; cg<3; cg++)
  159. for (ctx=0; ctx<6; ctx++)
  160. for (node=0; node<5; node++)
  161. 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);
  162. }
  163. static void vp5_parse_coeff(VP56Context *s)
  164. {
  165. VP56RangeCoder *c = &s->c;
  166. VP56Model *model = s->modelp;
  167. uint8_t *permute = s->scantable.permutated;
  168. uint8_t *model1, *model2;
  169. int coeff, sign, coeff_idx;
  170. int b, i, cg, idx, ctx, ctx_last;
  171. int pt = 0; /* plane type (0 for Y, 1 for U or V) */
  172. for (b=0; b<6; b++) {
  173. int ct = 1; /* code type */
  174. if (b > 3) pt = 1;
  175. ctx = 6*s->coeff_ctx[vp56_b6to4[b]][0]
  176. + s->above_blocks[s->above_block_idx[b]].not_null_dc;
  177. model1 = model->coeff_dccv[pt];
  178. model2 = model->coeff_dcct[pt][ctx];
  179. coeff_idx = 0;
  180. for (;;) {
  181. if (vp56_rac_get_prob(c, model2[0])) {
  182. if (vp56_rac_get_prob(c, model2[2])) {
  183. if (vp56_rac_get_prob(c, model2[3])) {
  184. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 4;
  185. idx = vp56_rac_get_tree(c, vp56_pc_tree, model1);
  186. sign = vp56_rac_get(c);
  187. coeff = vp56_coeff_bias[idx+5];
  188. for (i=vp56_coeff_bit_length[idx]; i>=0; i--)
  189. coeff += vp56_rac_get_prob(c, vp56_coeff_parse_table[idx][i]) << i;
  190. } else {
  191. if (vp56_rac_get_prob(c, model2[4])) {
  192. coeff = 3 + vp56_rac_get_prob(c, model1[5]);
  193. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 3;
  194. } else {
  195. coeff = 2;
  196. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 2;
  197. }
  198. sign = vp56_rac_get(c);
  199. }
  200. ct = 2;
  201. } else {
  202. ct = 1;
  203. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 1;
  204. sign = vp56_rac_get(c);
  205. coeff = 1;
  206. }
  207. coeff = (coeff ^ -sign) + sign;
  208. if (coeff_idx)
  209. coeff *= s->dequant_ac;
  210. s->block_coeff[b][permute[coeff_idx]] = coeff;
  211. } else {
  212. if (ct && !vp56_rac_get_prob(c, model2[1]))
  213. break;
  214. ct = 0;
  215. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 0;
  216. }
  217. coeff_idx++;
  218. if (coeff_idx >= 64)
  219. break;
  220. cg = vp5_coeff_groups[coeff_idx];
  221. ctx = s->coeff_ctx[vp56_b6to4[b]][coeff_idx];
  222. model1 = model->coeff_ract[pt][ct][cg];
  223. model2 = cg > 2 ? model1 : model->coeff_acct[pt][ct][cg][ctx];
  224. }
  225. ctx_last = FFMIN(s->coeff_ctx_last[vp56_b6to4[b]], 24);
  226. s->coeff_ctx_last[vp56_b6to4[b]] = coeff_idx;
  227. if (coeff_idx < ctx_last)
  228. for (i=coeff_idx; i<=ctx_last; i++)
  229. s->coeff_ctx[vp56_b6to4[b]][i] = 5;
  230. s->above_blocks[s->above_block_idx[b]].not_null_dc = s->coeff_ctx[vp56_b6to4[b]][0];
  231. }
  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, 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. vp56_init(avctx, 1, 0);
  250. s->vp56_coord_div = vp5_coord_div;
  251. s->parse_vector_adjustment = vp5_parse_vector_adjustment;
  252. s->adjust = vp5_adjust;
  253. s->parse_coeff = vp5_parse_coeff;
  254. s->default_models_init = vp5_default_models_init;
  255. s->parse_vector_models = vp5_parse_vector_models;
  256. s->parse_coeff_models = vp5_parse_coeff_models;
  257. s->parse_header = vp5_parse_header;
  258. return 0;
  259. }
  260. AVCodec vp5_decoder = {
  261. "vp5",
  262. CODEC_TYPE_VIDEO,
  263. CODEC_ID_VP5,
  264. sizeof(VP56Context),
  265. vp5_decode_init,
  266. NULL,
  267. vp56_free,
  268. vp56_decode_frame,
  269. CODEC_CAP_DR1,
  270. .long_name = NULL_IF_CONFIG_SMALL("On2 VP5"),
  271. };