|
FFmpeg
|
#include "libavutil/common.h"#include "golomb.h"#include "hevc.h"#include "hevc_parse.h"#include "hevc_ps.h"#include "hevc_sei.h"#include "h2645_parse.h"#include "internal.h"#include "parser.h"Go to the source code of this file.
Data Structures | |
| struct | HEVCParserContext |
Macros | |
| #define | START_CODE 0x000001 |
| start_code_prefix_one_3bytes More... | |
| #define | IS_IRAP_NAL(nal) (nal->type >= 16 && nal->type <= 23) |
| #define | IS_IDR_NAL(nal) (nal->type == HEVC_NAL_IDR_W_RADL || nal->type == HEVC_NAL_IDR_N_LP) |
Functions | |
| static int | hevc_parse_slice_header (AVCodecParserContext *s, H2645NAL *nal, AVCodecContext *avctx) |
| static int | parse_nal_units (AVCodecParserContext *s, const uint8_t *buf, int buf_size, AVCodecContext *avctx) |
| Parse NAL units of found picture and decode some basic information. More... | |
| static int | hevc_find_frame_end (AVCodecParserContext *s, const uint8_t *buf, int buf_size) |
| Find the end of the current frame in the bitstream. More... | |
| static int | hevc_parse (AVCodecParserContext *s, AVCodecContext *avctx, const uint8_t **poutbuf, int *poutbuf_size, const uint8_t *buf, int buf_size) |
| static int | hevc_split (AVCodecContext *avctx, const uint8_t *buf, int buf_size) |
| static void | hevc_parser_close (AVCodecParserContext *s) |
Variables | |
| AVCodecParser | ff_hevc_parser |
| #define START_CODE 0x000001 |
start_code_prefix_one_3bytes
Definition at line 34 of file hevc_parser.c.
Referenced by hevc_find_frame_end(), and hevc_split().
Definition at line 36 of file hevc_parser.c.
Referenced by hevc_parse_slice_header().
| #define IS_IDR_NAL | ( | nal | ) | (nal->type == HEVC_NAL_IDR_W_RADL || nal->type == HEVC_NAL_IDR_N_LP) |
Definition at line 37 of file hevc_parser.c.
Referenced by hevc_parse_slice_header().
|
static |
Definition at line 55 of file hevc_parser.c.
Referenced by parse_nal_units().
|
static |
Parse NAL units of found picture and decode some basic information.
| s | parser context. |
| avctx | codec context. |
| buf | buffer with field/frame data. |
| buf_size | size of the buffer. |
Definition at line 181 of file hevc_parser.c.
Referenced by hevc_parse().
|
static |
Find the end of the current frame in the bitstream.
Definition at line 250 of file hevc_parser.c.
Referenced by hevc_parse().
|
static |
Definition at line 290 of file hevc_parser.c.
|
static |
Definition at line 329 of file hevc_parser.c.
|
static |
Definition at line 361 of file hevc_parser.c.
| AVCodecParser ff_hevc_parser |
Definition at line 372 of file hevc_parser.c.
1.8.6