FFmpeg
|
#include <stdio.h>
#include "libavutil/avstring.h"
#include "libavutil/channel_layout.h"
#include "libavutil/opt.h"
#include "libswresample/swresample.h"
#include "audio.h"
#include "avfilter.h"
#include "formats.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | PanContext |
Macros | |
#define | MAX_CHANNELS 64 |
#define | OFFSET(x) offsetof(PanContext, x) |
Functions | |
static void | skip_spaces (char **arg) |
static int | parse_channel_name (char **arg, int *rchannel, int *rnamed) |
static av_cold int | init (AVFilterContext *ctx) |
static int | are_gains_pure (const PanContext *pan) |
static int | query_formats (AVFilterContext *ctx) |
static int | config_props (AVFilterLink *link) |
static int | filter_frame (AVFilterLink *inlink, AVFrame *insamples) |
static av_cold void | uninit (AVFilterContext *ctx) |
AVFILTER_DEFINE_CLASS (pan) | |
Variables | |
static const AVOption | pan_options [] |
static const AVFilterPad | pan_inputs [] |
static const AVFilterPad | pan_outputs [] |
const AVFilter | ff_af_pan |
Audio panning filter (channels mixing) Original code written by Anders Johansson for MPlayer, reimplemented for FFmpeg.
Definition in file af_pan.c.
#define OFFSET | ( | x | ) | offsetof(PanContext, x) |
|
static |
Definition at line 57 of file af_pan.c.
Referenced by init(), and parse_channel_name().
|
static |
|
static |
Definition at line 214 of file af_pan.c.
Referenced by query_formats().
|
static |
|
static |
|
static |
|
static |
AVFILTER_DEFINE_CLASS | ( | pan | ) |
|
static |
|
static |
|
static |
const AVFilter ff_af_pan |