Go to the documentation of this file.
28 #define UNCHECKED_BITSTREAM_READER 1
53 bytestream2_put_byteu(pb, 0xff);
54 bytestream2_put_byteu(pb,
code);
67 for (k = 0; (
state->N[Q] << k) <
state->A[Q]; k++)
74 if (err >= (
state->range + 1 >> 1)) {
89 int RItype,
int err,
int limit_add)
99 for (k = 0; (
state->N[Q] << k) <
temp; k++)
102 if (!k && err && (2 *
state->B[Q] <
state->N[Q]))
106 val = -(2 * err) - 1 - RItype +
map;
108 val = 2 * err - RItype -
map;
113 state->A[Q] += (
val + 1 - RItype) >> 1;
144 void *
tmp,
const void *in,
int last2,
int w,
148 int Ra =
R(
tmp, 0), Rb, Rc = last2, Rd;
165 int RUNval, RItype,
run;
169 while (x <
w && (
FFABS(
R(in, x) - RUNval) <=
state->near)) {
179 pred = RItype ? Ra : Rb;
180 err =
R(in, x) -
pred;
182 if (!RItype && Ra > Rb)
191 if (RItype || (Rb >= Ra))
201 if (err >=
state->range + 1 >> 1)
221 err =
pred -
R(in, x);
225 err =
R(in, x) -
pred;
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);
272 const AVFrame *pict,
int *got_packet)
280 uint8_t *last =
NULL;
283 int i,
ret, size_in_bits;
313 int last0 = *((uint16_t *)last);
320 int Rc[3] = { 0, 0, 0 };
324 for (j = 0; j < 3; j++) {
334 int Rc[3] = { 0, 0, 0 };
338 for (j = 2; j >= 0; j--) {
363 size = size_in_bits * 2
U / 15;
364 size += 2 + 2 + 2 + 1 + 2 + 2 + 1 + comps * (1 + 1 + 1) + 2 + 2 + 1
365 + comps * (1 + 1) + 1 + 1 + 1;
366 size += 2 + 2 + 1 + 2 + 2 + 2 + 2 + 2;
376 bytestream2_put_be16u(&pb, 8 + comps * 3);
378 bytestream2_put_be16u(&pb, avctx->
height);
379 bytestream2_put_be16u(&pb, avctx->
width);
380 bytestream2_put_byteu(&pb, comps);
381 for (
i = 1;
i <= comps;
i++) {
382 bytestream2_put_byteu(&pb,
i);
383 bytestream2_put_byteu(&pb, 0x11);
384 bytestream2_put_byteu(&pb, 0);
388 bytestream2_put_be16u(&pb, 6 + comps * 2);
389 bytestream2_put_byteu(&pb, comps);
390 for (
i = 1;
i <= comps;
i++) {
391 bytestream2_put_byteu(&pb,
i);
392 bytestream2_put_byteu(&pb, 0);
394 bytestream2_put_byteu(&pb,
ctx->pred);
395 bytestream2_put_byteu(&pb, (comps > 1) ? 1 : 0);
396 bytestream2_put_byteu(&pb, 0);
406 bytestream2_put_byteu(&pb, v);
409 bytestream2_put_byteu(&pb, v);
456 #define OFFSET(x) offsetof(JPEGLSContext, x)
457 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
AVPixelFormat
Pixel format.
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
static av_cold int encode_jpegls_close(AVCodecContext *avctx)
static void comp(unsigned char *dst, ptrdiff_t dst_stride, unsigned char *src, ptrdiff_t src_stride, int add)
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
static int get_bits_count(const GetBitContext *s)
This structure describes decoded (raw) audio or video data.
static void put_bits(Jpeg2000EncoderContext *s, int val, int n)
put n times val bit
static int put_bytes_count(const PutBitContext *s, int round_up)
static void ls_encode_run(JLSState *state, PutBitContext *pb, int run, int comp, int trail)
Encode run value as specified by JPEG-LS standard.
static void set_ur_golomb_jpegls(PutBitContext *pb, int i, int k, int limit, int esc_len)
write unsigned golomb rice code (jpegls).
static av_always_inline int bytestream2_tell_p(PutByteContext *p)
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
static av_cold int encode_jpegls_init(AVCodecContext *avctx)
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
AVCodec p
The public AVCodec.
void av_shrink_packet(AVPacket *pkt, int size)
Reduce packet size, correctly zeroing padding.
static double val(void *priv, double ch)
#define AV_PIX_FMT_GRAY16
#define FF_CODEC_ENCODE_CB(func)
exp golomb vlc writing stuff
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static av_always_inline void bytestream2_init_writer(PutByteContext *p, uint8_t *buf, int buf_size)
#define AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE
This encoder can reorder user opaque values from input AVFrames and return them with corresponding ou...
#define AV_INPUT_BUFFER_MIN_SIZE
const FFCodec ff_jpegls_encoder
#define CODEC_LONG_NAME(str)
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
static void ls_encode_line(JLSState *state, PutBitContext *pb, void *tmp, const void *in, int last2, int w, int stride, int comp, int bits)
Encode one line of image.
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option keep it simple and lowercase description are in without and describe what they for example set the foo of the bar offset is the offset of the field in your context
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
static void ff_jpegls_downscale_state(JLSState *state, int Q)
#define LIBAVUTIL_VERSION_INT
Describe the class of an AVClass context structure.
static void put_marker_byteu(PutByteContext *pb, enum JpegMarker code)
const char * av_default_item_name(void *ptr)
Return the context name.
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
static int ff_jpegls_quantize(JLSState *s, int v)
Calculate quantized gradient value, used for context determination.
#define i(width, name, range_min, range_max)
and forward the test the status of outputs and forward it to the corresponding return FFERROR_NOT_READY If the filters stores internally one or a few frame for some it can consider them to be part of the FIFO and delay acknowledging a status change accordingly Example code
void ff_jpegls_init_state(JLSState *state)
Calculate initial JPEG-LS parameters.
static int put_bits_count(PutBitContext *s)
static int ff_jpegls_update_state_regular(JLSState *state, int Q, int err)
void * av_mallocz(size_t size)
Allocate a memory block with alignment suitable for all memory accesses (including vectors if availab...
const char * name
Name of the codec implementation.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
static void ls_encode_regular(JLSState *state, PutBitContext *pb, int Q, int err)
Encode error from regular symbol.
static const AVOption options[]
static const float pred[4]
static void ls_encode_runterm(JLSState *state, PutBitContext *pb, int RItype, int err, int limit_add)
Encode error from run termination.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
@ LSE
JPEG-LS extension parameters.
void ff_jpegls_reset_coding_parameters(JLSState *s, int reset_all)
Calculate JPEG-LS codec values.
#define AV_INPUT_BUFFER_PADDING_SIZE
main external API structure.
int ff_get_encode_buffer(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int flags)
Get a buffer for a packet.
static void ls_store_lse(JLSState *state, PutByteContext *pb)
static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
static const AVClass jpegls_class
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
const VDPAUPixFmtMap * map
This structure stores compressed data.
int width
picture width / height.
const uint8_t ff_log2_run[41]
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...