parser.c 10.7 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 "parser.h"
24

25
static AVCodecParser *av_first_parser = NULL;
26

27 28 29 30 31
AVCodecParser* av_parser_next(AVCodecParser *p){
    if(p) return p->next;
    else  return av_first_parser;
}

32 33 34 35 36 37 38 39 40 41 42
void av_register_codec_parser(AVCodecParser *parser)
{
    parser->next = av_first_parser;
    av_first_parser = parser;
}

AVCodecParserContext *av_parser_init(int codec_id)
{
    AVCodecParserContext *s;
    AVCodecParser *parser;
    int ret;
43

44 45
    if(codec_id == CODEC_ID_NONE)
        return NULL;
46 47 48 49

    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
50 51 52
            parser->codec_ids[2] == codec_id ||
            parser->codec_ids[3] == codec_id ||
            parser->codec_ids[4] == codec_id)
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
            goto found;
    }
    return NULL;
 found:
    s = av_mallocz(sizeof(AVCodecParserContext));
    if (!s)
        return NULL;
    s->parser = parser;
    s->priv_data = av_mallocz(parser->priv_data_size);
    if (!s->priv_data) {
        av_free(s);
        return NULL;
    }
    if (parser->parser_init) {
        ret = parser->parser_init(s);
        if (ret != 0) {
            av_free(s->priv_data);
            av_free(s);
            return NULL;
        }
    }
74
    s->fetch_timestamp=1;
75
    s->pict_type = FF_I_TYPE;
76
    s->key_frame = -1;
77
    s->convergence_duration = AV_NOPTS_VALUE;
78 79 80
    s->dts_sync_point       = INT_MIN;
    s->dts_ref_dts_delta    = INT_MIN;
    s->pts_dts_delta        = INT_MIN;
81 82 83
    return s;
}

84
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
85
    int i;
Michael Niedermayer's avatar
Michael Niedermayer committed
86

87
    s->dts= s->pts= AV_NOPTS_VALUE;
88
    s->pos= -1;
89 90
    s->offset= 0;
    for(i = 0; i < AV_PARSER_PTS_NB; i++) {
91
        if (   s->cur_offset + off >= s->cur_frame_offset[i]
92 93
            && (s->frame_offset < s->cur_frame_offset[i] ||
              (!s->frame_offset && !s->next_frame_offset)) // first field/frame
94 95
            //check is disabled  becausue mpeg-ts doesnt send complete PES packets
            && /*s->next_frame_offset + off <*/  s->cur_frame_end[i]){
96 97
            s->dts= s->cur_frame_dts[i];
            s->pts= s->cur_frame_pts[i];
98
            s->pos= s->cur_frame_pos[i];
99
            s->offset = s->next_frame_offset - s->cur_frame_offset[i];
100 101
            if(remove)
                s->cur_frame_offset[i]= INT64_MAX;
102 103
            if(s->cur_offset + off < s->cur_frame_end[i])
                break;
104 105 106 107
        }
    }
}

Michael Niedermayer's avatar
Michael Niedermayer committed
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
/**
 *
 * @param buf           input
 * @param buf_size      input length, to signal EOF, this should be 0 (so that the last frame can be output)
 * @param pts           input presentation timestamp
 * @param dts           input decoding timestamp
 * @param poutbuf       will contain a pointer to the first byte of the output frame
 * @param poutbuf_size  will contain the length of the output frame
 * @return the number of bytes of the input bitstream used
 *
 * Example:
 * @code
 *   while(in_len){
 *       len = av_parser_parse(myparser, AVCodecContext, &data, &size,
 *                                       in_data, in_len,
 *                                       pts, dts);
 *       in_data += len;
 *       in_len  -= len;
 *
Michael Niedermayer's avatar
Michael Niedermayer committed
127 128
 *       if(size)
 *          decode_frame(data, size);
Michael Niedermayer's avatar
Michael Niedermayer committed
129 130
 *   }
 * @endcode
131 132
 *
 * @deprecated Use av_parser_parse2() instead.
Michael Niedermayer's avatar
Michael Niedermayer committed
133
 */
134
int av_parser_parse(AVCodecParserContext *s,
135
                    AVCodecContext *avctx,
136
                    uint8_t **poutbuf, int *poutbuf_size,
137 138
                    const uint8_t *buf, int buf_size,
                    int64_t pts, int64_t dts)
139 140 141 142 143 144 145 146 147 148
{
    return av_parser_parse2(s, avctx, poutbuf, poutbuf_size, buf, buf_size, pts, dts, AV_NOPTS_VALUE);
}

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)
149
{
Michael Niedermayer's avatar
Michael Niedermayer committed
150
    int index, i;
151
    uint8_t dummy_buf[FF_INPUT_BUFFER_PADDING_SIZE];
152

153 154 155 156
    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;
157 158
    } else if (s->cur_offset + buf_size !=
               s->cur_frame_end[s->cur_frame_start_index]) { /* skip remainder packets */
159
        /* add a new packet descriptor */
Michael Niedermayer's avatar
Michael Niedermayer committed
160 161 162 163 164 165
            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;
166
            s->cur_frame_pos[i] = pos;
167
    }
168

Michael Niedermayer's avatar
Michael Niedermayer committed
169 170
    if (s->fetch_timestamp){
        s->fetch_timestamp=0;
171 172
        s->last_pts = s->pts;
        s->last_dts = s->dts;
173
        s->last_pos = s->pos;
174
        ff_fetch_timestamp(s, 0, 0);
175 176
    }

177
    /* WARNING: the returned index can be negative */
178
    index = s->parser->parser_parse(s, avctx, (const uint8_t **)poutbuf, poutbuf_size, buf, buf_size);
