68 const int linesize = frame->
linesize[0];
70 int left[4], top[4], topleft[4];
73 #if FF_API_PRIVATE_OPT
80 for (i = 0; i < 4; i++)
81 buffer[0][i] = 1 << (9 - 1);
83 for (y = 0; y <
height; y++) {
84 const int modified_predictor = y ? s->
pred : 1;
92 for (i = 0; i < 4; i++)
93 top[i]= left[i]= topleft[i]=
buffer[0][i];
95 for (x = 0; x <
width; x++) {
97 buffer[x][1] = ptr[3 * x + 0] - ptr[3 * x + 1] + 0x100;
98 buffer[x][2] = ptr[3 * x + 2] - ptr[3 * x + 1] + 0x100;
99 buffer[x][0] = (ptr[3 * x + 0] + 2 * ptr[3 * x + 1] + ptr[3 * x + 2]) >> 2;
101 buffer[x][1] = ptr[4 * x + 0] - ptr[4 * x + 1] + 0x100;
102 buffer[x][2] = ptr[4 * x + 2] - ptr[4 * x + 1] + 0x100;
103 buffer[x][0] = (ptr[4 * x + 0] + 2 * ptr[4 * x + 1] + ptr[4 * x + 2]) >> 2;
105 buffer[x][3] = ptr[4 * x + 3];
111 PREDICT(pred, topleft[i], top[i], left[i], modified_predictor);
118 diff = ((left[i] - pred + 0x100) & 0x1FF) - 0x100;
120 if (i == 0 || i == 3)
137 if (mb_x == 0 || mb_y == 0) {
138 for (i = 0; i < 3; i++) {
140 int x, y,
h, v, linesize;
145 for (y = 0; y < v; y++) {
146 for (x = 0; x <
h; x++) {
149 ptr = frame->
data[i] + (linesize * (v * mb_y + y)) + (h * mb_x + x);
150 if (y == 0 && mb_y == 0) {
151 if (x == 0 && mb_x == 0)
156 if (x == 0 && mb_x == 0) {
157 pred = ptr[-linesize];
159 PREDICT(pred, ptr[-linesize - 1], ptr[-linesize],
172 for (i = 0; i < 3; i++) {
174 int x, y,
h, v, linesize;
179 for (y = 0; y < v; y++) {
180 for (x = 0; x <
h; x++) {
183 ptr = frame->
data[i] + (linesize * (v * mb_y + y)) + (h * mb_x + x);
184 PREDICT(pred, ptr[-linesize - 1], ptr[-linesize], ptr[-1], predictor);
204 #if FF_API_PRIVATE_OPT
211 for (mb_y = 0; mb_y < mb_height; mb_y++) {
218 for (mb_x = 0; mb_x < mb_width; mb_x++)
226 const AVFrame *pict,
int *got_packet)
233 const int mb_height = (height + s->
vsample[0] - 1) / s->
vsample[0];
235 int ret, header_bits;
239 max_pkt_size += width * height * 3 * 4;
241 max_pkt_size += width * height * 4 * 4;
243 max_pkt_size += mb_width * mb_height * 3 * 4
298 "Limited range YUV is non-standard, set strict_std_compliance to "
299 "at least unofficial to use it.\n");
303 #if FF_API_CODED_FRAME
335 #define OFFSET(x) offsetof(LJpegEncContext, x)
336 #define VE AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_ENCODING_PARAM
359 .priv_class = &ljpeg_class,
This structure describes decoded (raw) audio or video data.
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
#define LIBAVUTIL_VERSION_INT
Memory handling functions.
static av_cold int init(AVCodecContext *avctx)
enum AVColorRange color_range
MPEG vs JPEG YUV range.
void ff_mjpeg_init_hvsample(AVCodecContext *avctx, int hsample[4], int vsample[4])
const char * av_default_item_name(void *ptr)
Return the context name.
static const AVClass ljpeg_class
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
MJPEG encoder and decoder.
#define AV_CODEC_CAP_INTRA_ONLY
Codec is intra only.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
uint8_t huff_size_dc_chrominance[12]
int ff_alloc_packet2(AVCodecContext *avctx, AVPacket *avpkt, int64_t size, int64_t min_size)
Check AVPacket size and/or allocate data.
void ff_mjpeg_build_huffman_codes(uint8_t *huff_size, uint16_t *huff_code, const uint8_t *bits_table, const uint8_t *val_table)
const uint8_t avpriv_mjpeg_bits_dc_luminance[17]
planar YUV 4:2:2, 16bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV422P and setting col...
#define AV_INPUT_BUFFER_MIN_SIZE
minimum encoding buffer size Used to avoid some checks during header writing.
#define FF_COMPLIANCE_UNOFFICIAL
Allow unofficial extensions.
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
#define PREDICT(ret, topleft, top, left, predictor)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static uint8_t * put_bits_ptr(PutBitContext *s)
Return the pointer to the byte where the bitstream writer will put the next bit.
const uint8_t avpriv_mjpeg_bits_dc_chrominance[17]
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
packed BGRA 8:8:8:8, 32bpp, BGRABGRA...
const char * name
Name of the codec implementation.
void ff_mjpeg_encode_picture_trailer(PutBitContext *pb, int header_bits)
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
int flags
A combination of AV_PKT_FLAG values.
reference-counted frame API
static int put_bits_count(PutBitContext *s)
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
static int ljpeg_encode_frame(AVCodecContext *avctx, AVPacket *pkt, const AVFrame *pict, int *got_packet)
enum AVPictureType pict_type
Picture type of the frame.
static av_cold int ljpeg_encode_init(AVCodecContext *avctx)
planar YUV 4:2:0, 12bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV420P and setting col...
int width
picture width / height.
static av_cold int ljpeg_encode_close(AVCodecContext *avctx)
uint16_t huff_code_dc_chrominance[12]
void ff_mjpeg_escape_FF(PutBitContext *pb, int start)
uint8_t idct_permutation[64]
IDCT input permutation.
packed RGB 8:8:8, 24bpp, BGRBGR...
static const float pred[4]
void ff_mjpeg_encode_dc(PutBitContext *pb, int val, uint8_t *huff_size, uint16_t *huff_code)
Libavcodec external API header.
attribute_deprecated int prediction_method
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
main external API structure.
const uint8_t avpriv_mjpeg_val_dc[12]
Describe the class of an AVClass context structure.
const uint8_t ff_zigzag_direct[64]
packed BGR 8:8:8, 32bpp, BGRXBGRX... X=unused/undefined
void ff_mjpeg_encode_picture_header(AVCodecContext *avctx, PutBitContext *pb, ScanTable *intra_scantable, int pred, uint16_t luma_intra_matrix[64], uint16_t chroma_intra_matrix[64])
static enum AVPixelFormat pix_fmts[]
static int ljpeg_encode_yuv(AVCodecContext *avctx, PutBitContext *pb, const AVFrame *frame)
static int ljpeg_encode_bgr(AVCodecContext *avctx, PutBitContext *pb, const AVFrame *frame)
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
the normal 219*2^(n-8) "MPEG" YUV ranges
uint16_t huff_code_dc_luminance[12]
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
#define FF_DISABLE_DEPRECATION_WARNINGS
common internal api header.
static void flush_put_bits(PutBitContext *s)
Pad the end of the output stream with zeros.
uint8_t huff_size_dc_luminance[12]
planar YUV 4:4:4, 24bpp, full scale (JPEG), deprecated in favor of AV_PIX_FMT_YUV444P and setting col...
attribute_deprecated AVFrame * coded_frame
the picture in the bitstream
static void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_size)
Initialize the PutBitContext s.
static av_always_inline int diff(const uint32_t a, const uint32_t b)
av_cold void ff_init_scantable(uint8_t *permutation, ScanTable *st, const uint8_t *src_scantable)
static void ljpeg_encode_yuv_mb(LJpegEncContext *s, PutBitContext *pb, const AVFrame *frame, int predictor, int mb_x, int mb_y)
av_cold void ff_idctdsp_init(IDCTDSPContext *c, AVCodecContext *avctx)
#define FF_ENABLE_DEPRECATION_WARNINGS
int key_frame
1 -> keyframe, 0-> not
#define av_malloc_array(a, b)
AVPixelFormat
Pixel format.
This structure stores compressed data.
int strict_std_compliance
strictly follow the standard (MPEG-4, ...).
static const AVOption options[]