FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
af_asyncts.c File Reference
#include "libavresample/avresample.h"
#include "libavutil/attributes.h"
#include "libavutil/audio_fifo.h"
#include "libavutil/common.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "libavutil/samplefmt.h"
#include "audio.h"
#include "avfilter.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  ASyncContext
 

Macros

#define OFFSET(x)   offsetof(ASyncContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM
 
#define F   AV_OPT_FLAG_FILTERING_PARAM
 

Functions

 AVFILTER_DEFINE_CLASS (asyncts)
 
static av_cold int init (AVFilterContext *ctx)
 
static av_cold void uninit (AVFilterContext *ctx)
 
static int config_props (AVFilterLink *link)
 
static int64_t get_delay (ASyncContext *s)
 
static void handle_trimming (AVFilterContext *ctx)
 
static int request_frame (AVFilterLink *link)
 
static int write_to_fifo (ASyncContext *s, AVFrame *buf)
 
static int filter_frame (AVFilterLink *inlink, AVFrame *buf)
 

Variables

static const AVOption asyncts_options []
 
static const AVFilterPad avfilter_af_asyncts_inputs []
 
static const AVFilterPad avfilter_af_asyncts_outputs []
 
AVFilter avfilter_af_asyncts
 

Macro Definition Documentation

#define OFFSET (   x)    offsetof(ASyncContext, x)

Definition at line 50 of file af_asyncts.c.

#define A   AV_OPT_FLAG_AUDIO_PARAM

Definition at line 51 of file af_asyncts.c.

Definition at line 52 of file af_asyncts.c.

Function Documentation

AVFILTER_DEFINE_CLASS ( asyncts  )
static av_cold int init ( AVFilterContext ctx)
static

Definition at line 64 of file af_asyncts.c.

static av_cold void uninit ( AVFilterContext ctx)
static

Definition at line 74 of file af_asyncts.c.

static int config_props ( AVFilterLink link)
static

Definition at line 84 of file af_asyncts.c.

static int64_t get_delay ( ASyncContext s)
static

Definition at line 113 of file af_asyncts.c.

Referenced by filter_frame(), and request_frame().

static void handle_trimming ( AVFilterContext ctx)
static

Definition at line 118 of file af_asyncts.c.

Referenced by filter_frame(), and request_frame().

static int request_frame ( AVFilterLink link)
static

Definition at line 132 of file af_asyncts.c.

static int write_to_fifo ( ASyncContext s,
AVFrame buf 
)
static

Definition at line 167 of file af_asyncts.c.

Referenced by filter_frame().

static int filter_frame ( AVFilterLink inlink,
AVFrame buf 
)
static

Definition at line 175 of file af_asyncts.c.

Variable Documentation

const AVOption asyncts_options[]
static
Initial value:
= {
{ "compensate", "Stretch/squeeze the data to make it match the timestamps", OFFSET(resample), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, A|F },
{ "min_delta", "Minimum difference between timestamps and audio data "
"(in seconds) to trigger padding/trimmin the data.", OFFSET(min_delta_sec), AV_OPT_TYPE_FLOAT, { .dbl = 0.1 }, 0, INT_MAX, A|F },
{ "max_comp", "Maximum compensation in samples per second.", OFFSET(max_comp), AV_OPT_TYPE_INT, { .i64 = 500 }, 0, INT_MAX, A|F },
{ "first_pts", "Assume the first pts should be this value.", OFFSET(first_pts), AV_OPT_TYPE_INT64, { .i64 = AV_NOPTS_VALUE }, INT64_MIN, INT64_MAX, A|F },
{ NULL }
}

Definition at line 53 of file af_asyncts.c.

const AVFilterPad avfilter_af_asyncts_inputs[]
static
Initial value:
= {
{
.name = "default",
.filter_frame = filter_frame
},
{ NULL }
}

Definition at line 293 of file af_asyncts.c.

const AVFilterPad avfilter_af_asyncts_outputs[]
static
Initial value:
= {
{
.name = "default",
.config_props = config_props,
.request_frame = request_frame
},
{ NULL }
}

Definition at line 302 of file af_asyncts.c.

AVFilter avfilter_af_asyncts
Initial value:
= {
.name = "asyncts",
.description = NULL_IF_CONFIG_SMALL("Sync audio data to timestamps"),
.init = init,
.uninit = uninit,
.priv_size = sizeof(ASyncContext),
.priv_class = &asyncts_class,
}

Definition at line 312 of file af_asyncts.c.