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.

104 lines
3.1KB

  1. /*
  2. * JPEG-LS common code
  3. * Copyright (c) 2003 Michael Niedermayer
  4. * Copyright (c) 2006 Konstantin Shishkov
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * JPEG-LS common code.
  25. */
  26. #include "internal.h"
  27. #include "jpegls.h"
  28. void ff_jpegls_init_state(JLSState *state)
  29. {
  30. int i;
  31. state->twonear = state->near * 2 + 1;
  32. state->range = (state->maxval + state->twonear - 1) / state->twonear + 1;
  33. // QBPP = ceil(log2(RANGE))
  34. for (state->qbpp = 0; (1 << state->qbpp) < state->range; state->qbpp++)
  35. ;
  36. if (state->bpp < 8)
  37. state->limit = 2 * state->bpp - state->qbpp + 16;
  38. else
  39. state->limit = 4 * state->bpp - state->qbpp;
  40. for (i = 0; i < 367; i++) {
  41. state->A[i] = FFMAX(state->range + 32 >> 6, 2);
  42. state->N[i] = 1;
  43. }
  44. }
  45. /**
  46. * Custom value clipping function used in T1, T2, T3 calculation
  47. */
  48. static inline int iso_clip(int v, int vmin, int vmax)
  49. {
  50. if (v > vmax || v < vmin)
  51. return vmin;
  52. else
  53. return v;
  54. }
  55. void ff_jpegls_reset_coding_parameters(JLSState *s, int reset_all)
  56. {
  57. const int basic_t1 = 3;
  58. const int basic_t2 = 7;
  59. const int basic_t3 = 21;
  60. int factor;
  61. if (s->maxval == 0 || reset_all)
  62. s->maxval = (1 << s->bpp) - 1;
  63. if (s->maxval >= 128) {
  64. factor = FFMIN(s->maxval, 4095) + 128 >> 8;
  65. if (s->T1 == 0 || reset_all)
  66. s->T1 = iso_clip(factor * (basic_t1 - 2) + 2 + 3 * s->near,
  67. s->near + 1, s->maxval);
  68. if (s->T2 == 0 || reset_all)
  69. s->T2 = iso_clip(factor * (basic_t2 - 3) + 3 + 5 * s->near,
  70. s->T1, s->maxval);
  71. if (s->T3 == 0 || reset_all)
  72. s->T3 = iso_clip(factor * (basic_t3 - 4) + 4 + 7 * s->near,
  73. s->T2, s->maxval);
  74. } else {
  75. factor = 256 / (s->maxval + 1);
  76. if (s->T1 == 0 || reset_all)
  77. s->T1 = iso_clip(FFMAX(2, basic_t1 / factor + 3 * s->near),
  78. s->near + 1, s->maxval);
  79. if (s->T2 == 0 || reset_all)
  80. s->T2 = iso_clip(FFMAX(3, basic_t2 / factor + 5 * s->near),
  81. s->T1, s->maxval);
  82. if (s->T3 == 0 || reset_all)
  83. s->T3 = iso_clip(FFMAX(4, basic_t3 / factor + 7 * s->near),
  84. s->T2, s->maxval);
  85. }
  86. if (s->reset == 0 || reset_all)
  87. s->reset = 64;
  88. ff_dlog(NULL, "[JPEG-LS RESET] T=%i,%i,%i\n", s->T1, s->T2, s->T3);
  89. }