FFmpeg
Macros | Functions
rtjpeg.c File Reference
#include "libavutil/common.h"
#include "get_bits.h"
#include "rtjpeg.h"

Go to the source code of this file.

Macros

#define PUT_COEFF(c)
 
#define ALIGN(a)
 aligns the bitstream to the given power of two More...
 
#define BLOCK(quant, dst, stride)
 

Functions

static int get_block (GetBitContext *gb, int16_t *block, const uint8_t *scan, const uint32_t *quant)
 read one block from stream More...
 
int ff_rtjpeg_decode_frame_yuv420 (RTJpegContext *c, AVFrame *f, const uint8_t *buf, int buf_size)
 decode one rtjpeg YUV420 frame More...
 
void ff_rtjpeg_decode_init (RTJpegContext *c, int width, int height, const uint32_t *lquant, const uint32_t *cquant)
 initialize an RTJpegContext, may be called multiple times More...
 
void ff_rtjpeg_init (RTJpegContext *c, struct AVCodecContext *avctx)
 

Macro Definition Documentation

◆ PUT_COEFF

#define PUT_COEFF (   c)
Value:
i = scan[coeff--]; \
block[i] = (c) * quant[i];

Definition at line 25 of file rtjpeg.c.

◆ ALIGN

#define ALIGN (   a)
Value:
n = (-get_bits_count(gb)) & (a - 1); \
if (n) {skip_bits(gb, n);}

aligns the bitstream to the given power of two

Definition at line 30 of file rtjpeg.c.

◆ BLOCK

#define BLOCK (   quant,
  dst,
  stride 
)
Value:
do { \
int res = get_block(&gb, block, c->scan, quant); \
if (res < 0) \
return res; \
if (res > 0) \
c->idsp.idct_put(dst, stride, block); \
} while (0)

Function Documentation

◆ get_block()

static int get_block ( GetBitContext gb,
int16_t *  block,
const uint8_t *  scan,
const uint32_t *  quant 
)
inlinestatic

read one block from stream

Parameters
gbcontains stream data
blockwhere data is written to
scanarray containing the mapping stream address -> block position
quantquantization factors
Returns
0 means the block is not coded, < 0 means an error occurred.

Note: GetBitContext is used to make the code simpler, since all data is aligned this could be done faster in a different way, e.g. as it is done in MPlayer libmpcodecs/native/rtjpegn.c.

Definition at line 46 of file rtjpeg.c.

◆ ff_rtjpeg_decode_frame_yuv420()

int ff_rtjpeg_decode_frame_yuv420 ( RTJpegContext c,
AVFrame f,
const uint8_t *  buf,
int  buf_size 
)

decode one rtjpeg YUV420 frame

Parameters
ccontext, must be initialized via ff_rtjpeg_decode_init
fAVFrame to place decoded frame into. If parts of the frame are not coded they are left unchanged, so consider initializing it
bufbuffer containing input data
buf_sizelength of input data in bytes
Returns
number of bytes consumed from the input buffer

Definition at line 106 of file rtjpeg.c.

Referenced by decode_frame().

◆ ff_rtjpeg_decode_init()

void ff_rtjpeg_decode_init ( RTJpegContext c,
int  width,
int  height,
const uint32_t *  lquant,
const uint32_t *  cquant 
)

initialize an RTJpegContext, may be called multiple times

Parameters
ccontext to initialize
widthwidth of image, will be rounded down to the nearest multiple of 16 for decoding
heightheight of image, will be rounded down to the nearest multiple of 16 for decoding
lquantluma quantization table to use
cquantchroma quantization table to use

Definition at line 158 of file rtjpeg.c.

Referenced by codec_reinit(), and decode_frame().

◆ ff_rtjpeg_init()

void ff_rtjpeg_init ( RTJpegContext c,
struct AVCodecContext avctx 
)

Definition at line 170 of file rtjpeg.c.

Referenced by decode_init().

get_bits_count
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:266
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:381
quant
static const uint8_t quant[64]
Definition: vmixdec.c:71
c
Undefined Behavior In the C some operations are like signed integer dereferencing freed accessing outside allocated Undefined Behavior must not occur in a C it is not safe even if the output of undefined operations is unused The unsafety may seem nit picking but Optimizing compilers have in fact optimized code on the assumption that no undefined Behavior occurs Optimizing code based on wrong assumptions can and has in some cases lead to effects beyond the output of computations The signed integer overflow problem in speed critical code Code which is highly optimized and works with signed integers sometimes has the problem that often the output of the computation does not c
Definition: undefined.txt:32
a
The reader does not expect b to be semantically here and if the code is changed by maybe adding a a division or other the signedness will almost certainly be mistaken To avoid this confusion a new type was SUINT is the C unsigned type but it holds a signed int to use the same example SUINT a
Definition: undefined.txt:41
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:255
stride
#define stride
Definition: h264pred_template.c:537
get_block
static int get_block(GetBitContext *gb, int16_t *block, const uint8_t *scan, const uint32_t *quant)
read one block from stream
Definition: rtjpeg.c:46
block
The exact code depends on how similar the blocks are and how related they are to the block
Definition: filter_design.txt:207
coeff
static const double coeff[2][5]
Definition: vf_owdenoise.c:79