1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-04-24 04:44:54 +02:00
Files
FFmpeg/libavcodec/parser.c
T

332 lines
10 KiB
C
Raw Normal View History

2003-11-10 15:29:20 +00:00
/*
* Audio and Video frame extraction
* Copyright (c) 2003 Fabrice Bellard
* Copyright (c) 2003 Michael Niedermayer
2003-11-10 15:29:20 +00:00
*
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
2003-11-10 15:29:20 +00:00
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
2003-11-10 15:29:20 +00:00
*
* FFmpeg is distributed in the hope that it will be useful,
2003-11-10 15:29:20 +00:00
* 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
* License along with FFmpeg; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2003-11-10 15:29:20 +00:00
*/
2007-05-08 23:30:42 +00:00
#include <stdint.h>
2012-08-06 16:49:32 +03:00
#include <string.h>
#include "libavutil/avassert.h"
#include "libavutil/atomic.h"
#include "libavutil/internal.h"
2012-08-06 16:49:32 +03:00
#include "libavutil/mem.h"
2003-11-10 15:29:20 +00:00
#include "internal.h"
2014-02-23 23:59:25 +01:00
#include "parser.h"
static AVCodecParser *av_first_parser = NULL;
2003-11-10 15:29:20 +00:00
AVCodecParser *av_parser_next(const AVCodecParser *p)
2014-02-23 23:59:25 +01:00
{
if (p)
return p->next;
else
return av_first_parser;
2007-12-12 18:40:11 +00:00
}
2003-11-10 15:29:20 +00:00
void av_register_codec_parser(AVCodecParser *parser)
{
do {
parser->next = av_first_parser;
} while (parser->next != avpriv_atomic_ptr_cas((void * volatile *)&av_first_parser, parser->next, parser));
2003-11-10 15:29:20 +00:00
}
AVCodecParserContext *av_parser_init(int codec_id)
{
2012-11-27 21:10:12 +01:00
AVCodecParserContext *s = NULL;
2003-11-10 15:29:20 +00:00
AVCodecParser *parser;
int ret;
2005-12-17 18:14:38 +00:00
2014-02-23 23:59:25 +01:00
if (codec_id == AV_CODEC_ID_NONE)
return NULL;
2003-11-10 15:29:20 +00:00
2014-08-15 21:31:59 +02:00
for (parser = av_first_parser; parser; parser = parser->next) {
2003-11-10 15:29:20 +00:00
if (parser->codec_ids[0] == codec_id ||
parser->codec_ids[1] == codec_id ||
2004-11-12 22:55:29 +00:00
parser->codec_ids[2] == codec_id ||
parser->codec_ids[3] == codec_id ||
parser->codec_ids[4] == codec_id)
2003-11-10 15:29:20 +00:00
goto found;
}
return NULL;
2014-02-23 23:59:25 +01:00
found:
2003-11-10 15:29:20 +00:00
s = av_mallocz(sizeof(AVCodecParserContext));
if (!s)
2012-11-27 21:10:12 +01:00
goto err_out;
2003-11-10 15:29:20 +00:00
s->parser = parser;
2011-04-29 02:14:43 +02:00
s->priv_data = av_mallocz(parser->priv_data_size);
2012-11-27 21:10:12 +01:00
if (!s->priv_data)
goto err_out;
s->fetch_timestamp=1;
s->pict_type = AV_PICTURE_TYPE_I;
2003-11-10 15:29:20 +00:00
if (parser->parser_init) {
ret = parser->parser_init(s);
2012-11-27 21:10:12 +01:00
if (ret != 0)
goto err_out;
2003-11-10 15:29:20 +00:00
}
2014-02-23 23:59:25 +01:00
s->key_frame = -1;
#if FF_API_CONVERGENCE_DURATION
FF_DISABLE_DEPRECATION_WARNINGS
s->convergence_duration = 0;
FF_ENABLE_DEPRECATION_WARNINGS
#endif
s->dts_sync_point = INT_MIN;
s->dts_ref_dts_delta = INT_MIN;
s->pts_dts_delta = INT_MIN;
s->format = -1;
2003-11-10 15:29:20 +00:00
return s;
2012-11-27 21:10:12 +01:00
err_out:
if (s)
av_freep(&s->priv_data);
av_free(s);
return NULL;
2003-11-10 15:29:20 +00:00
}
void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove, int fuzzy)
2014-02-23 23:59:25 +01:00
{
int i;
2008-06-02 13:14:01 +00:00
if (!fuzzy) {
s->dts =
s->pts = AV_NOPTS_VALUE;
s->pos = -1;
s->offset = 0;
}
2014-02-23 23:59:25 +01:00
for (i = 0; i < AV_PARSER_PTS_NB; i++) {
if (s->cur_offset + off >= s->cur_frame_offset[i] &&
(s->frame_offset < s->cur_frame_offset[i] ||
2014-02-26 17:29:18 +01:00
(!s->frame_offset && !s->next_frame_offset)) && // first field/frame
// check disabled since MPEG-TS does not send complete PES packets
/*s->next_frame_offset + off <*/ s->cur_frame_end[i]){
if (!fuzzy || s->cur_frame_dts[i] != AV_NOPTS_VALUE) {
s->dts = s->cur_frame_dts[i];
s->pts = s->cur_frame_pts[i];
s->pos = s->cur_frame_pos[i];
s->offset = s->next_frame_offset - s->cur_frame_offset[i];
}
2014-02-23 23:59:25 +01:00
if (remove)
s->cur_frame_offset[i] = INT64_MAX;
if (s->cur_offset + off < s->cur_frame_end[i])
break;
}
}
}
2014-02-23 23:59:25 +01:00
int av_parser_parse2(AVCodecParserContext *s, AVCodecContext *avctx,
uint8_t **poutbuf, int *poutbuf_size,
const uint8_t *buf, int buf_size,
2014-02-23 23:59:25 +01:00
int64_t pts, int64_t dts, int64_t pos)
2003-11-10 15:29:20 +00:00
{
2008-06-02 13:01:23 +00:00
int index, i;
uint8_t dummy_buf[AV_INPUT_BUFFER_PADDING_SIZE];
2005-12-17 18:14:38 +00:00
2014-02-23 23:59:25 +01:00
if (!(s->flags & PARSER_FLAG_FETCHED_OFFSET)) {
2010-09-27 22:17:58 +00:00
s->next_frame_offset =
s->cur_offset = pos;
2014-02-23 23:59:25 +01:00
s->flags |= PARSER_FLAG_FETCHED_OFFSET;
2010-09-27 22:17:58 +00:00
}
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;
2014-02-23 23:59:25 +01:00
} else if (s->cur_offset + buf_size != s->cur_frame_end[s->cur_frame_start_index]) { /* skip remainder packets */
2003-12-16 11:17:06 +00:00
/* add a new packet descriptor */
2014-02-23 23:59:25 +01:00
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;
s->cur_frame_pos[i] = pos;
2008-06-02 02:55:30 +00:00
}
2003-12-16 11:17:06 +00:00
2014-02-23 23:59:25 +01:00
if (s->fetch_timestamp) {
s->fetch_timestamp = 0;
s->last_pts = s->pts;
s->last_dts = s->dts;
s->last_pos = s->pos;
ff_fetch_timestamp(s, 0, 0, 0);
}
2003-11-10 15:29:20 +00:00
/* WARNING: the returned index can be negative */
2014-02-23 23:59:25 +01:00
index = s->parser->parser_parse(s, avctx, (const uint8_t **) poutbuf,
poutbuf_size, buf, buf_size);
av_assert0(index > -0x20000000); // The API does not allow returning AVERROR codes
2003-11-10 15:29:20 +00:00
/* update the file pointer */
if (*poutbuf_size) {
2003-12-16 11:17:06 +00:00
/* fill the data for the current frame */
s->frame_offset = s->next_frame_offset;
2005-12-17 18:14:38 +00:00
2003-12-16 11:17:06 +00:00
/* offset of the next frame */
s->next_frame_offset = s->cur_offset + index;
2014-02-23 23:59:25 +01:00
s->fetch_timestamp = 1;
2003-11-10 15:29:20 +00:00
}
if (index < 0)
index = 0;
s->cur_offset += index;
return index;
}
2014-02-23 23:59:25 +01:00
int av_parser_change(AVCodecParserContext *s, AVCodecContext *avctx,
2005-12-17 18:14:38 +00:00
uint8_t **poutbuf, int *poutbuf_size,
2014-02-23 23:59:25 +01:00
const uint8_t *buf, int buf_size, int keyframe)
{
if (s && s->parser->split) {
2015-06-29 21:59:37 +02:00
if (avctx->flags & AV_CODEC_FLAG_GLOBAL_HEADER ||
avctx->flags2 & AV_CODEC_FLAG2_LOCAL_HEADER) {
2014-02-23 23:59:25 +01:00
int i = s->parser->split(avctx, buf, buf_size);
buf += i;
buf_size -= i;
}
}
/* cast to avoid warning about discarding qualifiers */
2014-02-23 23:59:25 +01:00
*poutbuf = (uint8_t *) buf;
*poutbuf_size = buf_size;
if (avctx->extradata) {
2015-06-29 21:59:37 +02:00
if (keyframe && (avctx->flags2 & AV_CODEC_FLAG2_LOCAL_HEADER)) {
2014-02-23 23:59:25 +01:00
int size = buf_size + avctx->extradata_size;
*poutbuf_size = size;
*poutbuf = av_malloc(size + AV_INPUT_BUFFER_PADDING_SIZE);
2014-12-18 20:26:56 +01:00
if (!*poutbuf)
return AVERROR(ENOMEM);
2005-12-17 18:14:38 +00:00
memcpy(*poutbuf, avctx->extradata, avctx->extradata_size);
memcpy(*poutbuf + avctx->extradata_size, buf,
buf_size + AV_INPUT_BUFFER_PADDING_SIZE);
return 1;
}
}
return 0;
}
2003-11-10 15:29:20 +00:00
void av_parser_close(AVCodecParserContext *s)
{
2014-02-23 23:59:25 +01:00
if (s) {
if (s->parser->parser_close)
2008-05-26 02:00:18 +00:00
s->parser->parser_close(s);
av_freep(&s->priv_data);
2008-05-26 02:00:18 +00:00
av_free(s);
2008-05-26 01:58:47 +00:00
}
2003-11-10 15:29:20 +00:00
}
2014-02-23 23:59:25 +01:00
int ff_combine_frame(ParseContext *pc, int next,
const uint8_t **buf, int *buf_size)
2003-11-10 15:29:20 +00:00
{
2014-02-23 23:59:25 +01:00
if (pc->overread) {
ff_dlog(NULL, "overread %d, state:%X next:%d index:%d o_index:%d\n",
pc->overread, pc->state, next, pc->index, pc->overread_index);
ff_dlog(NULL, "%X %X %X %X\n",
2014-02-23 23:59:25 +01:00
(*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
2003-11-10 15:29:20 +00:00
}
2007-04-07 14:09:20 +00:00
/* Copy overread bytes from last frame into buffer. */
2014-02-23 23:59:25 +01:00
for (; pc->overread > 0; pc->overread--)
pc->buffer[pc->index++] = pc->buffer[pc->overread_index++];
2004-12-12 14:19:54 +00:00
/* flush remaining if EOF */
2014-02-23 23:59:25 +01:00
if (!*buf_size && next == END_NOT_FOUND)
next = 0;
2004-12-12 14:19:54 +00:00
2014-02-23 23:59:25 +01:00
pc->last_index = pc->index;
2003-11-10 15:29:20 +00:00
/* copy into buffer end return */
2014-02-23 23:59:25 +01:00
if (next == END_NOT_FOUND) {
void *new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size,
*buf_size + pc->index +
AV_INPUT_BUFFER_PADDING_SIZE);
2003-11-10 15:29:20 +00:00
if (!new_buffer) {
av_log(NULL, AV_LOG_ERROR, "Failed to reallocate parser buffer to %d\n", *buf_size + pc->index + AV_INPUT_BUFFER_PADDING_SIZE);
pc->index = 0;
2008-03-25 14:48:18 +00:00
return AVERROR(ENOMEM);
}
2008-03-25 14:48:18 +00:00
pc->buffer = new_buffer;
2003-11-10 15:29:20 +00:00
memcpy(&pc->buffer[pc->index], *buf, *buf_size);
pc->index += *buf_size;
return -1;
}
2014-02-23 23:59:25 +01:00
*buf_size =
pc->overread_index = pc->index + next;
2005-12-17 18:14:38 +00:00
2003-11-10 15:29:20 +00:00
/* append to buffer */
2014-02-23 23:59:25 +01:00
if (pc->index) {
void *new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size,
next + pc->index +
AV_INPUT_BUFFER_PADDING_SIZE);
if (!new_buffer) {
av_log(NULL, AV_LOG_ERROR, "Failed to reallocate parser buffer to %d\n", next + pc->index + AV_INPUT_BUFFER_PADDING_SIZE);
pc->overread_index =
pc->index = 0;
2008-03-25 14:48:18 +00:00
return AVERROR(ENOMEM);
}
2008-03-25 14:48:18 +00:00
pc->buffer = new_buffer;
if (next > -AV_INPUT_BUFFER_PADDING_SIZE)
2012-10-03 16:06:23 +02:00
memcpy(&pc->buffer[pc->index], *buf,
next + AV_INPUT_BUFFER_PADDING_SIZE);
2003-11-10 15:29:20 +00:00
pc->index = 0;
2014-02-23 23:59:25 +01:00
*buf = pc->buffer;
2003-11-10 15:29:20 +00:00
}
/* store overread bytes */
2014-02-23 23:59:25 +01:00
for (; next < 0; next++) {
pc->state = pc->state << 8 | pc->buffer[pc->last_index + next];
pc->state64 = pc->state64 << 8 | pc->buffer[pc->last_index + next];
2003-11-10 15:29:20 +00:00
pc->overread++;
}
2014-02-23 23:59:25 +01:00
if (pc->overread) {
ff_dlog(NULL, "overread %d, state:%X next:%d index:%d o_index:%d\n",
pc->overread, pc->state, next, pc->index, pc->overread_index);
ff_dlog(NULL, "%X %X %X %X\n",
2014-02-23 23:59:25 +01:00
(*buf)[0], (*buf)[1], (*buf)[2], (*buf)[3]);
2003-11-10 15:29:20 +00:00
}
return 0;
}
2004-04-29 14:21:33 +00:00
void ff_parse_close(AVCodecParserContext *s)
2003-11-10 15:29:20 +00:00
{
2004-04-29 14:21:33 +00:00
ParseContext *pc = s->priv_data;
2003-11-10 15:29:20 +00:00
2008-10-20 09:02:55 +00:00
av_freep(&pc->buffer);
2003-11-10 15:29:20 +00:00
}
2014-02-23 23:59:25 +01:00
int ff_mpeg4video_split(AVCodecContext *avctx, const uint8_t *buf, int buf_size)
{
2014-02-23 23:59:25 +01:00
uint32_t state = -1;
const uint8_t *ptr = buf, *end = buf + buf_size;
2005-12-17 18:14:38 +00:00
while (ptr < end) {
ptr = avpriv_find_start_code(ptr, end, &state);
2014-02-23 23:59:25 +01:00
if (state == 0x1B3 || state == 0x1B6)
return ptr - 4 - buf;
}
return 0;
}