FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
parser.c File Reference
#include <inttypes.h>
#include <stdint.h>
#include <string.h>
#include "libavutil/avassert.h"
#include "libavutil/atomic.h"
#include "libavutil/internal.h"
#include "libavutil/mem.h"
#include "internal.h"
#include "parser.h"

Go to the source code of this file.

Macros

#define FILL(name)   if(s->name > 0 && avctx->name <= 0) avctx->name = s->name
 

Functions

AVCodecParserav_parser_next (const AVCodecParser *p)
 
void av_register_codec_parser (AVCodecParser *parser)
 
AVCodecParserContextav_parser_init (int codec_id)
 
void ff_fetch_timestamp (AVCodecParserContext *s, int off, int remove, int fuzzy)
 Fetch timestamps for a specific byte within the current access unit. More...
 
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)
 Parse a packet. More...
 
int av_parser_change (AVCodecParserContext *s, AVCodecContext *avctx, uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size, int keyframe)
 
void av_parser_close (AVCodecParserContext *s)
 
int ff_combine_frame (ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
 Combine the (truncated) bitstream to a complete frame. More...
 
void ff_parse_close (AVCodecParserContext *s)
 
int ff_mpeg4video_split (AVCodecContext *avctx, const uint8_t *buf, int buf_size)
 

Variables

static AVCodecParserav_first_parser = NULL
 

Macro Definition Documentation

#define FILL (   name)    if(s->name > 0 && avctx->name <= 0) avctx->name = s->name

Referenced by av_parser_parse2().

Function Documentation

void ff_fetch_timestamp ( AVCodecParserContext s,
int  off,
int  remove,
int  fuzzy 
)

Fetch timestamps for a specific byte within the current access unit.

Parameters
offbyte position within the access unit
removeFound timestamps will be removed if set to 1, kept if set to 0.
fuzzyOnly use found value if it is more informative than what we already have

Definition at line 106 of file parser.c.

Referenced by av_parser_parse2(), and ff_mpeg1_find_frame_end().

int ff_combine_frame ( ParseContext pc,
int  next,
const uint8_t **  buf,
int buf_size 
)
void ff_parse_close ( AVCodecParserContext s)

Definition at line 329 of file parser.c.

int ff_mpeg4video_split ( AVCodecContext avctx,
const uint8_t buf,
int  buf_size 
)

Definition at line 336 of file parser.c.

Variable Documentation

AVCodecParser* av_first_parser = NULL
static

Definition at line 35 of file parser.c.

Referenced by av_parser_next(), and av_register_codec_parser().