179
//av_log(NULL, AV_LOG_DEBUG, "parser: in:%"PRId64", %"PRId64", out:%"PRId64", %"PRId64", in:%d out:%d id:%d\n", pts, dts, s->last_pts, s->last_dts, buf_size, *poutbuf_size, avctx->codec_id);
180 181
    /* update the file pointer */
    if (*poutbuf_size) {
182
        /* fill the data for the current frame */
183
        s->frame_offset = s->next_frame_offset;
184

185
        /* offset of the next frame */
186
        s->next_frame_offset = s->cur_offset + index;
Michael Niedermayer's avatar
Michael Niedermayer committed
187
        s->fetch_timestamp=1;
188 189 190 191 192 193 194
    }
    if (index < 0)
        index = 0;
    s->cur_offset += index;
    return index;
}

195 196 197
/**
 *
 * @return 0 if the output buffer is a subset of the input, 1 if it is allocated and must be freed
198
 * @deprecated use AVBitstreamFilter
199
 */
200 201
int av_parser_change(AVCodecParserContext *s,
                     AVCodecContext *avctx,
202
                     uint8_t **poutbuf, int *poutbuf_size,
203
                     const uint8_t *buf, int buf_size, int keyframe){
204

205
    if(s && s->parser->split){
206
        if((avctx->flags & CODEC_FLAG_GLOBAL_HEADER) || (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER)){
207 208 209 210 211 212
            int i= s->parser->split(avctx, buf, buf_size);
            buf += i;
            buf_size -= i;
        }
    }

213 214
    /* cast to avoid warning about discarding qualifiers */
    *poutbuf= (uint8_t *) buf;
215 216 217
    *poutbuf_size= buf_size;
    if(avctx->extradata){
        if(  (keyframe && (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER))
218
            /*||(s->pict_type != FF_I_TYPE && (s->flags & PARSER_FLAG_DUMP_EXTRADATA_AT_NOKEY))*/
219 220 221 222
            /*||(? && (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);
223

224
            memcpy(*poutbuf, avctx->extradata, avctx->extradata_size);
225
            memcpy((*poutbuf) + avctx->extradata_size, buf, buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
226 227 228 229 230 231 232
            return 1;
        }
    }

    return 0;
}

233 234
void av_parser_close(AVCodecParserContext *s)
{
235
    if(s){
Michael Niedermayer's avatar
Michael Niedermayer committed
236 237 238 239
        if (s->parser->parser_close)
            s->parser->parser_close(s);
        av_free(s->priv_data);
        av_free(s);
240
    }
241 242 243 244 245 246
}

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

/**
 * combines the (truncated) bitstream to a complete frame
247
 * @returns -1 if no complete frame could be created, AVERROR(ENOMEM) if there was a memory allocation error
248
 */
249
int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
250 251 252 253 254 255 256 257
{
#if 0
    if(pc->overread){
        printf("overread %d, state:%X next:%d index:%d o_index:%d\n", pc->overread, pc->state, next, pc->index, pc->overread_index);
        printf("%X %X %X %X\n", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]);
    }
#endif

Diego Biurrun's avatar
Diego Biurrun committed
258
    /* Copy overread bytes from last frame into buffer. */
259 260 261
    for(; pc->overread>0; pc->overread--){
        pc->buffer[pc->index++]= pc->buffer[pc->overread_index++];
    }
262 263 264 265 266 267

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

268 269 270 271
    pc->last_index= pc->index;

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

274 275 276
        if(!new_buffer)
            return AVERROR(ENOMEM);
        pc->buffer = new_buffer;
277 278 279 280 281 282 283
        memcpy(&pc->buffer[pc->index], *buf, *buf_size);
        pc->index += *buf_size;
        return -1;
    }

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

285 286
    /* append to buffer */
    if(pc->index){
287
        void* new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size, next + pc->index + FF_INPUT_BUFFER_PADDING_SIZE);
288

289 290 291
        if(!new_buffer)
            return AVERROR(ENOMEM);
        pc->buffer = new_buffer;
292 293 294 295 296 297 298 299
        memcpy(&pc->buffer[pc->index], *buf, next + FF_INPUT_BUFFER_PADDING_SIZE );
        pc->index = 0;
        *buf= pc->buffer;
    }

    /* store overread bytes */
    for(;next < 0; next++){
        pc->state = (pc->state<<8) | pc->buffer[pc->last_index + next];
300
        pc->state64 = (pc->state64<<8) | pc->buffer[pc->last_index + next];
301 302 303 304 305 306 307 308 309 310 311 312 313
        pc->overread++;
    }

#if 0
    if(pc->overread){
        printf("overread %d, state:%X next:%d index:%d o_index:%d\n", pc->overread, pc->state, next, pc->index, pc->overread_index);
        printf("%X %X %X %X\n", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]);
    }
#endif

    return 0;
}

314
void ff_parse_close(AVCodecParserContext *s)
315
{
316
    ParseContext *pc = s->priv_data;
317

318
    av_freep(&pc->buffer);
319 320
}

321
void ff_parse1_close(AVCodecParserContext *s)
322
{
323
    ParseContext1 *pc1 = s->priv_data;
324

325 326
    av_free(pc1->pc.buffer);
    av_free(pc1->enc);
327 328
}

329 330
/*************************/

331
int ff_mpeg4video_split(AVCodecContext *avctx,
332 333 334 335
                           const uint8_t *buf, int buf_size)
{
    int i;
    uint32_t state= -1;
336

337 338 339
    for(i=0; i<buf_size; i++){
        state= (state<<8) | buf[i];
        if(state == 0x1B3 || state == 0x1B6)
340
            return i-3;
341 342 343
    }
    return 0;
}