|
FFmpeg
|
#include "libavutil/common.h"#include "libavutil/opt.h"#include "bsf.h"#include "bsf_internal.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_update_side_data (AVBSFContext *bsf, AVPacket *pkt) |
| 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 547 of file h265_metadata_bsf.c.
| #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM) |
Definition at line 548 of file h265_metadata_bsf.c.
| anonymous enum |
| Enumerator | |
|---|---|
| PASS | |
| INSERT | |
| REMOVE | |
Definition at line 29 of file h265_metadata_bsf.c.
| anonymous enum |
| Enumerator | |
|---|---|
| LEVEL_UNSET | |
| LEVEL_AUTO | |
Definition at line 35 of file h265_metadata_bsf.c.
|
static |
Definition at line 75 of file h265_metadata_bsf.c.
Referenced by h265_metadata_filter(), h265_metadata_init(), and h265_metadata_update_side_data().
|
static |
Definition at line 144 of file h265_metadata_bsf.c.
Referenced by h265_metadata_update_sps(), and h265_metadata_update_vps().
|
static |
Definition at line 167 of file h265_metadata_bsf.c.
Referenced by h265_metadata_filter(), h265_metadata_init(), and h265_metadata_update_side_data().
|
static |
Definition at line 197 of file h265_metadata_bsf.c.
Referenced by h265_metadata_filter(), h265_metadata_init(), and h265_metadata_update_side_data().
|
static |
Definition at line 340 of file h265_metadata_bsf.c.
Referenced by h265_metadata_filter().
|
static |
Definition at line 391 of file h265_metadata_bsf.c.
|
static |
Definition at line 493 of file h265_metadata_bsf.c.
|
static |
Definition at line 539 of file h265_metadata_bsf.c.
|
static |
Definition at line 549 of file h265_metadata_bsf.c.
|
static |
Definition at line 633 of file h265_metadata_bsf.c.
|
static |
Definition at line 640 of file h265_metadata_bsf.c.
| const AVBitStreamFilter ff_hevc_metadata_bsf |
Definition at line 644 of file h265_metadata_bsf.c.
1.8.17