parser.c 9.46 KB
Newer Older
1 2
/*
 * Audio and Video frame extraction
3 4
 * Copyright (c) 2003 Fabrice Bellard
 * Copyright (c) 2003 Michael Niedermayer
5
 *
6 7 8
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
9 10
 * modify it under the terms of the GNU Lesser General Public
 * 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 15 16 17 18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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 25
#include <string.h>

26
#include "parser.h"
27
#include "libavutil/atomic.h"
28
#include "libavutil/mem.h"
29

30
static AVCodecParser *av_first_parser = NULL;
31

32 33 34 35 36
AVCodecParser* av_parser_next(AVCodecParser *p){
    if(p) return p->next;
    else  return av_first_parser;
}

37 38
void av_register_codec_parser(AVCodecParser *parser)
{
39 40 41
    do {
        parser->next = av_first_parser;
    } while (parser->next != avpriv_atomic_ptr_cas((void * volatile *)&av_first_parser, parser->next, parser));
42 43 44 45
}

AVCodecParserContext *av_parser_init(int codec_id)
{
46
    AVCodecParserContext *s = NULL;
47 48
    AVCodecParser *parser;
    int ret;
49

50
    if(codec_id == AV_CODEC_ID_NONE)
51
        return NULL;
52 53 54 55

    for(parser = av_first_parser; parser != NULL; parser = parser->next) {
        if (parser->codec_ids[0] == codec_id ||
            parser->codec_ids[1] == codec_id ||
Michael Niedermayer's avatar
Michael Niedermayer committed
56 57 58
            parser->codec_ids[2] == codec_id ||
            parser->codec_ids[3] == codec_id ||
            parser->codec_ids[4] == codec_id)
59 60 61 62 63 64
            goto found;
    }
    return NULL;
 found:
    s = av_mallocz(sizeof(AVCodecParserContext));
    if (!s)
65
        goto err_out;
66
    s->parser = parser;
67
    s->priv_data = av_mallocz(parser->priv_data_size);
68 69
    if (!s->priv_data)
        goto err_out;
70 71
    s->fetch_timestamp=1;
    s->pict_type = AV_PICTURE_TYPE_I;
72 73
    if (parser->parser_init) {
        ret = parser->parser_init(s);
74 75
        if (ret != 0)
            goto err_out;
76
    }
77
    s->key_frame = -1;
78
    s->convergence_duration = 0;
79 80 81
    s->dts_sync_point       = INT_MIN;
    s->dts_ref_dts_delta    = INT_MIN;
    s->pts_dts_delta        = INT_MIN;
82
    return s;
83 84 85 86 87 88

err_out:
    if (s)
        av_freep(&s->priv_data);
    av_free(s);
    return NULL;
89 90
}

91
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
92
    int i;
Michael Niedermayer's avatar
Michael Niedermayer committed
93

94
    s->dts= s->pts= AV_NOPTS_VALUE;
95
    s->pos= -1;
96 97
    s->offset= 0;
    for(i = 0; i < AV_PARSER_PTS_NB; i++) {
98
        if (   s->cur_offset + off >= s->cur_frame_offset[i]
99 100
            && (s->frame_offset < s->cur_frame_offset[i] ||
              (!s->frame_offset && !s->next_frame_offset)) // first field/frame
Diego Biurrun's avatar
Diego Biurrun committed
101
            // check disabled since MPEG-TS does not send complete PES packets
102
            && /*s->next_frame_offset + off <*/  s->cur_frame_end[i]){
103 104
            s->dts= s->cur_frame_dts[i];
            s->pts= s->cur_frame_pts[i];
105
            s->pos= s->cur_frame_pos[i];
106
            s->offset = s->next_frame_offset - s->cur_frame_offset[i];
107 108
            if(remove)
                s->cur_frame_offset[i]= INT64_MAX;
109 110
            if(s->cur_offset + off < s->cur_frame_end[i])
                break;
111 112 113 114
        }
    }
}

