4 * Copyright (c) 2007-2008 Marco Gerards <marco@gnu.org>
5 * Copyright (c) 2008 BBC, Anuradha Suraparaju <asuraparaju@gmail.com>
7 * This file is part of FFmpeg.
9 * FFmpeg is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * FFmpeg is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with FFmpeg; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27 * @author Marco Gerards <marco@gnu.org>
32 #include "libavutil/intreadwrite.h"
33 #include "libavutil/mem.h"
37 #define DIRAC_PARSE_INFO_PREFIX 0x42424344
40 * Find the end of the current frame in the bitstream.
41 * @return the position of the first byte of the next frame or -1
43 typedef struct DiracParseContext {
47 int header_bytes_needed;
56 static int find_frame_end(DiracParseContext *pc,
57 const uint8_t *buf, int buf_size)
59 uint32_t state = pc->state;
63 for (i = 0; i < buf_size; i++) {
64 state = (state << 8) | buf[i];
65 if (state == DIRAC_PARSE_INFO_PREFIX) {
68 pc->header_bytes_needed = 9;
77 for (; i < buf_size; i++) {
78 if (state == DIRAC_PARSE_INFO_PREFIX) {
79 if ((buf_size - i) >= pc->header_bytes_needed) {
81 return i + pc->header_bytes_needed;
83 pc->header_bytes_needed = 9 - (buf_size - i);
87 state = (state << 8) | buf[i];
94 typedef struct DiracParseUnit {
100 static int unpack_parse_unit(DiracParseUnit *pu, DiracParseContext *pc,
105 static const uint8_t valid_pu_types[] = {
106 0x00, 0x10, 0x20, 0x30, 0x08, 0x48, 0xC8, 0xE8, 0x0A, 0x0C, 0x0D, 0x0E,
107 0x4C, 0x09, 0xCC, 0x88, 0xCB
110 if (offset < 0 || pc->index - 13 < offset)
113 start = pc->buffer + offset;
114 pu->pu_type = start[4];
116 pu->next_pu_offset = AV_RB32(start + 5);
117 pu->prev_pu_offset = AV_RB32(start + 9);
119 /* Check for valid parse code */
120 for (i = 0; i < 17; i++)
121 if (valid_pu_types[i] == pu->pu_type)
126 if (pu->pu_type == 0x10 && pu->next_pu_offset == 0x00)
127 pu->next_pu_offset = 13; /* The length of a parse info header */
129 /* Check if the parse offsets are somewhat sane */
130 if ((pu->next_pu_offset && pu->next_pu_offset < 13) ||
131 (pu->prev_pu_offset && pu->prev_pu_offset < 13))
137 static int dirac_combine_frame(AVCodecParserContext *s, AVCodecContext *avctx,
138 int next, const uint8_t **buf, int *buf_size)
140 int parse_timing_info = (s->pts == AV_NOPTS_VALUE &&
141 s->dts == AV_NOPTS_VALUE);
142 DiracParseContext *pc = s->priv_data;
144 if (pc->overread_index) {
145 memmove(pc->buffer, pc->buffer + pc->overread_index,
146 pc->index - pc->overread_index);
147 pc->index -= pc->overread_index;
148 pc->overread_index = 0;
149 if (*buf_size == 0 && pc->buffer[4] == 0x10) {
151 *buf_size = pc->index;
157 /* Found a possible frame start but not a frame end */
159 av_fast_realloc(pc->buffer, &pc->buffer_size,
160 pc->index + (*buf_size - pc->sync_offset));
162 return AVERROR(ENOMEM);
163 pc->buffer = new_buffer;
164 memcpy(pc->buffer + pc->index, (*buf + pc->sync_offset),
165 *buf_size - pc->sync_offset);
166 pc->index += *buf_size - pc->sync_offset;
169 /* Found a possible frame start and a possible frame end */
170 DiracParseUnit pu1, pu;
171 void *new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size,
174 return AVERROR(ENOMEM);
175 pc->buffer = new_buffer;
176 memcpy(pc->buffer + pc->index, *buf, next);
179 /* Need to check if we have a valid Parse Unit. We can't go by the
180 * sync pattern 'BBCD' alone because arithmetic coding of the residual
181 * and motion data can cause the pattern triggering a false start of
182 * frame. So check if the previous parse offset of the next parse unit
183 * is equal to the next parse offset of the current parse unit then
184 * we can be pretty sure that we have a valid parse unit */
185 if (!unpack_parse_unit(&pu1, pc, pc->index - 13) ||
186 !unpack_parse_unit(&pu, pc, pc->index - 13 - pu1.prev_pu_offset) ||
187 pu.next_pu_offset != pu1.prev_pu_offset ||
188 pc->index < pc->dirac_unit_size + 13LL + pu1.prev_pu_offset
191 *buf_size = next - 9;
192 pc->header_bytes_needed = 9;
196 /* All non-frame data must be accompanied by frame data. This is to
197 * ensure that pts is set correctly. So if the current parse unit is
198 * not frame data, wait for frame data to come along */
200 pc->dirac_unit = pc->buffer + pc->index - 13 -
201 pu1.prev_pu_offset - pc->dirac_unit_size;
203 pc->dirac_unit_size += pu.next_pu_offset;
205 if ((pu.pu_type & 0x08) != 0x08) {
206 pc->header_bytes_needed = 9;
211 /* Get the picture number to set the pts and dts*/
212 if (parse_timing_info && pu1.prev_pu_offset >= 13) {
213 uint8_t *cur_pu = pc->buffer +
214 pc->index - 13 - pu1.prev_pu_offset;
215 int pts = AV_RB32(cur_pu + 13);
216 if (s->last_pts == 0 && s->last_dts == 0)
219 s->dts = s->last_dts + 1;
221 if (!avctx->has_b_frames && (cur_pu[4] & 0x03))
222 avctx->has_b_frames = 1;
224 if (avctx->has_b_frames && s->pts == s->dts)
225 s->pict_type = AV_PICTURE_TYPE_B;
227 /* Finally have a complete Dirac data unit */
228 *buf = pc->dirac_unit;
229 *buf_size = pc->dirac_unit_size;
231 pc->dirac_unit_size = 0;
232 pc->overread_index = pc->index - 13;
233 pc->header_bytes_needed = 9;
238 static int dirac_parse(AVCodecParserContext *s, AVCodecContext *avctx,
239 const uint8_t **poutbuf, int *poutbuf_size,
240 const uint8_t *buf, int buf_size)
242 DiracParseContext *pc = s->priv_data;
248 if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) {
251 *poutbuf_size = buf_size;
252 /* Assume that data has been packetized into an encapsulation unit. */
254 next = find_frame_end(pc, buf, buf_size);
255 if (!pc->is_synced && next == -1)
256 /* No frame start found yet. So throw away the entire buffer. */
259 if (dirac_combine_frame(s, avctx, next, &buf, &buf_size) < 0)
264 *poutbuf_size = buf_size;
268 static void dirac_parse_close(AVCodecParserContext *s)
270 DiracParseContext *pc = s->priv_data;
272 if (pc->buffer_size > 0)
273 av_freep(&pc->buffer);
276 AVCodecParser ff_dirac_parser = {
277 .codec_ids = { AV_CODEC_ID_DIRAC },
278 .priv_data_size = sizeof(DiracParseContext),
279 .parser_parse = dirac_parse,
280 .parser_close = dirac_parse_close,