FFmpeg
|
#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
struct | ParseContext |
Macros | |
#define | END_NOT_FOUND (-100) |
Functions | |
int | ff_combine_frame (ParseContext *pc, int next, const uint8_t **buf, int *buf_size) |
Combine the (truncated) bitstream to a complete frame. More... | |
int | ff_mpeg4video_split (AVCodecContext *avctx, const uint8_t *buf, int buf_size) |
void | ff_parse_close (AVCodecParserContext *s) |
void | ff_fetch_timestamp (AVCodecParserContext *s, int off, int remove, int fuzzy) |
Fetch timestamps for a specific byte within the current access unit. More... | |
#define END_NOT_FOUND (-100) |
Definition at line 40 of file parser.h.
Referenced by adx_parse(), bmp_parse(), cavs_find_frame_end(), dca_find_frame_end(), dnxhd_find_frame_end(), dpx_parse(), ff_aac_ac3_parse(), ff_combine_frame(), ff_h263_find_frame_end(), ff_mpeg1_find_frame_end(), ff_mpeg4_find_frame_end(), find_frame_end(), g729_parse(), gsm_parse(), h261_find_frame_end(), h264_find_frame_end(), h264_parse(), hevc_find_frame_end(), latm_find_frame_end(), mlp_parse(), mpegaudio_parse(), opus_find_frame_end(), png_parse(), pnm_parse(), sbc_parse(), tak_parse(), and vc1_parse().
int ff_combine_frame | ( | ParseContext * | pc, |
int | next, | ||
const uint8_t ** | buf, | ||
int * | buf_size | ||
) |
Combine the (truncated) bitstream to a complete frame.
Definition at line 319 of file parser.c.
Referenced by adx_parse(), bmp_parse(), cavsvideo_parse(), dca_parse(), dnxhd_parse(), dpx_parse(), ff_aac_ac3_parse(), ff_h263_decode_frame(), g729_parse(), gsm_parse(), h261_parse(), h263_parse(), h264_parse(), hevc_parse(), jpeg_parse(), latm_parse(), mlp_parse(), mpeg4video_parse(), mpeg_decode_frame(), mpegaudio_parse(), mpegvideo_parse(), opus_parse(), png_parse(), pnm_parse(), sbc_parse(), sipr_parse(), tak_parse(), and vc1_parse().
int ff_mpeg4video_split | ( | AVCodecContext * | avctx, |
const uint8_t * | buf, | ||
int | buf_size | ||
) |
void ff_parse_close | ( | AVCodecParserContext * | s | ) |
void ff_fetch_timestamp | ( | AVCodecParserContext * | s, |
int | off, | ||
int | remove, | ||
int | fuzzy | ||
) |
Fetch timestamps for a specific byte within the current access unit.
off | byte position within the access unit |
remove | Found timestamps will be removed if set to 1, kept if set to 0. |
fuzzy | Only use found value if it is more informative than what we already have |
Definition at line 174 of file parser.c.
Referenced by av_parser_parse2(), and ff_mpeg1_find_frame_end().