vp5.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  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 St, 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 "mpegvideo.h"
  29. #include "vp56.h"
  30. #include "vp56data.h"
  31. #include "vp5data.h"
  32. static int vp5_parse_header(vp56_context_t *s, uint8_t *buf, int buf_size,
  33. int *golden_frame)
  34. {
  35. vp56_range_coder_t *c = &s->c;
  36. int rows, cols;
  37. 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. 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 (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. }
  62. return 1;
  63. }
  64. /* Gives very similar result than the vp6 version except in a few cases */
  65. static int vp5_adjust(int v, int t)
  66. {
  67. int s2, s1 = v >> 31;
  68. v ^= s1;
  69. v -= s1;
  70. v *= v < 2*t;
  71. v -= t;
  72. s2 = v >> 31;
  73. v ^= s2;
  74. v -= s2;
  75. v = t - v;
  76. v += s1;
  77. v ^= s1;
  78. return v;
  79. }
  80. static void vp5_parse_vector_adjustment(vp56_context_t *s, vp56_mv_t *vect)
  81. {
  82. vp56_range_coder_t *c = &s->c;
  83. int comp, di;
  84. for (comp=0; comp<2; comp++) {
  85. int delta = 0;
  86. if (vp56_rac_get_prob(c, s->vector_model_dct[comp])) {
  87. int sign = vp56_rac_get_prob(c, s->vector_model_sig[comp]);
  88. di = vp56_rac_get_prob(c, s->vector_model_pdi[comp][0]);
  89. di |= vp56_rac_get_prob(c, s->vector_model_pdi[comp][1]) << 1;
  90. delta = vp56_rac_get_tree(c, vp56_pva_tree,
  91. s->vector_model_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. int comp, node;
  105. for (comp=0; comp<2; comp++) {
  106. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][0]))
  107. s->vector_model_dct[comp] = vp56_rac_gets_nn(c, 7);
  108. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][1]))
  109. s->vector_model_sig[comp] = vp56_rac_gets_nn(c, 7);
  110. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][2]))
  111. s->vector_model_pdi[comp][0] = vp56_rac_gets_nn(c, 7);
  112. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][3]))
  113. s->vector_model_pdi[comp][1] = vp56_rac_gets_nn(c, 7);
  114. }
  115. for (comp=0; comp<2; comp++)
  116. for (node=0; node<7; node++)
  117. if (vp56_rac_get_prob(c, vp5_vmc_pct[comp][4 + node]))
  118. s->vector_model_pdv[comp][node] = vp56_rac_gets_nn(c, 7);
  119. }
  120. static void vp5_parse_coeff_models(vp56_context_t *s)
  121. {
  122. vp56_range_coder_t *c = &s->c;
  123. uint8_t def_prob[11];
  124. int node, cg, ctx;
  125. int ct; /* code type */
  126. int pt; /* plane type (0 for Y, 1 for U or V) */
  127. memset(def_prob, 0x80, sizeof(def_prob));
  128. for (pt=0; pt<2; pt++)
  129. for (node=0; node<11; node++)
  130. if (vp56_rac_get_prob(c, vp5_dccv_pct[pt][node])) {
  131. def_prob[node] = vp56_rac_gets_nn(c, 7);
  132. s->coeff_model_dccv[pt][node] = def_prob[node];
  133. } else if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
  134. s->coeff_model_dccv[pt][node] = def_prob[node];
  135. }
  136. for (ct=0; ct<3; ct++)
  137. for (pt=0; pt<2; pt++)
  138. for (cg=0; cg<6; cg++)
  139. for (node=0; node<11; node++)
  140. if (vp56_rac_get_prob(c, vp5_ract_pct[ct][pt][cg][node])) {
  141. def_prob[node] = vp56_rac_gets_nn(c, 7);
  142. s->coeff_model_ract[pt][ct][cg][node] = def_prob[node];
  143. } else if (s->framep[VP56_FRAME_CURRENT]->key_frame) {
  144. s->coeff_model_ract[pt][ct][cg][node] = def_prob[node];
  145. }
  146. /* coeff_model_dcct is a linear combination of coeff_model_dccv */
  147. for (pt=0; pt<2; pt++)
  148. for (ctx=0; ctx<36; ctx++)
  149. for (node=0; node<5; node++)
  150. s->coeff_model_dcct[pt][ctx][node] = av_clip(((s->coeff_model_dccv[pt][node] * vp5_dccv_lc[node][ctx][0] + 128) >> 8) + vp5_dccv_lc[node][ctx][1], 1, 254);
  151. /* coeff_model_acct is a linear combination of coeff_model_ract */
  152. for (ct=0; ct<3; ct++)
  153. for (pt=0; pt<2; pt++)
  154. for (cg=0; cg<3; cg++)
  155. for (ctx=0; ctx<6; ctx++)
  156. for (node=0; node<5; node++)
  157. s->coeff_model_acct[pt][ct][cg][ctx][node] = av_clip(((s->coeff_model_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);
  158. }
  159. static void vp5_parse_coeff(vp56_context_t *s)
  160. {
  161. vp56_range_coder_t *c = &s->c;
  162. uint8_t *permute = s->scantable.permutated;
  163. uint8_t *model, *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. for (b=0; b<6; b++) {
  168. int ct = 1; /* code type */
  169. if (b > 3) pt = 1;
  170. ctx = 6*s->coeff_ctx[vp56_b6to4[b]][0]
  171. + s->above_blocks[s->above_block_idx[b]].not_null_dc;
  172. model = s->coeff_model_dccv[pt];
  173. model2 = s->coeff_model_dcct[pt][ctx];
  174. for (coeff_idx=0; coeff_idx<64; ) {
  175. if (vp56_rac_get_prob(c, model2[0])) {
  176. if (vp56_rac_get_prob(c, model2[2])) {
  177. if (vp56_rac_get_prob(c, model2[3])) {
  178. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 4;
  179. idx = vp56_rac_get_tree(c, vp56_pc_tree, model);
  180. sign = vp56_rac_get(c);
  181. coeff = vp56_coeff_bias[idx];
  182. for (i=vp56_coeff_bit_length[idx]; i>=0; i--)
  183. coeff += vp56_rac_get_prob(c, vp56_coeff_parse_table[idx][i]) << i;
  184. } else {
  185. if (vp56_rac_get_prob(c, model2[4])) {
  186. coeff = 3 + vp56_rac_get_prob(c, model[5]);
  187. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 3;
  188. } else {
  189. coeff = 2;
  190. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 2;
  191. }
  192. sign = vp56_rac_get(c);
  193. }
  194. ct = 2;
  195. } else {
  196. ct = 1;
  197. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 1;
  198. sign = vp56_rac_get(c);
  199. coeff = 1;
  200. }
  201. coeff = (coeff ^ -sign) + sign;
  202. if (coeff_idx)
  203. coeff *= s->dequant_ac;
  204. s->block_coeff[b][permute[coeff_idx]] = coeff;
  205. } else {
  206. if (ct && !vp56_rac_get_prob(c, model2[1]))
  207. break;
  208. ct = 0;
  209. s->coeff_ctx[vp56_b6to4[b]][coeff_idx] = 0;
  210. }
  211. cg = vp5_coeff_groups[++coeff_idx];
  212. ctx = s->coeff_ctx[vp56_b6to4[b]][coeff_idx];
  213. model = s->coeff_model_ract[pt][ct][cg];
  214. model2 = cg > 2 ? model : s->coeff_model_acct[pt][ct][cg][ctx];
  215. }
  216. ctx_last = FFMIN(s->coeff_ctx_last[vp56_b6to4[b]], 24);
  217. s->coeff_ctx_last[vp56_b6to4[b]] = coeff_idx;
  218. if (coeff_idx < ctx_last)
  219. for (i=coeff_idx; i<=ctx_last; i++)
  220. s->coeff_ctx[vp56_b6to4[b]][i] = 5;
  221. s->above_blocks[s->above_block_idx[b]].not_null_dc = s->coeff_ctx[vp56_b6to4[b]][0];
  222. }
  223. }
  224. static void vp5_default_models_init(vp56_context_t *s)
  225. {
  226. int i;
  227. for (i=0; i<2; i++) {
  228. s->vector_model_sig[i] = 0x80;
  229. s->vector_model_dct[i] = 0x80;
  230. s->vector_model_pdi[i][0] = 0x55;
  231. s->vector_model_pdi[i][1] = 0x80;
  232. }
  233. memcpy(s->mb_types_stats, vp56_def_mb_types_stats, sizeof(s->mb_types_stats));
  234. memset(s->vector_model_pdv, 0x80, sizeof(s->vector_model_pdv));
  235. }
  236. static int vp5_decode_init(AVCodecContext *avctx)
  237. {
  238. vp56_context_t *s = avctx->priv_data;
  239. vp56_init(s, avctx, 1);
  240. s->vp56_coord_div = vp5_coord_div;
  241. s->parse_vector_adjustment = vp5_parse_vector_adjustment;
  242. s->adjust = vp5_adjust;
  243. s->parse_coeff = vp5_parse_coeff;
  244. s->default_models_init = vp5_default_models_init;
  245. s->parse_vector_models = vp5_parse_vector_models;
  246. s->parse_coeff_models = vp5_parse_coeff_models;
  247. s->parse_header = vp5_parse_header;
  248. return 0;
  249. }
  250. AVCodec vp5_decoder = {
  251. "vp5",
  252. CODEC_TYPE_VIDEO,
  253. CODEC_ID_VP5,
  254. sizeof(vp56_context_t),
  255. vp5_decode_init,
  256. NULL,
  257. vp56_free,
  258. vp56_decode_frame,
  259. };