FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavcodec/jpeglsenc.c
Date: 2023-09-22 12:20:07
Exec Total Coverage
Lines: 200 249 80.3%
Functions: 9 9 100.0%
Branches: 111 166 66.9%

Line Branch Exec Source
1 /*
2 * JPEG-LS encoder
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 encoder.
26 */
27
28 #define UNCHECKED_BITSTREAM_READER 1
29 #include "libavutil/opt.h"
30 #include "avcodec.h"
31 #include "bytestream.h"
32 #include "codec_internal.h"
33 #include "encode.h"
34 #include "get_bits.h"
35 #include "put_bits.h"
36 #include "put_golomb.h"
37 #include "mathops.h"
38 #include "mjpeg.h"
39 #include "jpegls.h"
40
41 typedef struct JPEGLSContext {
42 AVClass *class;
43
44 int pred;
45 int comps;
46
47 size_t size;
48 uint8_t *buf;
49 } JPEGLSContext;
50
51 800 static inline void put_marker_byteu(PutByteContext *pb, enum JpegMarker code)
52 {
53 800 bytestream2_put_byteu(pb, 0xff);
54 800 bytestream2_put_byteu(pb, code);
55 800 }
56
57 /**
58 * Encode error from regular symbol
59 */
60 43082291 static inline void ls_encode_regular(JLSState *state, PutBitContext *pb, int Q,
61 int err)
62 {
63 int k;
64 int val;
65 int map;
66
67
2/2
✓ Branch 0 taken 114288534 times.
✓ Branch 1 taken 43082291 times.
157370825 for (k = 0; (state->N[Q] << k) < state->A[Q]; k++)
68 ;
69
70
5/6
✓ Branch 0 taken 43082291 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1880874 times.
✓ Branch 3 taken 41201417 times.
✓ Branch 4 taken 645652 times.
✓ Branch 5 taken 1235222 times.
43082291 map = !state->near && !k && (2 * state->B[Q] <= -state->N[Q]);
71
72
2/2
✓ Branch 0 taken 22103040 times.
✓ Branch 1 taken 20979251 times.
43082291 if (err < 0)
73 22103040 err += state->range;
74
2/2
✓ Branch 0 taken 22391239 times.
✓ Branch 1 taken 20691052 times.
43082291 if (err >= (state->range + 1 >> 1)) {
75 22391239 err -= state->range;
76 22391239 val = 2 * FFABS(err) - 1 - map;
77 } else
78 20691052 val = 2 * err + map;
79
80 43082291 set_ur_golomb_jpegls(pb, val, k, state->limit, state->qbpp);
81
82 43082291 ff_jpegls_update_state_regular(state, Q, err);
83 43082291 }
84
85 /**
86 * Encode error from run termination
87 */
88 511058 static inline void ls_encode_runterm(JLSState *state, PutBitContext *pb,
89 int RItype, int err, int limit_add)
90 {
91 int k;
92 int val, map;
93 511058 int Q = 365 + RItype;
94 int temp;
95
96 511058 temp = state->A[Q];
97
2/2
✓ Branch 0 taken 285855 times.
✓ Branch 1 taken 225203 times.
511058 if (RItype)
98 285855 temp += state->N[Q] >> 1;
99
2/2
✓ Branch 0 taken 1601385 times.
✓ Branch 1 taken 511058 times.
2112443 for (k = 0; (state->N[Q] << k) < temp; k++)
100 ;
101 511058 map = 0;
102
6/6
✓ Branch 0 taken 8209 times.
✓ Branch 1 taken 502849 times.
✓ Branch 2 taken 7919 times.
✓ Branch 3 taken 290 times.
✓ Branch 4 taken 3887 times.
✓ Branch 5 taken 4032 times.
511058 if (!k && err && (2 * state->B[Q] < state->N[Q]))
103 3887 map = 1;
104
105
2/2
✓ Branch 0 taken 224602 times.
✓ Branch 1 taken 286456 times.
511058 if (err < 0)
106 224602 val = -(2 * err) - 1 - RItype + map;
107 else
108 286456 val = 2 * err - RItype - map;
109 511058 set_ur_golomb_jpegls(pb, val, k, state->limit - limit_add - 1, state->qbpp);
110
111
2/2
✓ Branch 0 taken 224602 times.
✓ Branch 1 taken 286456 times.
511058 if (err < 0)
112 224602 state->B[Q]++;
113 511058 state->A[Q] += (val + 1 - RItype) >> 1;
114
115 511058 ff_jpegls_downscale_state(state, Q);
116 511058 }
117
118 /**
119 * Encode run value as specified by JPEG-LS standard
120 */
121 516421 static inline void ls_encode_run(JLSState *state, PutBitContext *pb, int run,
122 int comp, int trail)
123 {
124
2/2
✓ Branch 0 taken 466818 times.
✓ Branch 1 taken 516421 times.
983239 while (run >= (1 << ff_log2_run[state->run_index[comp]])) {
125 466818 put_bits(pb, 1, 1);
126 466818 run -= 1 << ff_log2_run[state->run_index[comp]];
127
1/2
✓ Branch 0 taken 466818 times.
✗ Branch 1 not taken.
466818 if (state->run_index[comp] < 31)
128 466818 state->run_index[comp]++;
129 }
130 /* if hit EOL, encode another full run, else encode aborted run */
131
4/4
✓ Branch 0 taken 5363 times.
✓ Branch 1 taken 511058 times.
✓ Branch 2 taken 4162 times.
✓ Branch 3 taken 1201 times.
516421 if (!trail && run) {
132 4162 put_bits(pb, 1, 1);
133
2/2
✓ Branch 0 taken 511058 times.
✓ Branch 1 taken 1201 times.
512259 } else if (trail) {
134 511058 put_bits(pb, 1, 0);
135
2/2
✓ Branch 0 taken 414758 times.
✓ Branch 1 taken 96300 times.
511058 if (ff_log2_run[state->run_index[comp]])
136 414758 put_bits(pb, ff_log2_run[state->run_index[comp]], run);
137 }
138 516421 }
139
140 /**
141 * Encode one line of image
142 */
143 134700 static inline void ls_encode_line(JLSState *state, PutBitContext *pb,
144 void *tmp, const void *in, int last2, int w,
145 int stride, int comp, int bits)
146 {
147 134700 int x = 0;
148
1/2
✓ Branch 0 taken 134700 times.
✗ Branch 1 not taken.
134700 int Ra = R(tmp, 0), Rb, Rc = last2, Rd;
149 int D0, D1, D2;
150
151
2/2
✓ Branch 0 taken 43598712 times.
✓ Branch 1 taken 129337 times.
43728049 while (x < w) {
152 int err, pred, sign;
153
154 /* compute gradients */
155
1/2
✓ Branch 0 taken 43598712 times.
✗ Branch 1 not taken.
43598712 Rb = R(tmp, x);
156
4/6
✓ Branch 0 taken 130157 times.
✓ Branch 1 taken 43468555 times.
✓ Branch 2 taken 130157 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 43468555 times.
✗ Branch 5 not taken.
43598712 Rd = (x >= w - stride) ? R(tmp, x) : R(tmp, x + stride);
157 43598712 D0 = Rd - Rb;
158 43598712 D1 = Rb - Rc;
159 43598712 D2 = Rc - Ra;
160
161 /* run mode */
162
2/2
✓ Branch 0 taken 4643505 times.
✓ Branch 1 taken 38955207 times.
43598712 if ((FFABS(D0) <= state->near) &&
163
2/2
✓ Branch 0 taken 1622394 times.
✓ Branch 1 taken 3021111 times.
4643505 (FFABS(D1) <= state->near) &&
164
2/2
✓ Branch 0 taken 516421 times.
✓ Branch 1 taken 1105973 times.
2133452 (FFABS(D2) <= state->near)) {
165 int RUNval, RItype, run;
166
167 516421 run = 0;
168 516421 RUNval = Ra;
169
5/6
✓ Branch 0 taken 2710309 times.
✓ Branch 1 taken 5363 times.
✓ Branch 2 taken 2710309 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 2199251 times.
✓ Branch 5 taken 511058 times.
2715672 while (x < w && (FFABS(R(in, x) - RUNval) <= state->near)) {
170 2199251 run++;
171
1/2
✓ Branch 0 taken 2199251 times.
✗ Branch 1 not taken.
2199251 W(tmp, x, Ra);
172 2199251 x += stride;
173 }
174 516421 ls_encode_run(state, pb, run, comp, x < w);
175
2/2
✓ Branch 0 taken 5363 times.
✓ Branch 1 taken 511058 times.
516421 if (x >= w)
176 5363 return;
177
1/2
✓ Branch 0 taken 511058 times.
✗ Branch 1 not taken.
511058 Rb = R(tmp, x);
178 511058 RItype = FFABS(Ra - Rb) <= state->near;
179
2/2
✓ Branch 0 taken 285855 times.
✓ Branch 1 taken 225203 times.
511058 pred = RItype ? Ra : Rb;
180
1/2
✓ Branch 0 taken 511058 times.
✗ Branch 1 not taken.
511058 err = R(in, x) - pred;
181
182
4/4
✓ Branch 0 taken 225203 times.
✓ Branch 1 taken 285855 times.
✓ Branch 2 taken 145241 times.
✓ Branch 3 taken 79962 times.
511058 if (!RItype && Ra > Rb)
183 145241 err = -err;
184
185
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 511058 times.
511058 if (state->near) {
186 if (err > 0)
187 err = (state->near + err) / state->twonear;
188 else
189 err = -(state->near - err) / state->twonear;
190
191 if (RItype || (Rb >= Ra))
192 Ra = av_clip(pred + err * state->twonear, 0, state->maxval);
193 else
194 Ra = av_clip(pred - err * state->twonear, 0, state->maxval);
195 } else
196
1/2
✓ Branch 0 taken 511058 times.
✗ Branch 1 not taken.
511058 Ra = R(in, x);
197
1/2
✓ Branch 0 taken 511058 times.
✗ Branch 1 not taken.
511058 W(tmp, x, Ra);
198
199
2/2
✓ Branch 0 taken 228701 times.
✓ Branch 1 taken 282357 times.
511058 if (err < 0)
200 228701 err += state->range;
201
2/2
✓ Branch 0 taken 224602 times.
✓ Branch 1 taken 286456 times.
511058 if (err >= state->range + 1 >> 1)
202 224602 err -= state->range;
203
204 511058 ls_encode_runterm(state, pb, RItype, err,
205 511058 ff_log2_run[state->run_index[comp]]);
206
207
2/2
✓ Branch 0 taken 464801 times.
✓ Branch 1 taken 46257 times.
511058 if (state->run_index[comp] > 0)
208 464801 state->run_index[comp]--;
209 } else { /* regular mode */
210 int context;
211
212 43082291 context = ff_jpegls_quantize(state, D0) * 81 +
213 43082291 ff_jpegls_quantize(state, D1) * 9 +
214 43082291 ff_jpegls_quantize(state, D2);
215 43082291 pred = mid_pred(Ra, Ra + Rb - Rc, Rb);
216
217
2/2
✓ Branch 0 taken 17406898 times.
✓ Branch 1 taken 25675393 times.
43082291 if (context < 0) {
218 17406898 context = -context;
219 17406898 sign = 1;
220 17406898 pred = av_clip(pred - state->C[context], 0, state->maxval);
221
1/2
✓ Branch 0 taken 17406898 times.
✗ Branch 1 not taken.
17406898 err = pred - R(in, x);
222 } else {
223 25675393 sign = 0;
224 25675393 pred = av_clip(pred + state->C[context], 0, state->maxval);
225
1/2
✓ Branch 0 taken 25675393 times.
✗ Branch 1 not taken.
25675393 err = R(in, x) - pred;
226 }
227
228
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 43082291 times.
43082291 if (state->near) {
229 if (err > 0)
230 err = (state->near + err) / state->twonear;
231 else
232 err = -(state->near - err) / state->twonear;
233 if (!sign)
234 Ra = av_clip(pred + err * state->twonear, 0, state->maxval);
235 else
236 Ra = av_clip(pred - err * state->twonear, 0, state->maxval);
237 } else
238
1/2
✓ Branch 0 taken 43082291 times.
✗ Branch 1 not taken.
43082291 Ra = R(in, x);
239
1/2
✓ Branch 0 taken 43082291 times.
✗ Branch 1 not taken.
43082291 W(tmp, x, Ra);
240
241 43082291 ls_encode_regular(state, pb, context, err);
242 }
243 43593349 Rc = Rb;
244 43593349 x += stride;
245 }
246 }
247
248 200 static void ls_store_lse(JLSState *state, PutByteContext *pb)
249 {
250 /* Test if we have default params and don't need to store LSE */
251 200 JLSState state2 = { 0 };
252 200 state2.bpp = state->bpp;
253 200 state2.near = state->near;
254 200 ff_jpegls_reset_coding_parameters(&state2, 1);
255
1/2
✓ Branch 0 taken 200 times.
✗ Branch 1 not taken.
200 if (state->T1 == state2.T1 &&
256
1/2
✓ Branch 0 taken 200 times.
✗ Branch 1 not taken.
200 state->T2 == state2.T2 &&
257
1/2
✓ Branch 0 taken 200 times.
✗ Branch 1 not taken.
200 state->T3 == state2.T3 &&
258
1/2
✓ Branch 0 taken 200 times.
✗ Branch 1 not taken.
200 state->reset == state2.reset)
259 200 return;
260 /* store LSE type 1 */
261 put_marker_byteu(pb, LSE);
262 bytestream2_put_be16u(pb, 13);
263 bytestream2_put_byteu(pb, 1);
264 bytestream2_put_be16u(pb, state->maxval);
265 bytestream2_put_be16u(pb, state->T1);
266 bytestream2_put_be16u(pb, state->T2);
267 bytestream2_put_be16u(pb, state->T3);
268 bytestream2_put_be16u(pb, state->reset);
269 }
270
271 200 static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
272 const AVFrame *pict, int *got_packet)
273 {
274 200 JPEGLSContext *ctx = avctx->priv_data;
275 200 const AVFrame *const p = pict;
276 PutByteContext pb;
277 PutBitContext pb2;
278 GetBitContext gb;
279 const uint8_t *in;
280 200 uint8_t *last = NULL;
281 200 JLSState state = { 0 };
282 size_t size;
283 int i, ret, size_in_bits;
284 int comps;
285
286 200 last = av_mallocz(FFABS(p->linesize[0]));
287
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 200 times.
200 if (!last)
288 return AVERROR(ENOMEM);
289
290 200 init_put_bits(&pb2, ctx->buf, ctx->size);
291
292 200 comps = ctx->comps;
293 /* initialize JPEG-LS state from JPEG parameters */
294 200 state.near = ctx->pred;
295
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 200 times.
200 state.bpp = (avctx->pix_fmt == AV_PIX_FMT_GRAY16) ? 16 : 8;
296 200 ff_jpegls_reset_coding_parameters(&state, 0);
297 200 ff_jpegls_init_state(&state);
298
299 200 in = p->data[0];
300
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 200 times.
200 if (avctx->pix_fmt == AV_PIX_FMT_GRAY8) {
301 int t = 0;
302
303 for (i = 0; i < avctx->height; i++) {
304 int last0 = last[0];
305 ls_encode_line(&state, &pb2, last, in, t, avctx->width, 1, 0, 8);
306 t = last0;
307 in += p->linesize[0];
308 }
309
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 200 times.
200 } else if (avctx->pix_fmt == AV_PIX_FMT_GRAY16) {
310 int t = 0;
311
312 for (i = 0; i < avctx->height; i++) {
313 int last0 = *((uint16_t *)last);
314 ls_encode_line(&state, &pb2, last, in, t, avctx->width, 1, 0, 16);
315 t = last0;
316 in += p->linesize[0];
317 }
318
1/2
✓ Branch 0 taken 200 times.
✗ Branch 1 not taken.
200 } else if (avctx->pix_fmt == AV_PIX_FMT_RGB24) {
319 int j, width;
320 200 int Rc[3] = { 0, 0, 0 };
321
322 200 width = avctx->width * 3;
323
2/2
✓ Branch 0 taken 44900 times.
✓ Branch 1 taken 200 times.
45100 for (i = 0; i < avctx->height; i++) {
324
2/2
✓ Branch 0 taken 134700 times.
✓ Branch 1 taken 44900 times.
179600 for (j = 0; j < 3; j++) {
325 134700 int last0 = last[j];
326 134700 ls_encode_line(&state, &pb2, last + j, in + j, Rc[j],
327 width, 3, j, 8);
328 134700 Rc[j] = last0;
329 }
330 44900 in += p->linesize[0];
331 }
332 } else if (avctx->pix_fmt == AV_PIX_FMT_BGR24) {
333 int j, width;
334 int Rc[3] = { 0, 0, 0 };
335
336 width = avctx->width * 3;
337 for (i = 0; i < avctx->height; i++) {
338 for (j = 2; j >= 0; j--) {
339 int last0 = last[j];
340 ls_encode_line(&state, &pb2, last + j, in + j, Rc[j],
341 width, 3, j, 8);
342 Rc[j] = last0;
343 }
344 in += p->linesize[0];
345 }
346 }
347 200 av_free(last);
348 /* Now the actual image data has been written, which enables us to estimate
349 * the needed packet size: For every 15 input bits, an escape bit might be
350 * added below; and if put_bits_count % 15 is >= 8, then another bit might
351 * be added.
352 * Furthermore the specification says that after doing 0xff escaping unused
353 * bits in the last byte must be set to 0, so just append 7 "optional" zero
354 * bits to avoid special-casing. This also simplifies the size calculation:
355 * Properly rounding up is now automatically baked-in. */
356 200 put_bits(&pb2, 7, 0);
357 /* Make sure that the bit count + padding is representable in an int;
358 necessary for put_bits_count() as well as for using a GetBitContext. */
359
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 200 times.
200 if (put_bytes_count(&pb2, 0) > INT_MAX / 8 - AV_INPUT_BUFFER_PADDING_SIZE)
360 return AVERROR(ERANGE);
361 200 size_in_bits = put_bits_count(&pb2);
362 200 flush_put_bits(&pb2);
363 200 size = size_in_bits * 2U / 15;
364 200 size += 2 + 2 + 2 + 1 + 2 + 2 + 1 + comps * (1 + 1 + 1) + 2 + 2 + 1
365 200 + comps * (1 + 1) + 1 + 1 + 1; /* Header */
366 200 size += 2 + 2 + 1 + 2 + 2 + 2 + 2 + 2; /* LSE */
367 200 size += 2; /* EOI */
368
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 200 times.
200 if ((ret = ff_get_encode_buffer(avctx, pkt, size, 0)) < 0)
369 return ret;
370
371 200 bytestream2_init_writer(&pb, pkt->data, pkt->size);
372
373 /* write our own JPEG header, can't use mjpeg_picture_header */
374 200 put_marker_byteu(&pb, SOI);
375 200 put_marker_byteu(&pb, SOF48);
376 200 bytestream2_put_be16u(&pb, 8 + comps * 3); // header size depends on components
377
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 200 times.
200 bytestream2_put_byteu(&pb, (avctx->pix_fmt == AV_PIX_FMT_GRAY16) ? 16 : 8); // bpp
378 200 bytestream2_put_be16u(&pb, avctx->height);
379 200 bytestream2_put_be16u(&pb, avctx->width);
380 200 bytestream2_put_byteu(&pb, comps); // components
381
2/2
✓ Branch 0 taken 600 times.
✓ Branch 1 taken 200 times.
800 for (i = 1; i <= comps; i++) {
382 600 bytestream2_put_byteu(&pb, i); // component ID
383 600 bytestream2_put_byteu(&pb, 0x11); // subsampling: none
384 600 bytestream2_put_byteu(&pb, 0); // Tiq, used by JPEG-LS ext
385 }
386
387 200 put_marker_byteu(&pb, SOS);
388 200 bytestream2_put_be16u(&pb, 6 + comps * 2);
389 200 bytestream2_put_byteu(&pb, comps);
390
2/2
✓ Branch 0 taken 600 times.
✓ Branch 1 taken 200 times.
800 for (i = 1; i <= comps; i++) {
391 600 bytestream2_put_byteu(&pb, i); // component ID
392 600 bytestream2_put_byteu(&pb, 0); // mapping index: none
393 }
394 200 bytestream2_put_byteu(&pb, ctx->pred);
395 200 bytestream2_put_byteu(&pb, (comps > 1) ? 1 : 0); // interleaving: 0 - plane, 1 - line
396 200 bytestream2_put_byteu(&pb, 0); // point transform: none
397
398 200 ls_store_lse(&state, &pb);
399
400 /* do escape coding */
401 200 init_get_bits(&gb, pb2.buf, size_in_bits);
402 200 size_in_bits -= 7;
403
2/2
✓ Branch 1 taken 25690023 times.
✓ Branch 2 taken 200 times.
25690423 while (get_bits_count(&gb) < size_in_bits) {
404 int v;
405 25690023 v = get_bits(&gb, 8);
406 25690023 bytestream2_put_byteu(&pb, v);
407
2/2
✓ Branch 0 taken 25545715 times.
✓ Branch 1 taken 144308 times.
25690023 if (v == 0xFF) {
408 144308 v = get_bits(&gb, 7);
409 144308 bytestream2_put_byteu(&pb, v);
410 }
411 }
412
413 /* End of image */
414 200 put_marker_byteu(&pb, EOI);
415
416 200 av_shrink_packet(pkt, bytestream2_tell_p(&pb));
417 200 *got_packet = 1;
418 200 return 0;
419 }
420
421 4 static av_cold int encode_jpegls_init(AVCodecContext *avctx)
422 {
423 4 JPEGLSContext *ctx = avctx->priv_data;
424 size_t size;
425
426
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if ((avctx->width | avctx->height) > UINT16_MAX) {
427 av_log(avctx, AV_LOG_ERROR, "Dimensions exceeding 65535x65535\n");
428 return AVERROR(EINVAL);
429 }
430
1/2
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
4 if (avctx->pix_fmt == AV_PIX_FMT_GRAY8 ||
431
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 avctx->pix_fmt == AV_PIX_FMT_GRAY16)
432 ctx->comps = 1;
433 else
434 4 ctx->comps = 3;
435 4 size = AV_INPUT_BUFFER_MIN_SIZE;
436 /* INT_MAX due to PutBit-API. */
437
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (avctx->width * (unsigned)avctx->height > (INT_MAX - size) / 4 / ctx->comps)
438 return AVERROR(ERANGE);
439 4 size += 4 * ctx->comps * avctx->width * avctx->height;
440 4 ctx->size = size;
441 4 ctx->buf = av_malloc(size + AV_INPUT_BUFFER_PADDING_SIZE);
442
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (!ctx->buf)
443 return AVERROR(ENOMEM);
444
445 4 return 0;
446 }
447
448 4 static av_cold int encode_jpegls_close(AVCodecContext *avctx)
449 {
450 4 JPEGLSContext *ctx = avctx->priv_data;
451
452 4 av_freep(&ctx->buf);
453 4 return 0;
454 }
455
456 #define OFFSET(x) offsetof(JPEGLSContext, x)
457 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
458 static const AVOption options[] = {
459 { "pred", "Prediction method", OFFSET(pred), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 2, VE, "pred" },
460 { "left", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "pred" },
461 { "plane", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "pred" },
462 { "median", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 2 }, INT_MIN, INT_MAX, VE, "pred" },
463
464 { NULL},
465 };
466
467 static const AVClass jpegls_class = {
468 .class_name = "jpegls",
469 .item_name = av_default_item_name,
470 .option = options,
471 .version = LIBAVUTIL_VERSION_INT,
472 };
473
474 const FFCodec ff_jpegls_encoder = {
475 .p.name = "jpegls",
476 CODEC_LONG_NAME("JPEG-LS"),
477 .p.type = AVMEDIA_TYPE_VIDEO,
478 .p.id = AV_CODEC_ID_JPEGLS,
479 .p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_FRAME_THREADS |
480 AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
481 .priv_data_size = sizeof(JPEGLSContext),
482 .p.priv_class = &jpegls_class,
483 .init = encode_jpegls_init,
484 FF_CODEC_ENCODE_CB(encode_picture_ls),
485 .close = encode_jpegls_close,
486 .p.pix_fmts = (const enum AVPixelFormat[]) {
487 AV_PIX_FMT_BGR24, AV_PIX_FMT_RGB24,
488 AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY16,
489 AV_PIX_FMT_NONE
490 },
491 .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
492 };
493