1 /*
2 * Audio and Video frame extraction
3 * Copyright (c) 2003 Fabrice Bellard
4 * Copyright (c) 2003 Michael Niedermayer
5 *
6 * This file is part of FFmpeg.
7 *
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
12 *
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
23 #include <stdint.h>
24 #include <string.h>
25
29
32
34
36 {
37 if (p)
39 else
41 }
42
44 {
45 do {
48 }
49
51 {
55
58
59 for (parser = av_first_parser; parser; parser = parser->
next) {
65 goto found;
66 }
68
69 found:
71 if (!s)
72 goto err_out;
76 goto err_out;
81 if (ret != 0)
82 goto err_out;
83 }
90
92
93 err_out:
94 if (s)
98 }
99
101 {
102 int i;
103
104 if (!fuzzy) {
109 }
114 // check disabled since MPEG-TS does not send complete PES packets
116
122 }
123 if (remove)
125 if (s->
cur_offset + off < s->cur_frame_end[i])
126 break;
127 }
128 }
129 }
130
132 uint8_t **poutbuf,
int *poutbuf_size,
134 int64_t
pts, int64_t dts, int64_t pos)
135 {
138
143 }
144
145 if (buf_size == 0) {
146 /* padding is always necessary even if EOF, so we add it here */
147 memset(dummy_buf, 0, sizeof(dummy_buf));
148 buf = dummy_buf;
150 /* add a new packet descriptor */
158 }
159
166 }
167 /* WARNING: the returned index can be negative */
169 poutbuf_size, buf, buf_size);
170 av_assert0(index > -0x20000000);
// The API does not allow returning AVERROR codes
171 /* update the file pointer */
172 if (*poutbuf_size) {
173 /* fill the data for the current frame */
175
176 /* offset of the next frame */
179 }
180 if (index < 0)
181 index = 0;
184 }
185
187 uint8_t **poutbuf,
int *poutbuf_size,
188 const uint8_t *
buf,
int buf_size,
int keyframe)
189 {
194 buf += i;
195 buf_size -= i;
196 }
197 }
198
199 /* cast to avoid warning about discarding qualifiers */
201 *poutbuf_size = buf_size;
205
206 *poutbuf_size =
size;
208 if (!*poutbuf)
210
214 return 1;
215 }
216 }
217
218 return 0;
219 }
220
222 {
223 if (s) {
228 }
229 }
230
233 {
235 av_dlog(
NULL,
"overread %d, state:%X next:%d index:%d o_index:%d\n",
238 (*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
239 }
240
241 /* Copy overread bytes from last frame into buffer. */
244
245 /* flush remaining if EOF */
247 next = 0;
248
250
251 /* copy into buffer end return */
254 *buf_size + pc->
index +
256
257 if (!new_buffer) {
260 }
263 pc->
index += *buf_size;
264 return -1;
265 }
266
267 *buf_size =
269
270 /* append to buffer */
275 if (!new_buffer) {
279 }
286 }
287
288 /* store overread bytes */
289 for (; next < 0; next++) {
293 }
294
296 av_dlog(
NULL,
"overread %d, state:%X next:%d index:%d o_index:%d\n",
299 (*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
300 }
301
302 return 0;
303 }
304
306 {
308
310 }
311
313 {
316
317 while (ptr < end) {
319 if (state == 0x1B3 || state == 0x1B6)
320 return ptr - 4 -
buf;
321 }
322
323 return 0;
324 }