FFmpeg
|
#include "libavutil/log.h"
#include "libavutil/opt.h"
#include "av1_parse.h"
#include "bsf.h"
#include "bsf_internal.h"
#include "h264.h"
#include "startcode.h"
#include "vc1_common.h"
#include "hevc/hevc.h"
Go to the source code of this file.
Data Structures | |
struct | RemoveExtradataContext |
Macros | |
#define | START_CODE 0x000001 |
#define | OFFSET(x) offsetof(RemoveExtradataContext, x) |
#define | FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM) |
Enumerations | |
enum | RemoveFreq { REMOVE_FREQ_KEYFRAME, REMOVE_FREQ_ALL, REMOVE_FREQ_NONKEYFRAME } |
Functions | |
static int | av1_split (const uint8_t *buf, int buf_size, void *logctx) |
static int | h264_split (const uint8_t *buf, int buf_size) |
static int | hevc_split (const uint8_t *buf, int buf_size) |
static int | mpegvideo_split (const uint8_t *buf, int buf_size) |
static int | mpeg4video_split (const uint8_t *buf, int buf_size) |
static int | vc1_split (const uint8_t *buf, int buf_size) |
static int | remove_extradata (AVBSFContext *ctx, AVPacket *pkt) |
Variables | |
static const AVOption | options [] |
static const AVClass | remove_extradata_class |
const FFBitStreamFilter | ff_remove_extradata_bsf |
#define START_CODE 0x000001 |
Definition at line 39 of file remove_extradata.c.
#define OFFSET | ( | x | ) | offsetof(RemoveExtradataContext, x) |
Definition at line 231 of file remove_extradata.c.
#define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM) |
Definition at line 232 of file remove_extradata.c.
enum RemoveFreq |
Enumerator | |
---|---|
REMOVE_FREQ_KEYFRAME | |
REMOVE_FREQ_ALL | |
REMOVE_FREQ_NONKEYFRAME |
Definition at line 33 of file remove_extradata.c.
|
static |
Definition at line 46 of file remove_extradata.c.
Referenced by remove_extradata().
|
static |
Definition at line 67 of file remove_extradata.c.
Referenced by remove_extradata().
|
static |
Definition at line 104 of file remove_extradata.c.
Referenced by remove_extradata().
|
static |
Definition at line 136 of file remove_extradata.c.
Referenced by remove_extradata().
|
static |
Definition at line 151 of file remove_extradata.c.
Referenced by remove_extradata().
|
static |
Definition at line 165 of file remove_extradata.c.
Referenced by remove_extradata().
|
static |
Definition at line 182 of file remove_extradata.c.
|
static |
Definition at line 233 of file remove_extradata.c.
|
static |
Definition at line 242 of file remove_extradata.c.
const FFBitStreamFilter ff_remove_extradata_bsf |
Definition at line 249 of file remove_extradata.c.