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>
30 #include "libavutil/intreadwrite.h"
33 #define DIRAC_PARSE_INFO_PREFIX 0x42424344
36 * Finds the end of the current frame in the bitstream.
37 * @return the position of the first byte of the next frame or -1
39 typedef struct DiracParseContext
{
43 int header_bytes_needed
;
52 static int find_frame_end(DiracParseContext
*pc
,
53 const uint8_t *buf
, int buf_size
)
55 uint32_t state
= pc
->state
;
59 for (i
= 0; i
< buf_size
; i
++) {
60 state
= (state
<< 8) | buf
[i
];
61 if (state
== DIRAC_PARSE_INFO_PREFIX
) {
64 pc
->header_bytes_needed
= 9;
73 for (; i
< buf_size
; i
++) {
74 if (state
== DIRAC_PARSE_INFO_PREFIX
) {
75 if ((buf_size
-i
) >= pc
->header_bytes_needed
) {
77 return i
+ pc
->header_bytes_needed
;
79 pc
->header_bytes_needed
= 9-(buf_size
-i
);
83 state
= (state
<< 8) | buf
[i
];
90 typedef struct DiracParseUnit
97 static int unpack_parse_unit(DiracParseUnit
*pu
, DiracParseContext
*pc
,
100 uint8_t *start
= pc
->buffer
+ offset
;
101 uint8_t *end
= pc
->buffer
+ pc
->index
;
102 if (start
< pc
->buffer
|| (start
+13 > end
))
104 pu
->pu_type
= start
[4];
106 pu
->next_pu_offset
= AV_RB32(start
+5);
107 pu
->prev_pu_offset
= AV_RB32(start
+9);
109 if (pu
->pu_type
== 0x10 && pu
->next_pu_offset
== 0)
110 pu
->next_pu_offset
= 13;
115 static int dirac_combine_frame(AVCodecParserContext
*s
, AVCodecContext
*avctx
,
116 int next
, const uint8_t **buf
, int *buf_size
)
118 int parse_timing_info
= (s
->pts
== AV_NOPTS_VALUE
&&
119 s
->dts
== AV_NOPTS_VALUE
);
120 DiracParseContext
*pc
= s
->priv_data
;
122 if (pc
->overread_index
) {
123 memcpy(pc
->buffer
, pc
->buffer
+ pc
->overread_index
,
124 pc
->index
- pc
->overread_index
);
125 pc
->index
-= pc
->overread_index
;
126 pc
->overread_index
= 0;
127 if (*buf_size
== 0 && pc
->buffer
[4] == 0x10) {
129 *buf_size
= pc
->index
;
135 /* Found a possible frame start but not a frame end */
136 void *new_buffer
= av_fast_realloc(pc
->buffer
, &pc
->buffer_size
,
137 pc
->index
+ (*buf_size
-
139 pc
->buffer
= new_buffer
;
140 memcpy(pc
->buffer
+pc
->index
, (*buf
+ pc
->sync_offset
),
141 *buf_size
- pc
->sync_offset
);
142 pc
->index
+= *buf_size
- pc
->sync_offset
;
145 /* Found a possible frame start and a possible frame end */
146 DiracParseUnit pu1
, pu
;
147 void *new_buffer
= av_fast_realloc(pc
->buffer
, &pc
->buffer_size
,
149 pc
->buffer
= new_buffer
;
150 memcpy(pc
->buffer
+ pc
->index
, *buf
, next
);
153 /* Need to check if we have a valid Parse Unit. We can't go by the
154 * sync pattern 'BBCD' alone because arithmetic coding of the residual
155 * and motion data can cause the pattern triggering a false start of
156 * frame. So check if the previous parse offset of the next parse unit
157 * is equal to the next parse offset of the current parse unit then
158 * we can be pretty sure that we have a valid parse unit */
159 if (!unpack_parse_unit(&pu1
, pc
, pc
->index
- 13) ||
160 !unpack_parse_unit(&pu
, pc
, pc
->index
- 13 - pu1
.prev_pu_offset
) ||
161 pu
.next_pu_offset
!= pu1
.prev_pu_offset
) {
164 pc
->header_bytes_needed
= 9;
168 /* All non-frame data must be accompanied by frame data. This is to
169 * ensure that pts is set correctly. So if the current parse unit is
170 * not frame data, wait for frame data to come along */
172 pc
->dirac_unit
= pc
->buffer
+ pc
->index
- 13 -
173 pu1
.prev_pu_offset
- pc
->dirac_unit_size
;
175 pc
->dirac_unit_size
+= pu
.next_pu_offset
;
177 if ((pu
.pu_type
&0x08) != 0x08) {
178 pc
->header_bytes_needed
= 9;
183 /* Get the picture number to set the pts and dts*/
184 if (parse_timing_info
) {
185 uint8_t *cur_pu
= pc
->buffer
+
186 pc
->index
- 13 - pu1
.prev_pu_offset
;
187 int pts
= AV_RB32(cur_pu
+ 13);
188 if (s
->last_pts
== 0 && s
->last_dts
== 0)
191 s
->dts
= s
->last_dts
+1;
193 if (!avctx
->has_b_frames
&& (cur_pu
[4] & 0x03))
194 avctx
->has_b_frames
= 1;
196 if (avctx
->has_b_frames
&& s
->pts
== s
->dts
)
197 s
->pict_type
= FF_B_TYPE
;
199 /* Finally have a complete Dirac data unit */
200 *buf
= pc
->dirac_unit
;
201 *buf_size
= pc
->dirac_unit_size
;
203 pc
->dirac_unit_size
= 0;
204 pc
->overread_index
= pc
->index
-13;
205 pc
->header_bytes_needed
= 9;
210 static int dirac_parse(AVCodecParserContext
*s
, AVCodecContext
*avctx
,
211 const uint8_t **poutbuf
, int *poutbuf_size
,
212 const uint8_t *buf
, int buf_size
)
214 DiracParseContext
*pc
= s
->priv_data
;
220 if (s
->flags
& PARSER_FLAG_COMPLETE_FRAMES
) {
223 *poutbuf_size
= buf_size
;
224 /* Assume that data has been packetized into an encapsulation unit. */
226 next
= find_frame_end(pc
, buf
, buf_size
);
227 if (!pc
->is_synced
&& next
== -1) {
228 /* No frame start found yet. So throw away the entire buffer. */
232 if (dirac_combine_frame(s
, avctx
, next
, &buf
, &buf_size
) < 0) {
238 *poutbuf_size
= buf_size
;
242 static void dirac_parse_close(AVCodecParserContext
*s
)
244 DiracParseContext
*pc
= s
->priv_data
;
246 if (pc
->buffer_size
> 0)
250 AVCodecParser dirac_parser
= {
252 sizeof(DiracParseContext
),