3 * Copyright (c) 2003 Michael Niedermayer
4 * Copyright (c) 2006 Konstantin Shishkov
6 * This file is part of FFmpeg.
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.
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.
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
36 #include "jpeglsdec.h"
39 * Uncomment this to significantly speed up decoding of broken JPEG-LS
40 * (or test broken JPEG-LS decoder) and slow down ordinary decoding a bit.
42 * There is no Golomb code with length >= 32 bits possible, so check and
43 * avoid situation of 32 zeros, FFmpeg Golomb decoder is painfully slow
49 * Decode LSE block with initialization parameters
51 int ff_jpegls_decode_lse(MJpegDecodeContext *s)
54 int tid, wt, maxtab, i, j;
56 int len = get_bits(&s->gb, 16);
57 id = get_bits(&s->gb, 8);
62 return AVERROR_INVALIDDATA;
64 s->maxval = get_bits(&s->gb, 16);
65 s->t1 = get_bits(&s->gb, 16);
66 s->t2 = get_bits(&s->gb, 16);
67 s->t3 = get_bits(&s->gb, 16);
68 s->reset = get_bits(&s->gb, 16);
70 if(s->avctx->debug & FF_DEBUG_PICT_INFO) {
71 av_log(s->avctx, AV_LOG_DEBUG, "Coding parameters maxval:%d T1:%d T2:%d T3:%d reset:%d\n",
72 s->maxval, s->t1, s->t2, s->t3, s->reset);
75 // ff_jpegls_reset_coding_parameters(s, 0);
81 tid= get_bits(&s->gb, 8);
82 wt = get_bits(&s->gb, 8);
85 return AVERROR_INVALIDDATA;
87 if (wt < 1 || wt > MAX_COMPONENTS) {
88 avpriv_request_sample(s->avctx, "wt %d", wt);
89 return AVERROR_PATCHWELCOME;
94 else if ((5 + wt*(s->maxval+1)) < 65535)
97 maxtab = 65530/wt - 1;
99 if(s->avctx->debug & FF_DEBUG_PICT_INFO) {
100 av_log(s->avctx, AV_LOG_DEBUG, "LSE palette %d tid:%d wt:%d maxtab:%d\n", id, tid, wt, maxtab);
103 avpriv_request_sample(s->avctx, ">8bit palette");
104 return AVERROR_PATCHWELCOME;
106 maxtab = FFMIN(maxtab, (len - 5) / wt + s->palette_index);
108 if (s->palette_index > maxtab)
109 return AVERROR_INVALIDDATA;
111 if ((s->avctx->pix_fmt == AV_PIX_FMT_GRAY8 || s->avctx->pix_fmt == AV_PIX_FMT_PAL8) &&
112 (s->picture_ptr->format == AV_PIX_FMT_GRAY8 || s->picture_ptr->format == AV_PIX_FMT_PAL8)) {
113 uint32_t *pal = (uint32_t *)s->picture_ptr->data[1];
116 if (s->avctx->bits_per_raw_sample > 0 && s->avctx->bits_per_raw_sample < 8) {
117 maxtab = FFMIN(maxtab, (1<<s->avctx->bits_per_raw_sample)-1);
118 shift = 8 - s->avctx->bits_per_raw_sample;
121 s->picture_ptr->format =
122 s->avctx->pix_fmt = AV_PIX_FMT_PAL8;
123 for (i=s->palette_index; i<=maxtab; i++) {
124 uint8_t k = i << shift;
126 for (j=0; j<wt; j++) {
127 pal[k] |= get_bits(&s->gb, 8) << (8*(wt-j-1));
130 s->palette_index = i;
134 avpriv_request_sample(s->avctx, "oversize image");
135 return AVERROR(ENOSYS);
137 av_log(s->avctx, AV_LOG_ERROR, "invalid id %d\n", id);
138 return AVERROR_INVALIDDATA;
140 ff_dlog(s->avctx, "ID=%i, T=%i,%i,%i\n", id, s->t1, s->t2, s->t3);
146 * Get context-dependent Golomb code, decode it and update context
148 static inline int ls_get_code_regular(GetBitContext *gb, JLSState *state, int Q)
152 for (k = 0; (state->N[Q] << k) < state->A[Q]; k++)
156 if (!show_bits_long(gb, 32))
159 ret = get_ur_golomb_jpegls(gb, k, state->limit, state->qbpp);
161 /* decode mapped error */
163 ret = -(ret + 1 >> 1);
167 /* for NEAR=0, k=0 and 2*B[Q] <= - N[Q] mapping is reversed */
168 if (!state->near && !k && (2 * state->B[Q] <= -state->N[Q]))
171 ret = ff_jpegls_update_state_regular(state, Q, ret);
177 * Get Golomb code, decode it and update state for run termination
179 static inline int ls_get_code_runterm(GetBitContext *gb, JLSState *state,
180 int RItype, int limit_add)
182 int k, ret, temp, map;
183 int Q = 365 + RItype;
187 temp += state->N[Q] >> 1;
189 for (k = 0; (state->N[Q] << k) < temp; k++)
193 if (!show_bits_long(gb, 32))
196 ret = get_ur_golomb_jpegls(gb, k, state->limit - limit_add - 1,
199 /* decode mapped error */
201 if (!k && (RItype || ret) && (2 * state->B[Q] < state->N[Q]))
206 ret = map - (ret + 1 >> 1);
212 if(FFABS(ret) > 0xFFFF)
215 state->A[Q] += FFABS(ret) - RItype;
216 ret *= state->twonear;
217 ff_jpegls_downscale_state(state, Q);
223 * Decode one line of image
225 static inline void ls_decode_line(JLSState *state, MJpegDecodeContext *s,
226 void *last, void *dst, int last2, int w,
227 int stride, int comp, int bits)
236 if (get_bits_left(&s->gb) <= 0)
239 /* compute gradients */
240 Ra = x ? R(dst, x - stride) : R(last, x);
242 Rc = x ? R(last, x - stride) : last2;
243 Rd = (x >= w - stride) ? R(last, x) : R(last, x + stride);
248 if ((FFABS(D0) <= state->near) &&
249 (FFABS(D1) <= state->near) &&
250 (FFABS(D2) <= state->near)) {
254 /* decode full runs while available */
255 while (get_bits1(&s->gb)) {
257 r = 1 << ff_log2_run[state->run_index[comp]];
258 if (x + r * stride > w)
259 r = (w - x) / stride;
260 for (i = 0; i < r; i++) {
264 /* if EOL reached, we stop decoding */
265 if (r != 1 << ff_log2_run[state->run_index[comp]])
267 if (state->run_index[comp] < 31)
268 state->run_index[comp]++;
272 /* decode aborted run */
273 r = ff_log2_run[state->run_index[comp]];
275 r = get_bits_long(&s->gb, r);
276 if (x + r * stride > w) {
277 r = (w - x) / stride;
279 for (i = 0; i < r; i++) {
285 av_log(NULL, AV_LOG_ERROR, "run overflow\n");
290 /* decode run termination value */
292 RItype = (FFABS(Ra - Rb) <= state->near) ? 1 : 0;
293 err = ls_get_code_runterm(&s->gb, state, RItype,
294 ff_log2_run[state->run_index[comp]]);
295 if (state->run_index[comp])
296 state->run_index[comp]--;
298 if (state->near && RItype) {
306 } else { /* regular mode */
309 context = ff_jpegls_quantize(state, D0) * 81 +
310 ff_jpegls_quantize(state, D1) * 9 +
311 ff_jpegls_quantize(state, D2);
312 pred = mid_pred(Ra, Ra + Rb - Rc, Rb);
322 pred = av_clip(pred - state->C[context], 0, state->maxval);
323 err = -ls_get_code_regular(&s->gb, state, context);
325 pred = av_clip(pred + state->C[context], 0, state->maxval);
326 err = ls_get_code_regular(&s->gb, state, context);
329 /* we have to do something more for near-lossless coding */
333 if (pred < -state->near)
334 pred += state->range * state->twonear;
335 else if (pred > state->maxval + state->near)
336 pred -= state->range * state->twonear;
337 pred = av_clip(pred, 0, state->maxval);
340 pred &= state->maxval;
346 int ff_jpegls_decode_picture(MJpegDecodeContext *s, int near,
347 int point_transform, int ilv)
350 uint8_t *zero, *last, *cur;
352 int off = 0, stride = 1, width, shift, ret = 0;
354 zero = av_mallocz(s->picture_ptr->linesize[0]);
356 return AVERROR(ENOMEM);
358 cur = s->picture_ptr->data[0];
360 state = av_mallocz(sizeof(JLSState));
363 return AVERROR(ENOMEM);
365 /* initialize JPEG-LS state from JPEG parameters */
367 state->bpp = (s->bits < 2) ? 2 : s->bits;
368 state->maxval = s->maxval;
372 state->reset = s->reset;
373 ff_jpegls_reset_coding_parameters(state, 0);
374 ff_jpegls_init_state(state);
377 shift = point_transform + (8 - s->bits);
379 shift = point_transform + (16 - s->bits);
382 ret = AVERROR_INVALIDDATA;
386 if (s->avctx->debug & FF_DEBUG_PICT_INFO) {
387 av_log(s->avctx, AV_LOG_DEBUG,
388 "JPEG-LS params: %ix%i NEAR=%i MV=%i T(%i,%i,%i) "
389 "RESET=%i, LIMIT=%i, qbpp=%i, RANGE=%i\n",
390 s->width, s->height, state->near, state->maxval,
391 state->T1, state->T2, state->T3,
392 state->reset, state->limit, state->qbpp, state->range);
393 av_log(s->avctx, AV_LOG_DEBUG, "JPEG params: ILV=%i Pt=%i BPP=%i, scan = %i\n",
394 ilv, point_transform, s->bits, s->cur_scan);
396 if (get_bits_left(&s->gb) < s->height) {
397 ret = AVERROR_INVALIDDATA;
400 if (ilv == 0) { /* separate planes */
401 if (s->cur_scan > s->nb_components) {
402 ret = AVERROR_INVALIDDATA;
405 stride = (s->nb_components > 1) ? 3 : 1;
406 off = av_clip(s->cur_scan - 1, 0, stride - 1);
407 width = s->width * stride;
409 for (i = 0; i < s->height; i++) {
411 ls_decode_line(state, s, last, cur, t, width, stride, off, 8);
414 ls_decode_line(state, s, last, cur, t, width, stride, off, 16);
415 t = *((uint16_t *)last);
418 cur += s->picture_ptr->linesize[0];
420 if (s->restart_interval && !--s->restart_count) {
421 align_get_bits(&s->gb);
422 skip_bits(&s->gb, 16); /* skip RSTn */
425 } else if (ilv == 1) { /* line interleaving */
427 int Rc[3] = { 0, 0, 0 };
428 stride = (s->nb_components > 1) ? 3 : 1;
429 memset(cur, 0, s->picture_ptr->linesize[0]);
430 width = s->width * stride;
431 for (i = 0; i < s->height; i++) {
432 for (j = 0; j < stride; j++) {
433 ls_decode_line(state, s, last + j, cur + j,
434 Rc[j], width, stride, j, 8);
437 if (s->restart_interval && !--s->restart_count) {
438 align_get_bits(&s->gb);
439 skip_bits(&s->gb, 16); /* skip RSTn */
443 cur += s->picture_ptr->linesize[0];
445 } else if (ilv == 2) { /* sample interleaving */
446 avpriv_report_missing_feature(s->avctx, "Sample interleaved images");
447 ret = AVERROR_PATCHWELCOME;
449 } else { /* unknown interleaving */
450 avpriv_report_missing_feature(s->avctx, "Unknown interleaved images");
451 ret = AVERROR_PATCHWELCOME;
455 if (s->xfrm && s->nb_components == 3) {
458 w = s->width * s->nb_components;
461 uint8_t *src = s->picture_ptr->data[0];
463 for (i = 0; i < s->height; i++) {
466 for (x = off; x < w; x += 3) {
467 src[x ] += src[x+1] + 128;
468 src[x+2] += src[x+1] + 128;
472 for (x = off; x < w; x += 3) {
473 src[x ] += src[x+1] + 128;
474 src[x+2] += ((src[x ] + src[x+1])>>1) + 128;
478 for (x = off; x < w; x += 3) {
479 int g = src[x+0] - ((src[x+2]+src[x+1])>>2) + 64;
480 src[x+0] = src[x+2] + g + 128;
481 src[x+2] = src[x+1] + g + 128;
486 for (x = off; x < w; x += 3) {
487 int r = src[x+0] - (( 359 * (src[x+2]-128) + 490) >> 8);
488 int g = src[x+0] - (( 88 * (src[x+1]-128) - 183 * (src[x+2]-128) + 30) >> 8);
489 int b = src[x+0] + ((454 * (src[x+1]-128) + 574) >> 8);
490 src[x+0] = av_clip_uint8(r);
491 src[x+1] = av_clip_uint8(g);
492 src[x+2] = av_clip_uint8(b);
496 src += s->picture_ptr->linesize[0];
499 avpriv_report_missing_feature(s->avctx, "16bit xfrm");
502 if (shift) { /* we need to do point transform or normalize samples */
505 w = s->width * s->nb_components;
508 uint8_t *src = s->picture_ptr->data[0];
510 for (i = 0; i < s->height; i++) {
511 for (x = off; x < w; x += stride)
513 src += s->picture_ptr->linesize[0];
516 uint16_t *src = (uint16_t *)s->picture_ptr->data[0];
518 for (i = 0; i < s->height; i++) {
519 for (x = 0; x < w; x++)
521 src += s->picture_ptr->linesize[0] / 2;
533 AVCodec ff_jpegls_decoder = {
535 .long_name = NULL_IF_CONFIG_SMALL("JPEG-LS"),
536 .type = AVMEDIA_TYPE_VIDEO,
537 .id = AV_CODEC_ID_JPEGLS,
538 .priv_data_size = sizeof(MJpegDecodeContext),
539 .init = ff_mjpeg_decode_init,
540 .close = ff_mjpeg_decode_end,
541 .decode = ff_mjpeg_decode_frame,
542 .capabilities = AV_CODEC_CAP_DR1,
543 .caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,