|
FFmpeg
|
#include "libavutil/common.h"#include "libavutil/opt.h"#include "bsf.h"#include "cbs.h"#include "cbs_h265.h"#include "hevc.h"#include "h265_profile_level.h"Go to the source code of this file.
Data Structures | |
| struct | H265MetadataContext |
Macros | |
| #define | SET_OR_INFER(field, value, present_flag, infer) |
| #define | CROP(border, unit) |
| #define | OFFSET(x) offsetof(H265MetadataContext, x) |
| #define | FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM) |
| #define | LEVEL(name, value) |
Enumerations | |
| enum | { PASS, INSERT, REMOVE } |
| enum | { LEVEL_UNSET = -2, LEVEL_AUTO = -1 } |
Functions | |
| static void | h265_metadata_guess_level (AVBSFContext *bsf, const CodedBitstreamFragment *au) |
| static void | h265_metadata_update_level (AVBSFContext *bsf, uint8_t *level_idc) |
| static int | h265_metadata_update_vps (AVBSFContext *bsf, H265RawVPS *vps) |
| static int | h265_metadata_update_sps (AVBSFContext *bsf, H265RawSPS *sps) |
| static int | h265_metadata_filter (AVBSFContext *bsf, AVPacket *pkt) |
| static int | h265_metadata_init (AVBSFContext *bsf) |
| static void | h265_metadata_close (AVBSFContext *bsf) |
Variables | |
| static const AVOption | h265_metadata_options [] |
| static const AVClass | h265_metadata_class |
| static enum AVCodecID | h265_metadata_codec_ids [] |
| const AVBitStreamFilter | ff_hevc_metadata_bsf |
| #define CROP | ( | border, | |
| unit | |||
| ) |
| #define OFFSET | ( | x | ) | offsetof(H265MetadataContext, x) |
Definition at line 491 of file h265_metadata_bsf.c.
| #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM) |
Definition at line 492 of file h265_metadata_bsf.c.
| anonymous enum |
| Enumerator | |
|---|---|
| PASS | |
| INSERT | |
| REMOVE | |
Definition at line 28 of file h265_metadata_bsf.c.
| anonymous enum |
| Enumerator | |
|---|---|
| LEVEL_UNSET | |
| LEVEL_AUTO | |
Definition at line 34 of file h265_metadata_bsf.c.
|
static |
Definition at line 74 of file h265_metadata_bsf.c.
Referenced by h265_metadata_filter(), and h265_metadata_init().
|
static |
Definition at line 143 of file h265_metadata_bsf.c.
Referenced by h265_metadata_update_sps(), and h265_metadata_update_vps().
|
static |
Definition at line 166 of file h265_metadata_bsf.c.
Referenced by h265_metadata_filter(), and h265_metadata_init().
|
static |
Definition at line 196 of file h265_metadata_bsf.c.
Referenced by h265_metadata_filter(), and h265_metadata_init().
|
static |
Definition at line 339 of file h265_metadata_bsf.c.
|
static |
Definition at line 437 of file h265_metadata_bsf.c.
|
static |
Definition at line 483 of file h265_metadata_bsf.c.
|
static |
Definition at line 493 of file h265_metadata_bsf.c.
|
static |
Definition at line 577 of file h265_metadata_bsf.c.
|
static |
Definition at line 584 of file h265_metadata_bsf.c.
| const AVBitStreamFilter ff_hevc_metadata_bsf |
Definition at line 588 of file h265_metadata_bsf.c.
1.8.17