115 116 117 118 119 120
int av_parser_parse2(AVCodecParserContext *s,
                     AVCodecContext *avctx,
                     uint8_t **poutbuf, int *poutbuf_size,
                     const uint8_t *buf, int buf_size,
                     int64_t pts, int64_t dts,
                     int64_t pos)
121
{
Michael Niedermayer's avatar
Michael Niedermayer committed
122
    int index, i;
123
    uint8_t dummy_buf[FF_INPUT_BUFFER_PADDING_SIZE];
124

Michael Chinen's avatar
Michael Chinen committed
125 126 127 128 129 130
    if(!(s->flags & PARSER_FLAG_FETCHED_OFFSET)) {
        s->next_frame_offset =
        s->cur_offset        = pos;
        s->flags |= PARSER_FLAG_FETCHED_OFFSET;
    }

131 132 133 134
    if (buf_size == 0) {
        /* padding is always necessary even if EOF, so we add it here */
        memset(dummy_buf, 0, sizeof(dummy_buf));
        buf = dummy_buf;
135 136
    } else if (s->cur_offset + buf_size !=
               s->cur_frame_end[s->cur_frame_start_index]) { /* skip remainder packets */
137
        /* add a new packet descriptor */
Michael Niedermayer's avatar
Michael Niedermayer committed
138 139 140 141 142 143
            i = (s->cur_frame_start_index + 1) & (AV_PARSER_PTS_NB - 1);
            s->cur_frame_start_index = i;
            s->cur_frame_offset[i] = s->cur_offset;
            s->cur_frame_end[i] = s->cur_offset + buf_size;
            s->cur_frame_pts[i] = pts;
            s->cur_frame_dts[i] = dts;
144
            s->cur_frame_pos[i] = pos;
145
    }
146

Michael Niedermayer's avatar
Michael Niedermayer committed
147 148
    if (s->fetch_timestamp){
        s->fetch_timestamp=0;
149 150
        s->last_pts = s->pts;
        s->last_dts = s->dts;
151
        s->last_pos = s->pos;
152
        ff_fetch_timestamp(s, 0, 0);
153 154
    }

155
    /* WARNING: the returned index can be negative */
156
    index = s->parser->parser_parse(s, avctx, (const uint8_t **)poutbuf, poutbuf_size, buf, buf_size);
157 158
    /* update the file pointer */
    if (*poutbuf_size) {
159
        /* fill the data for the current frame */
160
        s->frame_offset = s->next_frame_offset;
161

162
        /* offset of the next frame */
163
        s->next_frame_offset = s->cur_offset + index;
Michael Niedermayer's avatar
Michael Niedermayer committed
164
        s->fetch_timestamp=1;
165 166 167 168 169 170 171
    }
    if (index < 0)
        index = 0;
    s->cur_offset += index;
    return index;
}

