annotate ffmpeg/libavcodec/parser.h @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * AVCodecParser prototypes and definitions
yading@10 3 * Copyright (c) 2003 Fabrice Bellard
yading@10 4 * Copyright (c) 2003 Michael Niedermayer
yading@10 5 *
yading@10 6 * This file is part of FFmpeg.
yading@10 7 *
yading@10 8 * FFmpeg is free software; you can redistribute it and/or
yading@10 9 * modify it under the terms of the GNU Lesser General Public
yading@10 10 * License as published by the Free Software Foundation; either
yading@10 11 * version 2.1 of the License, or (at your option) any later version.
yading@10 12 *
yading@10 13 * FFmpeg is distributed in the hope that it will be useful,
yading@10 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 16 * Lesser General Public License for more details.
yading@10 17 *
yading@10 18 * You should have received a copy of the GNU Lesser General Public
yading@10 19 * License along with FFmpeg; if not, write to the Free Software
yading@10 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 21 */
yading@10 22
yading@10 23 #ifndef AVCODEC_PARSER_H
yading@10 24 #define AVCODEC_PARSER_H
yading@10 25
yading@10 26 #include "avcodec.h"
yading@10 27
yading@10 28 typedef struct ParseContext{
yading@10 29 uint8_t *buffer;
yading@10 30 int index;
yading@10 31 int last_index;
yading@10 32 unsigned int buffer_size;
yading@10 33 uint32_t state; ///< contains the last few bytes in MSB order
yading@10 34 int frame_start_found;
yading@10 35 int overread; ///< the number of bytes which where irreversibly read from the next frame
yading@10 36 int overread_index; ///< the index into ParseContext.buffer of the overread bytes
yading@10 37 uint64_t state64; ///< contains the last 8 bytes in MSB order
yading@10 38 } ParseContext;
yading@10 39
yading@10 40 #define END_NOT_FOUND (-100)
yading@10 41
yading@10 42 /**
yading@10 43 * Combine the (truncated) bitstream to a complete frame.
yading@10 44 * @return -1 if no complete frame could be created,
yading@10 45 * AVERROR(ENOMEM) if there was a memory allocation error
yading@10 46 */
yading@10 47 int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size);
yading@10 48 int ff_mpeg4video_split(AVCodecContext *avctx, const uint8_t *buf,
yading@10 49 int buf_size);
yading@10 50 void ff_parse_close(AVCodecParserContext *s);
yading@10 51
yading@10 52 /**
yading@10 53 * Fetch timestamps for a specific byte within the current access unit.
yading@10 54 * @param off byte position within the access unit
yading@10 55 * @param remove Found timestamps will be removed if set to 1, kept if set to 0.
yading@10 56 */
yading@10 57 void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove);
yading@10 58
yading@10 59 #endif /* AVCODEC_PARSER_H */