FFmpeg
Loading...
Searching...
No Matches
jpegls.c
Go to the documentation of this file.
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 FFmpeg.
7 *
8 * FFmpeg 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 * FFmpeg 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 FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23/**
24 * @file
25 * JPEG-LS common code.
26 */
27
28#include <stddef.h>
29#include "libavutil/internal.h"
30#include "libavutil/intmath.h"
31#include "libavutil/log.h"
32#include "jpegls.h"
33
35{
36 int i;
37
38 state->twonear = state->near * 2 + 1;
39 state->range = (state->maxval + state->twonear - 1) / state->twonear + 1;
40
41 // QBPP = ceil(log2(RANGE))
42 for (state->qbpp = 0; (1 << state->qbpp) < state->range; state->qbpp++)
43 ;
44
45 state->bpp = FFMAX(av_log2(state->maxval) + 1, 2);
46 state->limit = 2*(state->bpp + FFMAX(state->bpp, 8)) - state->qbpp;
47
48 for (i = 0; i < 367; i++) {
49 state->A[i] = FFMAX(state->range + 32 >> 6, 2);
50 state->N[i] = 1;
51 }
52
53 memset(state->B, 0, sizeof(state->B));
54 memset(state->C, 0, sizeof(state->C));
55 memset(state->run_index, 0, sizeof(state->run_index));
56}
57
58/**
59 * Custom value clipping function used in T1, T2, T3 calculation
60 */
61static inline int iso_clip(int v, int vmin, int vmax)
62{
63 if (v > vmax || v < vmin)
64 return vmin;
65 else
66 return v;
67}
68
70{
71 const int basic_t1 = 3;
72 const int basic_t2 = 7;
73 const int basic_t3 = 21;
74 int factor;
75
76 if (s->maxval == 0 || reset_all)
77 s->maxval = (1 << s->bpp) - 1;
78
79 if (s->maxval >= 128) {
80 factor = FFMIN(s->maxval, 4095) + 128 >> 8;
81
82 if (s->T1 == 0 || reset_all)
83 s->T1 = iso_clip(factor * (basic_t1 - 2) + 2 + 3 * s->near,
84 s->near + 1, s->maxval);
85 if (s->T2 == 0 || reset_all)
86 s->T2 = iso_clip(factor * (basic_t2 - 3) + 3 + 5 * s->near,
87 s->T1, s->maxval);
88 if (s->T3 == 0 || reset_all)
89 s->T3 = iso_clip(factor * (basic_t3 - 4) + 4 + 7 * s->near,
90 s->T2, s->maxval);
91 } else {
92 factor = 256 / (s->maxval + 1);
93
94 if (s->T1 == 0 || reset_all)
95 s->T1 = iso_clip(FFMAX(2, basic_t1 / factor + 3 * s->near),
96 s->near + 1, s->maxval);
97 if (s->T2 == 0 || reset_all)
98 s->T2 = iso_clip(FFMAX(3, basic_t2 / factor + 5 * s->near),
99 s->T1, s->maxval);
100 if (s->T3 == 0 || reset_all)
101 s->T3 = iso_clip(FFMAX(4, basic_t3 / factor + 7 * s->near),
102 s->T2, s->maxval);
103 }
104
105 if (s->reset == 0 || reset_all)
106 s->reset = 64;
107 ff_dlog(NULL, "[JPEG-LS RESET] T=%i,%i,%i\n", s->T1, s->T2, s->T3);
108}
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
static struct @346255127015250356166251341105367306144006377143 state
#define av_log2
Definition intmath.h:84
static int iso_clip(int v, int vmin, int vmax)
Custom value clipping function used in T1, T2, T3 calculation.
Definition jpegls.c:61
void ff_jpegls_init_state(JLSState *state)
Calculate initial JPEG-LS parameters.
Definition jpegls.c:34
void ff_jpegls_reset_coding_parameters(JLSState *s, int reset_all)
Calculate JPEG-LS codec values.
Definition jpegls.c:69
JPEG-LS common code.
static const int factor[16]
Definition vf_pp7.c:98
common internal API header
#define FFMIN(a, b)
Definition macros.h:49
#define FFMAX(a, b)
Definition macros.h:47
#define ff_dlog(a,...)