]> git.sesse.net Git - ffmpeg/blob - libavcodec/parser.c
bink: Factorize bink put_pixel
[ffmpeg] / libavcodec / parser.c
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 Libav.
7  *
8  * Libav 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  * Libav 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 Libav; 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
26 #include "libavutil/mem.h"
27
28 #include "internal.h"
29 #include "parser.h"
30
31 static AVCodecParser *av_first_parser = NULL;
32
33 AVCodecParser *av_parser_next(const AVCodecParser *p)
34 {
35     if (p)
36         return p->next;
37     else
38         return av_first_parser;
39 }
40
41 void av_register_codec_parser(AVCodecParser *parser)
42 {
43     parser->next = av_first_parser;
44     av_first_parser = parser;
45 }
46
47 AVCodecParserContext *av_parser_init(int codec_id)
48 {
49     AVCodecParserContext *s;
50     AVCodecParser *parser;
51     int ret;
52
53     if (codec_id == AV_CODEC_ID_NONE)
54         return NULL;
55
56     for (parser = av_first_parser; parser != NULL; parser = parser->next) {
57         if (parser->codec_ids[0] == codec_id ||
58             parser->codec_ids[1] == codec_id ||
59             parser->codec_ids[2] == codec_id ||
60             parser->codec_ids[3] == codec_id ||
61             parser->codec_ids[4] == codec_id)
62             goto found;
63     }
64     return NULL;
65
66 found:
67     s = av_mallocz(sizeof(AVCodecParserContext));
68     if (!s)
69         return NULL;
70     s->parser = parser;
71     if (parser->priv_data_size) {
72         s->priv_data = av_mallocz(parser->priv_data_size);
73         if (!s->priv_data) {
74             av_free(s);
75             return NULL;
76         }
77     }
78     if (parser->parser_init) {
79         ret = parser->parser_init(s);
80         if (ret != 0) {
81             av_free(s->priv_data);
82             av_free(s);
83             return NULL;
84         }
85     }
86     s->fetch_timestamp      = 1;
87     s->pict_type            = AV_PICTURE_TYPE_I;
88     s->key_frame            = -1;
89     s->convergence_duration = 0;
90     s->dts_sync_point       = INT_MIN;
91     s->dts_ref_dts_delta    = INT_MIN;
92     s->pts_dts_delta        = INT_MIN;
93     s->format               = -1;
94
95     return s;
96 }
97
98 void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove)
99 {
100     int i;
101
102     s->dts    =
103     s->pts    = AV_NOPTS_VALUE;
104     s->pos    = -1;
105     s->offset = 0;
106     for (i = 0; i < AV_PARSER_PTS_NB; i++) {
107         if (s->cur_offset + off >= s->cur_frame_offset[i] &&
108             (s->frame_offset < s->cur_frame_offset[i] ||
109              (!s->frame_offset && !s->next_frame_offset)) &&
110             s->cur_frame_end[i]) {
111             s->dts    = s->cur_frame_dts[i];
112             s->pts    = s->cur_frame_pts[i];
113             s->pos    = s->cur_frame_pos[i];
114             s->offset = s->next_frame_offset - s->cur_frame_offset[i];
115             if (remove)
116                 s->cur_frame_offset[i] = INT64_MAX;
117             if (s->cur_offset + off < s->cur_frame_end[i])
118                 break;
119         }
120     }
121 }
122
123 int av_parser_parse2(AVCodecParserContext *s, AVCodecContext *avctx,
124                      uint8_t **poutbuf, int *poutbuf_size,
125                      const uint8_t *buf, int buf_size,
126                      int64_t pts, int64_t dts, int64_t pos)
127 {
128     int index, i;
129     uint8_t dummy_buf[FF_INPUT_BUFFER_PADDING_SIZE];
130
131     if (!(s->flags & PARSER_FLAG_FETCHED_OFFSET)) {
132         s->next_frame_offset =
133         s->cur_offset        = pos;
134         s->flags            |= PARSER_FLAG_FETCHED_OFFSET;
135     }
136
137     if (buf_size == 0) {
138         /* padding is always necessary even if EOF, so we add it here */
139         memset(dummy_buf, 0, sizeof(dummy_buf));
140         buf = dummy_buf;
141     } else if (s->cur_offset + buf_size != s->cur_frame_end[s->cur_frame_start_index]) { /* skip remainder packets */
142         /* add a new packet descriptor */
143         i = (s->cur_frame_start_index + 1) & (AV_PARSER_PTS_NB - 1);
144         s->cur_frame_start_index = i;
145         s->cur_frame_offset[i]   = s->cur_offset;
146         s->cur_frame_end[i]      = s->cur_offset + buf_size;
147         s->cur_frame_pts[i]      = pts;
148         s->cur_frame_dts[i]      = dts;
149         s->cur_frame_pos[i]      = pos;
150     }
151
152     if (s->fetch_timestamp) {
153         s->fetch_timestamp = 0;
154         s->last_pts        = s->pts;
155         s->last_dts        = s->dts;
156         s->last_pos        = s->pos;
157         ff_fetch_timestamp(s, 0, 0);
158     }
159     /* WARNING: the returned index can be negative */
160     index = s->parser->parser_parse(s, avctx, (const uint8_t **) poutbuf,
161                                     poutbuf_size, buf, buf_size);
162     /* update the file pointer */
163     if (*poutbuf_size) {
164         /* fill the data for the current frame */
165         s->frame_offset = s->next_frame_offset;
166
167         /* offset of the next frame */
168         s->next_frame_offset = s->cur_offset + index;
169         s->fetch_timestamp   = 1;
170     }
171     if (index < 0)
172         index = 0;
173     s->cur_offset += index;
174     return index;
175 }
176
177 int av_parser_change(AVCodecParserContext *s, AVCodecContext *avctx,
178                      uint8_t **poutbuf, int *poutbuf_size,
179                      const uint8_t *buf, int buf_size, int keyframe)
180 {
181     if (s && s->parser->split) {
182         if (avctx->flags  & CODEC_FLAG_GLOBAL_HEADER ||
183             avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER) {
184             int i = s->parser->split(avctx, buf, buf_size);
185             buf      += i;
186             buf_size -= i;
187         }
188     }
189
190     /* cast to avoid warning about discarding qualifiers */
191     *poutbuf      = (uint8_t *) buf;
192     *poutbuf_size = buf_size;
193     if (avctx->extradata) {
194         if (keyframe && (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER)) {
195             int size = buf_size + avctx->extradata_size;
196
197             *poutbuf_size = size;
198             *poutbuf      = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
199             if (!*poutbuf)
200                 return AVERROR(ENOMEM);
201
202             memcpy(*poutbuf, avctx->extradata, avctx->extradata_size);
203             memcpy(*poutbuf + avctx->extradata_size, buf,
204                    buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
205             return 1;
206         }
207     }
208
209     return 0;
210 }
211
212 void av_parser_close(AVCodecParserContext *s)
213 {
214     if (s) {
215         if (s->parser->parser_close)
216             s->parser->parser_close(s);
217         av_free(s->priv_data);
218         av_free(s);
219     }
220 }
221
222 int ff_combine_frame(ParseContext *pc, int next,
223                      const uint8_t **buf, int *buf_size)
224 {
225     if (pc->overread) {
226         ff_dlog(NULL, "overread %d, state:%X next:%d index:%d o_index:%d\n",
227                 pc->overread, pc->state, next, pc->index, pc->overread_index);
228         ff_dlog(NULL, "%X %X %X %X\n",
229                 (*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
230     }
231
232     /* Copy overread bytes from last frame into buffer. */
233     for (; pc->overread > 0; pc->overread--)
234         pc->buffer[pc->index++] = pc->buffer[pc->overread_index++];
235
236     /* flush remaining if EOF */
237     if (!*buf_size && next == END_NOT_FOUND)
238         next = 0;
239
240     pc->last_index = pc->index;
241
242     /* copy into buffer end return */
243     if (next == END_NOT_FOUND) {
244         void *new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size,
245                                            *buf_size + pc->index +
246                                            FF_INPUT_BUFFER_PADDING_SIZE);
247
248         if (!new_buffer)
249             return AVERROR(ENOMEM);
250         pc->buffer = new_buffer;
251         memcpy(&pc->buffer[pc->index], *buf, *buf_size);
252         pc->index += *buf_size;
253         return -1;
254     }
255
256     *buf_size          =
257     pc->overread_index = pc->index + next;
258
259     /* append to buffer */
260     if (pc->index) {
261         void *new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size,
262                                            next + pc->index +
263                                            FF_INPUT_BUFFER_PADDING_SIZE);
264
265         if (!new_buffer)
266             return AVERROR(ENOMEM);
267         pc->buffer = new_buffer;
268         if (next > -FF_INPUT_BUFFER_PADDING_SIZE)
269             memcpy(&pc->buffer[pc->index], *buf,
270                    next + FF_INPUT_BUFFER_PADDING_SIZE);
271         pc->index = 0;
272         *buf      = pc->buffer;
273     }
274
275     /* store overread bytes */
276     for (; next < 0; next++) {
277         pc->state   = pc->state   << 8 | pc->buffer[pc->last_index + next];
278         pc->state64 = pc->state64 << 8 | pc->buffer[pc->last_index + next];
279         pc->overread++;
280     }
281
282     if (pc->overread) {
283         ff_dlog(NULL, "overread %d, state:%X next:%d index:%d o_index:%d\n",
284                 pc->overread, pc->state, next, pc->index, pc->overread_index);
285         ff_dlog(NULL, "%X %X %X %X\n",
286                 (*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
287     }
288
289     return 0;
290 }
291
292 void ff_parse_close(AVCodecParserContext *s)
293 {
294     ParseContext *pc = s->priv_data;
295
296     av_freep(&pc->buffer);
297 }
298
299 int ff_mpeg4video_split(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
300 {
301     int i;
302     uint32_t state = -1;
303
304     for (i = 0; i < buf_size; i++) {
305         state = state << 8 | buf[i];
306         if (state == 0x1B3 || state == 0x1B6)
307             return i - 3;
308     }
309     return 0;
310 }