172 173
int av_parser_change(AVCodecParserContext *s,
                     AVCodecContext *avctx,
174
                     uint8_t **poutbuf, int *poutbuf_size,
175
                     const uint8_t *buf, int buf_size, int keyframe){
176

177
    if(s && s->parser->split){
178
        if((avctx->flags & CODEC_FLAG_GLOBAL_HEADER) || (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER)){
179 180 181 182 183 184
            int i= s->parser->split(avctx, buf, buf_size);
            buf += i;
            buf_size -= i;
        }
    }

185 186
    /* cast to avoid warning about discarding qualifiers */
    *poutbuf= (uint8_t *) buf;
187 188 189
    *poutbuf_size= buf_size;
    if(avctx->extradata){
        if(  (keyframe && (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER))
190
            /*||(s->pict_type != AV_PICTURE_TYPE_I && (s->flags & PARSER_FLAG_DUMP_EXTRADATA_AT_NOKEY))*/
191 192 193 194
            /*||(? && (s->flags & PARSER_FLAG_DUMP_EXTRADATA_AT_BEGIN)*/){
            int size= buf_size + avctx->extradata_size;
            *poutbuf_size= size;
            *poutbuf= av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
195

196
            memcpy(*poutbuf, avctx->extradata, avctx->extradata_size);
197
            memcpy((*poutbuf) + avctx->extradata_size, buf, buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
198 199 200 201 202 203 204
            return 1;
        }
    }

    return 0;
}

205 206
void av_parser_close(AVCodecParserContext *s)
{
207
    if(s){
208
        if (s->parser->parser_close)
Michael Niedermayer's avatar
Michael Niedermayer committed
209 210 211
            s->parser->parser_close(s);
        av_free(s->priv_data);
        av_free(s);
212
    }
213 214 215 216
}

/*****************************************************/

217
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
218 219
{
    if(pc->overread){
220
        av_dlog(NULL, "overread %d, state:%X next:%d index:%d o_index:%d\n",
221
                pc->overread, pc->state, next, pc->index, pc->overread_index);
222
        av_dlog(NULL, "%X %X %X %X\n", (*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
223 224
    }

Diego Biurrun's avatar
Diego Biurrun committed
225
    /* Copy overread bytes from last frame into buffer. */
226 227 228
    for(; pc->overread>0; pc->overread--){
        pc->buffer[pc->index++]= pc->buffer[pc->overread_index++];
    }
229 230 231 232 233 234

    /* flush remaining if EOF */
    if(!*buf_size && next == END_NOT_FOUND){
        next= 0;
    }

235 236 237 238
    pc->last_index= pc->index;

    /* copy into buffer end return */
    if(next == END_NOT_FOUND){
239
        void* new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size, (*buf_size) + pc->index + FF_INPUT_BUFFER_PADDING_SIZE);
240

241 242
        if(!new_buffer) {
            pc->index = 0;
243
            return AVERROR(ENOMEM);
244
        }
245
        pc->buffer = new_buffer;
246 247 248 249 250 251 252
        memcpy(&pc->buffer[pc->index], *buf, *buf_size);
        pc->index += *buf_size;
        return -1;
    }

    *buf_size=
    pc->overread_index= pc->index + next;
253

254 255
    /* append to buffer */
    if(pc->index){
256
        void* new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size, next + pc->index + FF_INPUT_BUFFER_PADDING_SIZE);
257 258 259
        if(!new_buffer) {
            pc->overread_index =
            pc->index = 0;
260
            return AVERROR(ENOMEM);
261
        }
262
        pc->buffer = new_buffer;
263 264 265
        if (next > -FF_INPUT_BUFFER_PADDING_SIZE)
            memcpy(&pc->buffer[pc->index], *buf,
                   next + FF_INPUT_BUFFER_PADDING_SIZE);
266 267 268 269 270 271 272
        pc->index = 0;
        *buf= pc->buffer;
    }

    /* store overread bytes */
    for(;next < 0; next++){
        pc->state = (pc->state<<8) | pc->buffer[pc->last_index + next];
273
        pc->state64 = (pc->state64<<8) | pc->buffer[pc->last_index + next];
274 275 276 277
        pc->overread++;
    }

    if(pc->overread){
278
        av_dlog(NULL, "overread %d, state:%X next:%d index:%d o_index:%d\n",
279
                pc->overread, pc->state, next, pc->index, pc->overread_index);
280
        av_dlog(NULL, "%X %X %X %X\n", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]);
281 282 283 284 285
    }

    return 0;
}

286
void ff_parse_close(AVCodecParserContext *s)
287
{
288
    ParseContext *pc = s->priv_data;
289

290
    av_freep(&pc->buffer);
291 292
}

293 294
/*************************/

295
int ff_mpeg4video_split(AVCodecContext *avctx,
296 297 298 299
                           const uint8_t *buf, int buf_size)
{
    int i;
    uint32_t state= -1;
300

301 302 303
    for(i=0; i<buf_size; i++){
        state= (state<<8) | buf[i];
        if(state == 0x1B3 || state == 0x1B6)
304
            return i-3;
305 306 307
    }
    return 0;
}