#include <stdint.h>
#include "libavutil/avutil.h"
#include "libavutil/error.h"
#include "libavutil/log.h"
#include "libavutil/mem.h"
#include "libavutil/pixfmt.h"
#include "avcodec.h"
#include "get_bits.h"
#include "golomb.h"
#include "h264.h"
#include "h264dsp.h"
#include "h264_parse.h"
#include "h264_sei.h"
#include "h264_ps.h"
#include "h2645_parse.h"
#include "h264data.h"
#include "mpegutils.h"
#include "parser.h"
#include "refstruct.h"
#include "startcode.h"
Go to the source code of this file.
|
static int | find_start_code (const uint8_t *buf, int buf_size, int buf_index, int next_avc) |
|
static int | h264_find_frame_end (H264ParseContext *p, const uint8_t *buf, int buf_size, void *logctx) |
|
static int | scan_mmco_reset (AVCodecParserContext *s, GetBitContext *gb, void *logctx) |
|
static int | parse_nal_units (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t *const buf, int buf_size) |
| Parse NAL units of found picture and decode some basic information. More...
|
|
static int | h264_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
|
static void | h264_close (AVCodecParserContext *s) |
|
static av_cold int | init (AVCodecParserContext *s) |
|
H.264 / AVC / MPEG-4 part10 parser.
- Author
- Michael Niedermayer micha.nosp@m.elni.nosp@m.@gmx..nosp@m.at
Definition in file h264_parser.c.
◆ UNCHECKED_BITSTREAM_READER
#define UNCHECKED_BITSTREAM_READER 1 |
◆ find_start_code()
static int find_start_code |
( |
const uint8_t * |
buf, |
|
|
int |
buf_size, |
|
|
int |
buf_index, |
|
|
int |
next_avc |
|
) |
| |
|
static |
◆ h264_find_frame_end()
static int h264_find_frame_end |
( |
H264ParseContext * |
p, |
|
|
const uint8_t * |
buf, |
|
|
int |
buf_size, |
|
|
void * |
logctx |
|
) |
| |
|
static |
◆ scan_mmco_reset()
◆ parse_nal_units()
Parse NAL units of found picture and decode some basic information.
- Parameters
-
s | parser context. |
avctx | codec context. |
buf | buffer with field/frame data. |
buf_size | size of the buffer. |
Definition at line 257 of file h264_parser.c.
Referenced by h264_parse().
◆ h264_parse()
◆ h264_close()
◆ init()
◆ ff_h264_parser
static int h264_parse(AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size)