libavcodec/jpegls.c
6ba04c2b
 /*
  * JPEG-LS common code
  * Copyright (c) 2003 Michael Niedermayer
  * Copyright (c) 2006 Konstantin Shishkov
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
6ba04c2b
  * JPEG-LS common code.
  */
 
6a85dfc8
 #include "internal.h"
6ba04c2b
 #include "jpegls.h"
 
ff4fc5ef
 void ff_jpegls_init_state(JLSState *state)
 {
6ba04c2b
     int i;
 
     state->twonear = state->near * 2 + 1;
9cacdabd
     state->range   = (state->maxval + state->twonear - 1) / state->twonear + 1;
6ba04c2b
 
     // QBPP = ceil(log2(RANGE))
ff4fc5ef
     for (state->qbpp = 0; (1 << state->qbpp) < state->range; state->qbpp++)
         ;
6ba04c2b
 
0d83b572
     state->bpp   = FFMAX(av_log2(state->maxval) + 1, 2);
38778374
     state->limit = 2*(state->bpp + FFMAX(state->bpp, 8)) - state->qbpp;
6ba04c2b
 
ff4fc5ef
     for (i = 0; i < 367; i++) {
9cacdabd
         state->A[i] = FFMAX(state->range + 32 >> 6, 2);
6ba04c2b
         state->N[i] = 1;
     }
 }
 
 /**
  * Custom value clipping function used in T1, T2, T3 calculation
  */
ff4fc5ef
 static inline int iso_clip(int v, int vmin, int vmax)
 {
     if (v > vmax || v < vmin)
         return vmin;
     else
         return v;
6ba04c2b
 }
 
ff4fc5ef
 void ff_jpegls_reset_coding_parameters(JLSState *s, int reset_all)
 {
     const int basic_t1 = 3;
     const int basic_t2 = 7;
     const int basic_t3 = 21;
6ba04c2b
     int factor;
 
ff4fc5ef
     if (s->maxval == 0 || reset_all)
         s->maxval = (1 << s->bpp) - 1;
6ba04c2b
 
ff4fc5ef
     if (s->maxval >= 128) {
9cacdabd
         factor = FFMIN(s->maxval, 4095) + 128 >> 8;
6ba04c2b
 
ff4fc5ef
         if (s->T1 == 0 || reset_all)
             s->T1 = iso_clip(factor * (basic_t1 - 2) + 2 + 3 * s->near,
                              s->near + 1, s->maxval);
         if (s->T2 == 0 || reset_all)
             s->T2 = iso_clip(factor * (basic_t2 - 3) + 3 + 5 * s->near,
                              s->T1, s->maxval);
         if (s->T3 == 0 || reset_all)
             s->T3 = iso_clip(factor * (basic_t3 - 4) + 4 + 7 * s->near,
                              s->T2, s->maxval);
     } else {
         factor = 256 / (s->maxval + 1);
6ba04c2b
 
ff4fc5ef
         if (s->T1 == 0 || reset_all)
             s->T1 = iso_clip(FFMAX(2, basic_t1 / factor + 3 * s->near),
                              s->near + 1, s->maxval);
         if (s->T2 == 0 || reset_all)
             s->T2 = iso_clip(FFMAX(3, basic_t2 / factor + 5 * s->near),
                              s->T1, s->maxval);
         if (s->T3 == 0 || reset_all)
             s->T3 = iso_clip(FFMAX(4, basic_t3 / factor + 7 * s->near),
                              s->T2, s->maxval);
6ba04c2b
     }
 
ff4fc5ef
     if (s->reset == 0 || reset_all)
         s->reset = 64;
6a85dfc8
     ff_dlog(NULL, "[JPEG-LS RESET] T=%i,%i,%i\n", s->T1, s->T2, s->T3);
6ba04c2b
 }