54 for (i = 0; i < 2; ++i)
80 const uint8_t *buf_ptr,
int buf_size)
92 const uint8_t *buf_ptr,
int buf_size)
94 unsigned bitmask_size, mb_count;
101 bitmask_size = (mb_count + 7) >> 3;
102 if (bitmask_size > buf_size - 12) {
104 "MXM bitmask is not complete\n");
114 "MXM bitmask memory allocation error\n");
122 "Completion bitmask memory allocation error\n");
129 memcpy(s->
mxm_bitmask, buf_ptr + 12, bitmask_size);
133 uint8_t completion_check = 0xFF;
134 for (i = 0; i < bitmask_size; ++i) {
145 const uint8_t *buf_ptr,
int buf_size)
151 if (len > 14 && len <= buf_size && !strncmp(buf_ptr + 2,
"MXM", 3)) {
165 "Picture dimensions stored in SOF and MXM mismatch\n");
169 if (reference_ptr->
data[0]) {
175 "Dimensions of current and reference picture mismatch\n");
185 void *
data,
int *got_frame,
189 int buf_size = avpkt->
size;
192 const uint8_t *buf_end, *buf_ptr;
193 const uint8_t *unescaped_buf_ptr;
194 int unescaped_buf_size;
199 buf_end = buf + buf_size;
202 while (buf_ptr < buf_end) {
204 &unescaped_buf_ptr, &unescaped_buf_size);
210 if (start_code >=
APP0 && start_code <=
APP15) {
214 switch (start_code) {
225 "quantization table decode error\n");
233 "huffman table decode error\n");
248 "SOF data decode error\n");
253 "Interlaced mode not supported in MxPEG\n");
261 "Can not process SOS without SOF data, skipping\n");
267 "First picture has no SOF, skipping\n");
272 "Non-key frame has no MXM, skipping\n");
294 if (!reference_ptr->
data[0] &&
334 return buf_ptr -
buf;
uint8_t * completion_bitmask
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
#define AV_LOG_WARNING
Something somehow does not look correct.
static av_cold int init(AVCodecContext *avctx)
int ff_mjpeg_decode_dqt(MJpegDecodeContext *s)
static int mxpeg_check_dimensions(MXpegDecodeContext *s, MJpegDecodeContext *jpg, AVFrame *reference_ptr)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
int ff_mjpeg_decode_dht(MJpegDecodeContext *s)
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
MJPEG encoder and decoder.
static int mxpeg_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
static int get_bits_count(const GetBitContext *s)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static int mxpeg_decode_mxm(MXpegDecodeContext *s, const uint8_t *buf_ptr, int buf_size)
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
av_cold int ff_mjpeg_decode_end(AVCodecContext *avctx)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
const char * name
Name of the codec implementation.
int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
enum AVPictureType pict_type
Picture type of the frame.
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
#define AV_EF_EXPLODE
abort decoding on minor error detection
static av_cold int mxpeg_decode_init(AVCodecContext *avctx)
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
main external API structure.
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
static void skip_bits(GetBitContext *s, int n)
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
static const uint8_t start_code[]
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static int mxpeg_decode_com(MXpegDecodeContext *s, const uint8_t *buf_ptr, int buf_size)
int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask, int mb_bitmask_size, const AVFrame *reference)
av_cold int ff_mjpeg_decode_init(AVCodecContext *avctx)
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
common internal api header.
static av_cold int mxpeg_decode_end(AVCodecContext *avctx)
static int mxpeg_decode_app(MXpegDecodeContext *s, const uint8_t *buf_ptr, int buf_size)
int got_picture
we found a SOF and picture is valid, too.
int key_frame
1 -> keyframe, 0-> not
int ff_mjpeg_find_marker(MJpegDecodeContext *s, const uint8_t **buf_ptr, const uint8_t *buf_end, const uint8_t **unescaped_buf_ptr, int *unescaped_buf_size)
This structure stores compressed data.
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.