| 
    FFmpeg
    
   | 
 
#include "libavutil/log.h"#include "libavutil/opt.h"#include "av1_parse.h"#include "bsf.h"#include "bsf_internal.h"#include "h264.h"#include "hevc.h"#include "startcode.h"#include "vc1_common.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 38 of file remove_extradata_bsf.c.
| #define OFFSET | ( | x | ) | offsetof(RemoveExtradataContext, x) | 
Definition at line 230 of file remove_extradata_bsf.c.
| #define FLAGS (AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_BSF_PARAM) | 
Definition at line 231 of file remove_extradata_bsf.c.
| enum RemoveFreq | 
| Enumerator | |
|---|---|
| REMOVE_FREQ_KEYFRAME | |
| REMOVE_FREQ_ALL | |
| REMOVE_FREQ_NONKEYFRAME | |
Definition at line 32 of file remove_extradata_bsf.c.
Definition at line 45 of file remove_extradata_bsf.c.
Referenced by remove_extradata().
Definition at line 66 of file remove_extradata_bsf.c.
Referenced by remove_extradata().
Definition at line 103 of file remove_extradata_bsf.c.
Referenced by remove_extradata().
Definition at line 135 of file remove_extradata_bsf.c.
Referenced by remove_extradata().
Definition at line 150 of file remove_extradata_bsf.c.
Referenced by remove_extradata().
Definition at line 164 of file remove_extradata_bsf.c.
Referenced by remove_extradata().
      
  | 
  static | 
Definition at line 181 of file remove_extradata_bsf.c.
      
  | 
  static | 
Definition at line 232 of file remove_extradata_bsf.c.
      
  | 
  static | 
Definition at line 241 of file remove_extradata_bsf.c.
| const FFBitStreamFilter ff_remove_extradata_bsf | 
Definition at line 248 of file remove_extradata_bsf.c.
 1.8.17