FFmpeg
mjpegbdec.c
Go to the documentation of this file.
1 /*
2  * Apple MJPEG-B decoder
3  * Copyright (c) 2002 Alex Beregszaszi
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 /**
23  * @file
24  * Apple MJPEG-B decoder.
25  */
26 
27 #include <inttypes.h>
28 
29 #include "avcodec.h"
30 #include "codec_internal.h"
31 #include "mjpeg.h"
32 #include "mjpegdec.h"
33 
34 static uint32_t read_offs(AVCodecContext *avctx, GetBitContext *gb, uint32_t size, const char *err_msg){
35  uint32_t offs= get_bits_long(gb, 32);
36  if(offs >= size){
37  av_log(avctx, AV_LOG_WARNING, err_msg, offs, size);
38  return 0;
39  }
40  return offs;
41 }
42 
43 static int mjpegb_decode_frame(AVCodecContext *avctx, AVFrame *rframe,
44  int *got_frame, AVPacket *avpkt)
45 {
46  const uint8_t *buf = avpkt->data;
47  int buf_size = avpkt->size;
48  MJpegDecodeContext *s = avctx->priv_data;
49  const uint8_t *buf_end, *buf_ptr;
50  GetBitContext hgb; /* for the header */
51  uint32_t dqt_offs, dht_offs, sof_offs, sos_offs, second_field_offs;
52  uint32_t field_size, sod_offs;
53  int ret;
54 
55  buf_ptr = buf;
56  buf_end = buf + buf_size;
57  s->got_picture = 0;
58  s->adobe_transform = -1;
59  s->buf_size = buf_size;
60 
62  /* reset on every SOI */
63  s->restart_interval = 0;
64  s->restart_count = 0;
65  s->mjpb_skiptosod = 0;
66 
67  if ((ret = init_get_bits8(&hgb, buf_ptr, /*buf_size*/(buf_end - buf_ptr))) < 0)
68  return ret;
69 
70  skip_bits(&hgb, 32); /* reserved zeros */
71 
72  if (get_bits_long(&hgb, 32) != MKBETAG('m','j','p','g')) {
73  av_log(avctx, AV_LOG_WARNING, "not mjpeg-b (bad fourcc)\n");
74  return AVERROR_INVALIDDATA;
75  }
76 
77  field_size = get_bits_long(&hgb, 32); /* field size */
78  av_log(avctx, AV_LOG_DEBUG, "field size: 0x%"PRIx32"\n", field_size);
79  skip_bits(&hgb, 32); /* padded field size */
80  second_field_offs = read_offs(avctx, &hgb, buf_end - buf_ptr, "second_field_offs is %d and size is %d\n");
81  av_log(avctx, AV_LOG_DEBUG, "second field offs: 0x%"PRIx32"\n",
82  second_field_offs);
83 
84  dqt_offs = read_offs(avctx, &hgb, buf_end - buf_ptr, "dqt is %d and size is %d\n");
85  av_log(avctx, AV_LOG_DEBUG, "dqt offs: 0x%"PRIx32"\n", dqt_offs);
86  if (dqt_offs) {
87  bytestream2_init(&s->gB, buf_ptr+dqt_offs, buf_end - (buf_ptr+dqt_offs));
89  if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
90  return ret;
91  }
92 
93  dht_offs = read_offs(avctx, &hgb, buf_end - buf_ptr, "dht is %d and size is %d\n");
94  av_log(avctx, AV_LOG_DEBUG, "dht offs: 0x%"PRIx32"\n", dht_offs);
95  if (dht_offs) {
96  bytestream2_init(&s->gB, buf_ptr+dht_offs, buf_end - (buf_ptr+dht_offs));
98  }
99 
100  sof_offs = read_offs(avctx, &hgb, buf_end - buf_ptr, "sof is %d and size is %d\n");
101  av_log(avctx, AV_LOG_DEBUG, "sof offs: 0x%"PRIx32"\n", sof_offs);
102  if (sof_offs) {
103  bytestream2_init(&s->gB, buf_ptr+sof_offs, buf_end - (buf_ptr+sof_offs));
104  if ((ret = ff_mjpeg_decode_sof(s)) < 0)
105  return ret;
106  }
107 
108  sos_offs = read_offs(avctx, &hgb, buf_end - buf_ptr, "sos is %d and size is %d\n");
109  av_log(avctx, AV_LOG_DEBUG, "sos offs: 0x%"PRIx32"\n", sos_offs);
110  sod_offs = read_offs(avctx, &hgb, buf_end - buf_ptr, "sof is %d and size is %d\n");
111  av_log(avctx, AV_LOG_DEBUG, "sod offs: 0x%"PRIx32"\n", sod_offs);
112  if (sos_offs) {
113  bytestream2_init(&s->gB, buf_ptr+sos_offs,
114  FFMIN(field_size, buf_end - buf_ptr - sos_offs));
115  s->mjpb_skiptosod = (sod_offs - sos_offs - bytestream2_peek_be16(&s->gB));
116  if (avctx->skip_frame == AVDISCARD_ALL) {
118  } else {
120  if (ret < 0 && (avctx->err_recognition & AV_EF_EXPLODE))
121  return ret;
122  }
123  }
124 
125  if (s->interlaced) {
126  s->bottom_field ^= 1;
127  /* if not bottom field, do not output image yet */
128  if (s->bottom_field != s->interlace_polarity && second_field_offs) {
129  buf_ptr = buf + second_field_offs;
130  goto read_header;
131  }
132  }
133 
134  //XXX FIXME factorize, this looks very similar to the EOI code
135 
136  if(!s->got_picture) {
137  av_log(avctx, AV_LOG_WARNING, "no picture\n");
138  return buf_size;
139  }
140  av_frame_move_ref(rframe, s->picture_ptr);
141  s->got_picture = 0;
142  if (avctx->skip_frame == AVDISCARD_ALL)
143  return buf_size;
144  *got_frame = 1;
145 
146  if (!s->lossless && avctx->debug & FF_DEBUG_QP) {
147  av_log(avctx, AV_LOG_DEBUG, "QP: %d\n",
148  FFMAX3(s->qscale[0], s->qscale[1], s->qscale[2]));
149  }
150 
151  return buf_size;
152 }
153 
155  .p.name = "mjpegb",
156  CODEC_LONG_NAME("Apple MJPEG-B"),
157  .p.type = AVMEDIA_TYPE_VIDEO,
158  .p.id = AV_CODEC_ID_MJPEGB,
159  .priv_data_size = sizeof(MJpegDecodeContext),
163  .p.capabilities = AV_CODEC_CAP_DR1,
164  .p.max_lowres = 3,
165  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
166 };
167 
169  .p.name = "media100",
170  CODEC_LONG_NAME("Media 100"),
171  .p.type = AVMEDIA_TYPE_VIDEO,
172  .p.id = AV_CODEC_ID_MEDIA100,
173  .priv_data_size = sizeof(MJpegDecodeContext),
177  .p.capabilities = AV_CODEC_CAP_DR1,
178  .p.max_lowres = 3,
179  .caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
180  .bsfs = "media100_to_mjpegb",
181 };
AV_LOG_WARNING
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:216
mjpeg.h
AV_EF_EXPLODE
#define AV_EF_EXPLODE
abort decoding on minor error detection
Definition: defs.h:51
FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
bytestream2_get_bytes_left
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
Definition: bytestream.h:158
AVCodecContext::err_recognition
int err_recognition
Error recognition; may misdetect some more or less valid parts as errors.
Definition: avcodec.h:1406
get_bits_long
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:424
bytestream2_skipu
static av_always_inline void bytestream2_skipu(GetByteContext *g, unsigned int size)
Definition: bytestream.h:174
mjpegdec.h
AVFrame
This structure describes decoded (raw) audio or video data.
Definition: frame.h:427
AVPacket::data
uint8_t * data
Definition: packet.h:588
FFCodec
Definition: codec_internal.h:127
AV_CODEC_ID_MEDIA100
@ AV_CODEC_ID_MEDIA100
Definition: codec_id.h:322
skip_bits
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:383
close
static av_cold void close(AVCodecParserContext *s)
Definition: apv_parser.c:197
ff_mjpeg_decode_dht
int ff_mjpeg_decode_dht(MJpegDecodeContext *s)
Definition: mjpegdec.c:245
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
ff_mjpeg_decode_init
av_cold int ff_mjpeg_decode_init(AVCodecContext *avctx)
Definition: mjpegdec.c:120
AVCodecContext::skip_frame
enum AVDiscard skip_frame
Skip decoding for selected frames.
Definition: avcodec.h:1670
GetBitContext
Definition: get_bits.h:109
ff_media100_decoder
const FFCodec ff_media100_decoder
Definition: mjpegbdec.c:168
init_get_bits8
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
Definition: get_bits.h:544
ff_mjpegb_decoder
const FFCodec ff_mjpegb_decoder
Definition: mjpegbdec.c:154
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:347
s
#define s(width, name)
Definition: cbs_vp9.c:198
AV_LOG_DEBUG
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:231
ff_mjpeg_decode_end
av_cold int ff_mjpeg_decode_end(AVCodecContext *avctx)
Definition: mjpegdec.c:2894
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:332
AVDISCARD_ALL
@ AVDISCARD_ALL
discard all
Definition: defs.h:232
NULL
#define NULL
Definition: coverity.c:32
read_offs
static uint32_t read_offs(AVCodecContext *avctx, GetBitContext *gb, uint32_t size, const char *err_msg)
Definition: mjpegbdec.c:34
ff_mjpeg_decode_dqt
int ff_mjpeg_decode_dqt(MJpegDecodeContext *s)
Definition: mjpegdec.c:202
MJpegDecodeContext
Definition: mjpegdec.h:56
mjpegb_decode_frame
static int mjpegb_decode_frame(AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt)
Definition: mjpegbdec.c:43
AV_CODEC_ID_MJPEGB
@ AV_CODEC_ID_MJPEGB
Definition: codec_id.h:60
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:550
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
AVPacket::size
int size
Definition: packet.h:589
codec_internal.h
ff_mjpeg_decode_sos
int ff_mjpeg_decode_sos(MJpegDecodeContext *s, const uint8_t *mb_bitmask, int mb_bitmask_size, const AVFrame *reference)
Definition: mjpegdec.c:1678
size
int size
Definition: twinvq_data.h:10344
MKBETAG
#define MKBETAG(a, b, c, d)
Definition: macros.h:56
read_header
static int read_header(FFV1Context *f, RangeCoder *c)
Definition: ffv1dec.c:498
FFMIN
#define FFMIN(a, b)
Definition: macros.h:49
av_frame_move_ref
void av_frame_move_ref(AVFrame *dst, AVFrame *src)
Move everything contained in src to dst and reset src.
Definition: frame.c:523
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:179
avcodec.h
ret
ret
Definition: filter_design.txt:187
FF_DEBUG_QP
#define FF_DEBUG_QP
Definition: avcodec.h:1387
AVCodecContext
main external API structure.
Definition: avcodec.h:439
AVCodecContext::debug
int debug
debug
Definition: avcodec.h:1382
ff_mjpeg_decode_sof
int ff_mjpeg_decode_sof(MJpegDecodeContext *s)
Definition: mjpegdec.c:304
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:200
AVCodecContext::priv_data
void * priv_data
Definition: avcodec.h:466
AVPacket
This structure stores compressed data.
Definition: packet.h:565
FFMAX3
#define FFMAX3(a, b, c)
Definition: macros.h:48
bytestream2_init
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
Definition: bytestream.h:137
av_log
#define av_log(a,...)
Definition: tableprint_vlc.h:27
AVERROR_INVALIDDATA
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:61