vp56data.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /**
  2. * @file libavcodec/vp56data.c
  3. * VP5 and VP6 compatible video decoder (common data)
  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 "vp56data.h"
  24. const uint8_t vp56_b2p[] = { 0, 0, 0, 0, 1, 2, 3, 3, 3, 3 };
  25. const uint8_t vp56_b6to4[] = { 0, 0, 1, 1, 2, 3 };
  26. const uint8_t vp56_coeff_parse_table[6][11] = {
  27. { 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
  28. { 145, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
  29. { 140, 148, 173, 0, 0, 0, 0, 0, 0, 0, 0 },
  30. { 135, 140, 155, 176, 0, 0, 0, 0, 0, 0, 0 },
  31. { 130, 134, 141, 157, 180, 0, 0, 0, 0, 0, 0 },
  32. { 129, 130, 133, 140, 153, 177, 196, 230, 243, 254, 254 },
  33. };
  34. const uint8_t vp56_def_mb_types_stats[3][10][2] = {
  35. { { 69, 42 }, { 1, 2 }, { 1, 7 }, { 44, 42 }, { 6, 22 },
  36. { 1, 3 }, { 0, 2 }, { 1, 5 }, { 0, 1 }, { 0, 0 }, },
  37. { { 229, 8 }, { 1, 1 }, { 0, 8 }, { 0, 0 }, { 0, 0 },
  38. { 1, 2 }, { 0, 1 }, { 0, 0 }, { 1, 1 }, { 0, 0 }, },
  39. { { 122, 35 }, { 1, 1 }, { 1, 6 }, { 46, 34 }, { 0, 0 },
  40. { 1, 2 }, { 0, 1 }, { 0, 1 }, { 1, 1 }, { 0, 0 }, },
  41. };
  42. const VP56Tree vp56_pva_tree[] = {
  43. { 8, 0},
  44. { 4, 1},
  45. { 2, 2}, {-0}, {-1},
  46. { 2, 3}, {-2}, {-3},
  47. { 4, 4},
  48. { 2, 5}, {-4}, {-5},
  49. { 2, 6}, {-6}, {-7},
  50. };
  51. const VP56Tree vp56_pc_tree[] = {
  52. { 4, 6},
  53. { 2, 7}, {-0}, {-1},
  54. { 4, 8},
  55. { 2, 9}, {-2}, {-3},
  56. { 2,10}, {-4}, {-5},
  57. };
  58. const uint8_t vp56_coeff_bias[] = { 0, 1, 2, 3, 4, 5, 7, 11, 19, 35, 67 };
  59. const uint8_t vp56_coeff_bit_length[] = { 0, 1, 2, 3, 4, 10 };