Go to the documentation of this file.
44 void *
data,
int *got_frame,
47 const uint8_t *buf = avpkt->
data;
48 int buf_size = avpkt->
size;
50 const uint8_t *buf_end, *buf_ptr;
52 uint32_t dqt_offs, dht_offs, sof_offs, sos_offs, second_field_offs;
53 uint32_t field_size, sod_offs;
57 buf_end = buf + buf_size;
59 s->adobe_transform = -1;
60 s->buf_size = buf_size;
64 s->restart_interval = 0;
66 s->mjpb_skiptosod = 0;
68 if (buf_end - buf_ptr >= 1 << 28)
83 second_field_offs =
read_offs(avctx, &hgb, buf_end - buf_ptr,
"second_field_offs is %d and size is %d\n");
87 dqt_offs =
read_offs(avctx, &hgb, buf_end - buf_ptr,
"dqt is %d and size is %d\n");
90 init_get_bits(&
s->gb, buf_ptr+dqt_offs, (buf_end - (buf_ptr+dqt_offs))*8);
97 dht_offs =
read_offs(avctx, &hgb, buf_end - buf_ptr,
"dht is %d and size is %d\n");
100 init_get_bits(&
s->gb, buf_ptr+dht_offs, (buf_end - (buf_ptr+dht_offs))*8);
105 sof_offs =
read_offs(avctx, &hgb, buf_end - buf_ptr,
"sof is %d and size is %d\n");
108 init_get_bits(&
s->gb, buf_ptr+sof_offs, (buf_end - (buf_ptr+sof_offs))*8);
109 s->start_code =
SOF0;
114 sos_offs =
read_offs(avctx, &hgb, buf_end - buf_ptr,
"sos is %d and size is %d\n");
116 sod_offs =
read_offs(avctx, &hgb, buf_end - buf_ptr,
"sof is %d and size is %d\n");
120 8 *
FFMIN(field_size, buf_end - buf_ptr - sos_offs));
121 s->mjpb_skiptosod = (sod_offs - sos_offs -
show_bits(&
s->gb, 16));
133 s->bottom_field ^= 1;
135 if (
s->bottom_field !=
s->interlace_polarity && second_field_offs) {
136 buf_ptr = buf + second_field_offs;
143 if(!
s->got_picture) {
154 FFMAX3(
s->qscale[0],
s->qscale[1],
s->qscale[2]));
#define AV_LOG_WARNING
Something somehow does not look correct.
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
static int get_bits_left(GetBitContext *gb)
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
static void skip_bits(GetBitContext *s, int n)
int ff_mjpeg_decode_dht(MJpegDecodeContext *s)
const AVCodec ff_mjpegb_decoder
av_cold int ff_mjpeg_decode_init(AVCodecContext *avctx)
enum AVDiscard skip_frame
Skip decoding for selected frames.
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
av_cold int ff_mjpeg_decode_end(AVCodecContext *avctx)
@ AVDISCARD_ALL
discard all
static int read_header(FFV1Context *f)
static uint32_t read_offs(AVCodecContext *avctx, GetBitContext *gb, uint32_t size, const char *err_msg)
int ff_mjpeg_decode_dqt(MJpegDecodeContext *s)
static int mjpegb_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
#define AV_EF_EXPLODE
abort decoding on minor error detection
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask, int mb_bitmask_size, const AVFrame *reference)
#define MKBETAG(a, b, c, d)
static unsigned int show_bits(GetBitContext *s, int n)
Show 1-25 bits.
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
const char * name
Name of the codec implementation.
main external API structure.
int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
This structure stores compressed data.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.