FFmpeg
Functions | Variables
jpeglsdec.c File Reference
#include "libavutil/mem.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "get_bits.h"
#include "golomb.h"
#include "mathops.h"
#include "mjpegdec.h"
#include "jpegls.h"
#include "jpeglsdec.h"

Go to the source code of this file.

Functions

int ff_jpegls_decode_lse (MJpegDecodeContext *s)
 Decode LSE block with initialization parameters. More...
 
static int ls_get_code_regular (GetBitContext *gb, JLSState *state, int Q)
 Get context-dependent Golomb code, decode it and update context. More...
 
static int ls_get_code_runterm (GetBitContext *gb, JLSState *state, int RItype, int limit_add)
 Get Golomb code, decode it and update state for run termination. More...
 
static int ls_decode_line (JLSState *state, MJpegDecodeContext *s, void *last, void *dst, int last2, int w, int stride, int comp, int bits)
 Decode one line of image. More...
 
int ff_jpegls_decode_picture (MJpegDecodeContext *s, int near, int point_transform, int ilv)
 

Variables

const FFCodec ff_jpegls_decoder
 

Detailed Description

JPEG-LS decoder.

Definition in file jpeglsdec.c.

Function Documentation

◆ ff_jpegls_decode_lse()

int ff_jpegls_decode_lse ( MJpegDecodeContext s)

Decode LSE block with initialization parameters.

Definition at line 51 of file jpeglsdec.c.

Referenced by ff_mjpeg_decode_frame_from_buf().

◆ ls_get_code_regular()

static int ls_get_code_regular ( GetBitContext gb,
JLSState state,
int  Q 
)
inlinestatic

Get context-dependent Golomb code, decode it and update context.

Definition at line 153 of file jpeglsdec.c.

Referenced by ls_decode_line().

◆ ls_get_code_runterm()

static int ls_get_code_runterm ( GetBitContext gb,
JLSState state,
int  RItype,
int  limit_add 
)
inlinestatic

Get Golomb code, decode it and update state for run termination.

Definition at line 184 of file jpeglsdec.c.

Referenced by ls_decode_line().

◆ ls_decode_line()

static int ls_decode_line ( JLSState state,
MJpegDecodeContext s,
void *  last,
void *  dst,
int  last2,
int  w,
int  stride,
int  comp,
int  bits 
)
inlinestatic

Decode one line of image.

Definition at line 232 of file jpeglsdec.c.

Referenced by ff_jpegls_decode_picture().

◆ ff_jpegls_decode_picture()

int ff_jpegls_decode_picture ( MJpegDecodeContext s,
int  near,
int  point_transform,
int  ilv 
)

Definition at line 355 of file jpeglsdec.c.

Referenced by ff_mjpeg_decode_sos().

Variable Documentation

◆ ff_jpegls_decoder

const FFCodec ff_jpegls_decoder
Initial value:
= {
.p.name = "jpegls",
CODEC_LONG_NAME("JPEG-LS"),
.p.type = AVMEDIA_TYPE_VIDEO,
.priv_data_size = sizeof(MJpegDecodeContext),
.p.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
}

Definition at line 567 of file jpeglsdec.c.

FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
ff_mjpeg_decode_init
av_cold int ff_mjpeg_decode_init(AVCodecContext *avctx)
Definition: mjpegdec.c:124
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:286
ff_mjpeg_decode_end
av_cold int ff_mjpeg_decode_end(AVCodecContext *avctx)
Definition: mjpegdec.c:2936
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:271
MJpegDecodeContext
Definition: mjpegdec.h:54
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:366
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
ff_mjpeg_decode_frame
int ff_mjpeg_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
Definition: mjpegdec.c:2926
AV_CODEC_ID_JPEGLS
@ AV_CODEC_ID_JPEGLS
Definition: codec_id.h:63
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201