]> git.sesse.net Git - ffmpeg/blob - libavcodec/jpeglsenc.c
avcodec/jpeglsenc: Move check out of loop
[ffmpeg] / libavcodec / jpeglsenc.c
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 #include "avcodec.h"
29 #include "bytestream.h"
30 #include "get_bits.h"
31 #include "put_bits.h"
32 #include "golomb.h"
33 #include "internal.h"
34 #include "mathops.h"
35 #include "mjpeg.h"
36 #include "mjpegenc.h"
37 #include "jpegls.h"
38
39 typedef struct JPEGLSContext {
40     AVClass *class;
41
42     int pred;
43 } JPEGLSContext;
44
45 static inline void put_marker_byteu(PutByteContext *pb, enum JpegMarker code)
46 {
47     bytestream2_put_byteu(pb, 0xff);
48     bytestream2_put_byteu(pb, code);
49 }
50
51 static inline void put_marker_byte(PutByteContext *pb, enum JpegMarker code)
52 {
53     bytestream2_put_byte(pb, 0xff);
54     bytestream2_put_byte(pb, code);
55 }
56
57 /**
58  * Encode error from regular symbol
59  */
60 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     for (k = 0; (state->N[Q] << k) < state->A[Q]; k++)
68         ;
69
70     map = !state->near && !k && (2 * state->B[Q] <= -state->N[Q]);
71
72     if (err < 0)
73         err += state->range;
74     if (err >= (state->range + 1 >> 1)) {
75         err -= state->range;
76         val  = 2 * FFABS(err) - 1 - map;
77     } else
78         val = 2 * err + map;
79
80     set_ur_golomb_jpegls(pb, val, k, state->limit, state->qbpp);
81
82     ff_jpegls_update_state_regular(state, Q, err);
83 }
84
85 /**
86  * Encode error from run termination
87  */
88 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     int Q = 365 + RItype;
94     int temp;
95
96     temp = state->A[Q];
97     if (RItype)
98         temp += state->N[Q] >> 1;
99     for (k = 0; (state->N[Q] << k) < temp; k++)
100         ;
101     map = 0;
102     if (!k && err && (2 * state->B[Q] < state->N[Q]))
103         map = 1;
104
105     if (err < 0)
106         val = -(2 * err) - 1 - RItype + map;
107     else
108         val = 2 * err - RItype - map;
109     set_ur_golomb_jpegls(pb, val, k, state->limit - limit_add - 1, state->qbpp);
110
111     if (err < 0)
112         state->B[Q]++;
113     state->A[Q] += (val + 1 - RItype) >> 1;
114
115     ff_jpegls_downscale_state(state, Q);
116 }
117
118 /**
119  * Encode run value as specified by JPEG-LS standard
120  */
121 static inline void ls_encode_run(JLSState *state, PutBitContext *pb, int run,
122                                  int comp, int trail)
123 {
124     while (run >= (1 << ff_log2_run[state->run_index[comp]])) {
125         put_bits(pb, 1, 1);
126         run -= 1 << ff_log2_run[state->run_index[comp]];
127         if (state->run_index[comp] < 31)
128             state->run_index[comp]++;
129     }
130     /* if hit EOL, encode another full run, else encode aborted run */
131     if (!trail && run) {
132         put_bits(pb, 1, 1);
133     } else if (trail) {
134         put_bits(pb, 1, 0);
135         if (ff_log2_run[state->run_index[comp]])
136             put_bits(pb, ff_log2_run[state->run_index[comp]], run);
137     }
138 }
139
140 /**
141  * Encode one line of image
142  */
143 static inline void ls_encode_line(JLSState *state, PutBitContext *pb,
144                                   void *last, void *cur, const void *in, int last2, int w,
145                                   int stride, int comp, int bits)
146 {
147     int x = 0;
148     int Ra = R(last, 0), Rb, Rc = last2, Rd;
149     int D0, D1, D2;
150
151     while (x < w) {
152         int err, pred, sign;
153
154         /* compute gradients */
155         Rb = R(last, x);
156         Rd = (x >= w - stride) ? R(last, x) : R(last, x + stride);
157         D0 = Rd - Rb;
158         D1 = Rb - Rc;
159         D2 = Rc - Ra;
160
161         /* run mode */
162         if ((FFABS(D0) <= state->near) &&
163             (FFABS(D1) <= state->near) &&
164             (FFABS(D2) <= state->near)) {
165             int RUNval, RItype, run;
166
167             run    = 0;
168             RUNval = Ra;
169             while (x < w && (FFABS(R(in, x) - RUNval) <= state->near)) {
170                 run++;
171                 W(cur, x, Ra);
172                 x += stride;
173             }
174             ls_encode_run(state, pb, run, comp, x < w);
175             if (x >= w)
176                 return;
177             Rb     = R(last, x);
178             RItype = FFABS(Ra - Rb) <= state->near;
179             pred   = RItype ? Ra : Rb;
180             err    = R(in, x) - pred;
181
182             if (!RItype && Ra > Rb)
183                 err = -err;
184
185             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                 Ra = R(in, x);
197             W(cur, x, Ra);
198
199             if (err < 0)
200                 err += state->range;
201             if (err >= state->range + 1 >> 1)
202                 err -= state->range;
203
204             ls_encode_runterm(state, pb, RItype, err,
205                               ff_log2_run[state->run_index[comp]]);
206
207             if (state->run_index[comp] > 0)
208                 state->run_index[comp]--;
209         } else { /* regular mode */
210             int context;
211
212             context = ff_jpegls_quantize(state, D0) * 81 +
213                       ff_jpegls_quantize(state, D1) *  9 +
214                       ff_jpegls_quantize(state, D2);
215             pred    = mid_pred(Ra, Ra + Rb - Rc, Rb);
216
217             if (context < 0) {
218                 context = -context;
219                 sign    = 1;
220                 pred    = av_clip(pred - state->C[context], 0, state->maxval);
221                 err     = pred - R(in, x);
222             } else {
223                 sign = 0;
224                 pred = av_clip(pred + state->C[context], 0, state->maxval);
225                 err  = R(in, x) - pred;
226             }
227
228             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                 Ra = R(in, x);
239             W(cur, x, Ra);
240
241             ls_encode_regular(state, pb, context, err);
242         }
243         Rc = Rb;
244         x += stride;
245     }
246 }
247
248 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     JLSState state2 = { 0 };
252     state2.bpp  = state->bpp;
253     state2.near = state->near;
254     ff_jpegls_reset_coding_parameters(&state2, 1);
255     if (state->T1 == state2.T1 &&
256         state->T2 == state2.T2 &&
257         state->T3 == state2.T3 &&
258         state->reset == state2.reset)
259         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 static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
272                              const AVFrame *pict, int *got_packet)
273 {
274     JPEGLSContext *ctx = avctx->priv_data;
275     const AVFrame *const p = pict;
276     PutByteContext pb;
277     PutBitContext pb2;
278     GetBitContext gb;
279     uint8_t *buf2 = NULL;
280     uint8_t *zero = NULL;
281     const uint8_t *in;
282     uint8_t *last, *cur;
283     JLSState *state = NULL;
284     int i, size, ret;
285     int comps;
286
287 #if FF_API_PRIVATE_OPT
288 FF_DISABLE_DEPRECATION_WARNINGS
289     if (avctx->prediction_method)
290         ctx->pred = avctx->prediction_method;
291 FF_ENABLE_DEPRECATION_WARNINGS
292 #endif
293
294     if (avctx->pix_fmt == AV_PIX_FMT_GRAY8 ||
295         avctx->pix_fmt == AV_PIX_FMT_GRAY16)
296         comps = 1;
297     else
298         comps = 3;
299
300     if ((ret = ff_alloc_packet2(avctx, pkt, avctx->width  *avctx->height * comps * 4 +
301                                 AV_INPUT_BUFFER_MIN_SIZE, 0)) < 0)
302         return ret;
303
304     buf2 = av_malloc(pkt->size);
305     if (!buf2)
306         goto memfail;
307
308     bytestream2_init_writer(&pb, pkt->data, pkt->size);
309     init_put_bits(&pb2, buf2, pkt->size);
310
311     /* write our own JPEG header, can't use mjpeg_picture_header */
312     put_marker_byteu(&pb, SOI);
313     put_marker_byteu(&pb, SOF48);
314     bytestream2_put_be16u(&pb, 8 + comps * 3); // header size depends on components
315     bytestream2_put_byteu(&pb, (avctx->pix_fmt == AV_PIX_FMT_GRAY16) ? 16 : 8);  // bpp
316     bytestream2_put_be16u(&pb, avctx->height);
317     bytestream2_put_be16u(&pb, avctx->width);
318     bytestream2_put_byteu(&pb, comps);          // components
319     for (i = 1; i <= comps; i++) {
320         bytestream2_put_byteu(&pb, i);     // component ID
321         bytestream2_put_byteu(&pb, 0x11);  // subsampling: none
322         bytestream2_put_byteu(&pb, 0);     // Tiq, used by JPEG-LS ext
323     }
324
325     put_marker_byteu(&pb, SOS);
326     bytestream2_put_be16u(&pb, 6 + comps * 2);
327     bytestream2_put_byteu(&pb, comps);
328     for (i = 1; i <= comps; i++) {
329         bytestream2_put_byteu(&pb, i);   // component ID
330         bytestream2_put_byteu(&pb, 0);   // mapping index: none
331     }
332     bytestream2_put_byteu(&pb, ctx->pred);
333     bytestream2_put_byteu(&pb, (comps > 1) ? 1 : 0);  // interleaving: 0 - plane, 1 - line
334     bytestream2_put_byteu(&pb, 0);  // point transform: none
335
336     state = av_mallocz(sizeof(JLSState));
337     if (!state)
338         goto memfail;
339
340     /* initialize JPEG-LS state from JPEG parameters */
341     state->near = ctx->pred;
342     state->bpp  = (avctx->pix_fmt == AV_PIX_FMT_GRAY16) ? 16 : 8;
343     ff_jpegls_reset_coding_parameters(state, 0);
344     ff_jpegls_init_state(state);
345
346     ls_store_lse(state, &pb);
347
348     zero = last = av_calloc(FFABS(p->linesize[0]), 2);
349     if (!zero)
350         goto memfail;
351     cur = zero + FFABS(p->linesize[0]);
352
353     in = p->data[0];
354     if (avctx->pix_fmt == AV_PIX_FMT_GRAY8) {
355         int t = 0;
356
357         for (i = 0; i < avctx->height; i++) {
358             ls_encode_line(state, &pb2, last, cur, in, t, avctx->width, 1, 0, 8);
359             t    = last[0];
360             FFSWAP(void *, last, cur);
361             in += p->linesize[0];
362         }
363     } else if (avctx->pix_fmt == AV_PIX_FMT_GRAY16) {
364         int t = 0;
365
366         for (i = 0; i < avctx->height; i++) {
367             ls_encode_line(state, &pb2, last, cur, in, t, avctx->width, 1, 0, 16);
368             t    = *((uint16_t *)last);
369             FFSWAP(void *, last, cur);
370             in += p->linesize[0];
371         }
372     } else if (avctx->pix_fmt == AV_PIX_FMT_RGB24) {
373         int j, width;
374         int Rc[3] = { 0, 0, 0 };
375
376         width = avctx->width * 3;
377         for (i = 0; i < avctx->height; i++) {
378             for (j = 0; j < 3; j++) {
379                 ls_encode_line(state, &pb2, last + j, cur + j, in + j, Rc[j],
380                                width, 3, j, 8);
381                 Rc[j] = last[j];
382             }
383             FFSWAP(void *, last, cur);
384             in += p->linesize[0];
385         }
386     } else if (avctx->pix_fmt == AV_PIX_FMT_BGR24) {
387         int j, width;
388         int Rc[3] = { 0, 0, 0 };
389
390         width = avctx->width * 3;
391         for (i = 0; i < avctx->height; i++) {
392             for (j = 2; j >= 0; j--) {
393                 ls_encode_line(state, &pb2, last + j, cur + j, in + j, Rc[j],
394                                width, 3, j, 8);
395                 Rc[j] = last[j];
396             }
397             FFSWAP(void *, last, cur);
398             in += p->linesize[0];
399         }
400     }
401
402     av_freep(&zero);
403     av_freep(&state);
404
405     /* the specification says that after doing 0xff escaping unused bits in
406      * the last byte must be set to 0, so just append 7 "optional" zero bits
407      * to avoid special-casing. */
408     put_bits(&pb2, 7, 0);
409     size = put_bits_count(&pb2);
410     flush_put_bits(&pb2);
411     /* do escape coding */
412     init_get_bits(&gb, buf2, size);
413     size -= 7;
414     while (get_bits_count(&gb) < size) {
415         int v;
416         v = get_bits(&gb, 8);
417         bytestream2_put_byte(&pb, v);
418         if (v == 0xFF) {
419             v = get_bits(&gb, 7);
420             bytestream2_put_byte(&pb, v);
421         }
422     }
423     av_freep(&buf2);
424
425     /* End of image */
426     put_marker_byte(&pb, EOI);
427
428     emms_c();
429
430     pkt->size   = bytestream2_tell_p(&pb);
431     pkt->flags |= AV_PKT_FLAG_KEY;
432     *got_packet = 1;
433     return 0;
434
435 memfail:
436     av_freep(&buf2);
437     av_freep(&state);
438     av_freep(&zero);
439     return AVERROR(ENOMEM);
440 }
441
442 static av_cold int encode_init_ls(AVCodecContext *ctx)
443 {
444 #if FF_API_CODED_FRAME
445 FF_DISABLE_DEPRECATION_WARNINGS
446     ctx->coded_frame->pict_type = AV_PICTURE_TYPE_I;
447     ctx->coded_frame->key_frame = 1;
448 FF_ENABLE_DEPRECATION_WARNINGS
449 #endif
450
451     if (ctx->pix_fmt != AV_PIX_FMT_GRAY8  &&
452         ctx->pix_fmt != AV_PIX_FMT_GRAY16 &&
453         ctx->pix_fmt != AV_PIX_FMT_RGB24  &&
454         ctx->pix_fmt != AV_PIX_FMT_BGR24) {
455         av_log(ctx, AV_LOG_ERROR,
456                "Only grayscale and RGB24/BGR24 images are supported\n");
457         return -1;
458     }
459     return 0;
460 }
461
462 #define OFFSET(x) offsetof(JPEGLSContext, x)
463 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
464 static const AVOption options[] = {
465 { "pred", "Prediction method", OFFSET(pred), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 2, VE, "pred" },
466     { "left",   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 0 }, INT_MIN, INT_MAX, VE, "pred" },
467     { "plane",  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 1 }, INT_MIN, INT_MAX, VE, "pred" },
468     { "median", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = 2 }, INT_MIN, INT_MAX, VE, "pred" },
469
470     { NULL},
471 };
472
473 static const AVClass jpegls_class = {
474     .class_name = "jpegls",
475     .item_name  = av_default_item_name,
476     .option     = options,
477     .version    = LIBAVUTIL_VERSION_INT,
478 };
479
480 AVCodec ff_jpegls_encoder = {
481     .name           = "jpegls",
482     .long_name      = NULL_IF_CONFIG_SMALL("JPEG-LS"),
483     .type           = AVMEDIA_TYPE_VIDEO,
484     .id             = AV_CODEC_ID_JPEGLS,
485     .priv_data_size = sizeof(JPEGLSContext),
486     .priv_class     = &jpegls_class,
487     .init           = encode_init_ls,
488     .capabilities   = AV_CODEC_CAP_FRAME_THREADS,
489     .encode2        = encode_picture_ls,
490     .pix_fmts       = (const enum AVPixelFormat[]) {
491         AV_PIX_FMT_BGR24, AV_PIX_FMT_RGB24,
492         AV_PIX_FMT_GRAY8, AV_PIX_FMT_GRAY16,
493         AV_PIX_FMT_NONE
494     },
495     .caps_internal  = FF_CODEC_CAP_INIT_THREADSAFE |
496                       FF_CODEC_CAP_INIT_CLEANUP,
497 };