FFmpeg  3.3.4
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
Data Fields
AVBitStreamFilter Struct Reference

#include <libavcodec/avcodec.h>

Data Fields

const char * name
 
enum AVCodecIDcodec_ids
 A list of codec ids supported by the filter, terminated by AV_CODEC_ID_NONE. More...
 
const AVClasspriv_class
 A class for the private data, used to declare bitstream filter private AVOptions. More...
 
int priv_data_size
 
int(* init )(AVBSFContext *ctx)
 
int(* filter )(AVBSFContext *ctx, AVPacket *pkt)
 
void(* close )(AVBSFContext *ctx)
 

Detailed Description

Definition at line 5879 of file avcodec.h.

Field Documentation

const char* AVBitStreamFilter::name

Definition at line 5880 of file avcodec.h.

enum AVCodecID* AVBitStreamFilter::codec_ids

A list of codec ids supported by the filter, terminated by AV_CODEC_ID_NONE.

May be NULL, in that case the bitstream filter works with any codec id.

Definition at line 5887 of file avcodec.h.

const AVClass* AVBitStreamFilter::priv_class

A class for the private data, used to declare bitstream filter private AVOptions.

This field is NULL for bitstream filters that do not declare any options.

If this field is non-NULL, the first member of the filter private data must be a pointer to AVClass, which will be set by libavcodec generic code to this class.

Definition at line 5898 of file avcodec.h.

int AVBitStreamFilter::priv_data_size

Definition at line 5908 of file avcodec.h.

int(* AVBitStreamFilter::init)(AVBSFContext *ctx)

Definition at line 5909 of file avcodec.h.

int(* AVBitStreamFilter::filter)(AVBSFContext *ctx, AVPacket *pkt)

Definition at line 5910 of file avcodec.h.

void(* AVBitStreamFilter::close)(AVBSFContext *ctx)

Definition at line 5911 of file avcodec.h.


The documentation for this struct was generated from the following file: