mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
lavfi: drop internal.h
All that remains in it are things that belong in avfilter_internal.h. Move them there and remove internal.h
This commit is contained in:
parent
90e4af65e1
commit
6d75d44d90
@ -34,7 +34,6 @@
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
static const char * const var_names[] = {
|
||||
"ch", ///< the value of the current channel
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "formats.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum OutModes {
|
||||
IN_MODE,
|
||||
|
@ -19,7 +19,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
{
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define MAX_SPLITS 16
|
||||
#define MAX_BANDS MAX_SPLITS + 1
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "libavutil/opt.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
typedef struct LFOContext {
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct DeclickChannel {
|
||||
double *auxiliary;
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ChanDelay {
|
||||
int64_t delay;
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum FilterType {
|
||||
DC_TYPE,
|
||||
|
@ -20,7 +20,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ADerivativeContext {
|
||||
const AVClass *class;
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
static const char * const var_names[] = {
|
||||
"ch", ///< the value of the current channel
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AudioEchoContext {
|
||||
const AVClass *class;
|
||||
|
@ -21,7 +21,6 @@
|
||||
#include "libavutil/opt.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
typedef struct BiquadCoeffs {
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "libavutil/opt.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
typedef struct ChannelParams {
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AudioFadeContext {
|
||||
const AVClass *class;
|
||||
|
@ -20,7 +20,6 @@
|
||||
|
||||
#include "libavutil/avstring.h"
|
||||
#include "libavutil/mem.h"
|
||||
#include "libavfilter/internal.h"
|
||||
#include "libavutil/common.h"
|
||||
#include "libavutil/cpu.h"
|
||||
#include "libavutil/opt.h"
|
||||
|
@ -41,7 +41,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "af_afirdsp.h"
|
||||
|
||||
#define MAX_IR_STREAMS 32
|
||||
|
@ -32,7 +32,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AFormatContext {
|
||||
const AVClass *class;
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "video.h"
|
||||
|
||||
typedef struct ThreadData {
|
||||
|
@ -33,7 +33,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct MetaItem {
|
||||
int64_t pts;
|
||||
|
@ -32,7 +32,6 @@
|
||||
#include "filters.h"
|
||||
#include "audio.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define SWR_CH_MAX 64
|
||||
|
||||
|
@ -44,7 +44,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define INPUT_ON 1 /**< input is active */
|
||||
#define INPUT_EOF 2 /**< input has reached EOF (may still be active) */
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AudioMultiplyContext {
|
||||
const AVClass *class;
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
#include "video.h"
|
||||
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AudioNLMDNDSPContext {
|
||||
float (*compute_distance_ssd)(const float *f1, const float *f2, ptrdiff_t K);
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum OutModes {
|
||||
IN_MODE,
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "libavutil/internal.h"
|
||||
|
||||
const AVFilter ff_af_anull = {
|
||||
|
@ -33,7 +33,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct APadContext {
|
||||
const AVClass *class;
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "generate_wave_table.h"
|
||||
|
||||
typedef struct AudioPhaserContext {
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AudioPsyClipContext {
|
||||
const AVClass *class;
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
enum PulsatorModes { SINE, TRIANGLE, SQUARE, SAWUP, SAWDOWN, NB_MODES };
|
||||
|
@ -34,7 +34,6 @@
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AResampleContext {
|
||||
const AVClass *class;
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "formats.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum OutModes {
|
||||
IN_MODE,
|
||||
|
@ -26,7 +26,6 @@
|
||||
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ChanStats {
|
||||
double u;
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ASNSContext {
|
||||
const AVClass *class;
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ASetRateContext {
|
||||
const AVClass *class;
|
||||
|
@ -39,7 +39,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AShowInfoContext {
|
||||
/**
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "window_func.h"
|
||||
|
||||
#define MEASURE_ALL UINT_MAX
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ASRContext {
|
||||
const AVClass *class;
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define HISTOGRAM_SIZE 8192
|
||||
#define HISTOGRAM_MAX (HISTOGRAM_SIZE-1)
|
||||
|
@ -48,7 +48,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
/**
|
||||
* A fragment of audio waveform
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AudioXCorrelateContext {
|
||||
const AVClass *class;
|
||||
|
@ -73,7 +73,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum FilterType {
|
||||
biquad,
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef void (*filter_func)(t_bs2bdp bs2bdp, uint8_t *sample, int n);
|
||||
|
||||
|
@ -37,7 +37,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
struct ChannelMap {
|
||||
int in_channel;
|
||||
|
@ -33,7 +33,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define MAX_CH 64
|
||||
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "generate_wave_table.h"
|
||||
|
||||
typedef struct ChorusContext {
|
||||
|
@ -36,7 +36,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ChanParam {
|
||||
double attack;
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct CompensationDelayContext {
|
||||
const AVClass *class;
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct DCShiftContext {
|
||||
const AVClass *class;
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
#include <float.h>
|
||||
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define BINS 32768
|
||||
|
||||
|
@ -41,7 +41,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
static const char * const var_names[] = {
|
||||
"ch", ///< the value of the current channel
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include "libavutil/tx.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
#define RDFT_BITS_MIN 4
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "generate_wave_table.h"
|
||||
|
||||
#define INTERPOLATION_LINEAR 0
|
||||
|
@ -49,7 +49,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
#define PEAK_EXT_LEVEL 0x5981 /* + sizeof(peaktab)-1 = 0x8000 */
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
#define TIME_DOMAIN 0
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "formats.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ChannelMap {
|
||||
int input; ///< input stream index
|
||||
|
@ -36,7 +36,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct MetaItem {
|
||||
int64_t pts;
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
#include "ebur128.h"
|
||||
|
||||
|
@ -36,7 +36,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct URITable {
|
||||
char **uris;
|
||||
|
@ -36,7 +36,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct CompandSegment {
|
||||
double x, y;
|
||||
|
@ -37,7 +37,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define MAX_CHANNELS 64
|
||||
|
||||
|
@ -32,7 +32,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define HISTOGRAM_SLOTS 12000
|
||||
#define BUTTER_ORDER 2
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct RubberBandContext {
|
||||
const AVClass *class;
|
||||
|
@ -36,7 +36,6 @@
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "hermite.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct SidechainCompressContext {
|
||||
const AVClass *class;
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct SilenceDetectContext {
|
||||
const AVClass *class;
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "avfilter.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum SilenceDetect {
|
||||
D_AVG,
|
||||
|
@ -38,7 +38,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
#define TIME_DOMAIN 0
|
||||
|
@ -38,7 +38,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define MAX_ITEMS 882000
|
||||
#define MIN_PEAK (1. / 32768.)
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
#define NBANDS 17
|
||||
#define M 15
|
||||
|
@ -26,7 +26,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "audio.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "formats.h"
|
||||
#include "window_func.h"
|
||||
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "libavutil/opt.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
typedef struct TremoloContext {
|
||||
|
@ -22,7 +22,6 @@
|
||||
#include "libavutil/opt.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
#include "generate_wave_table.h"
|
||||
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
#include <float.h>
|
||||
|
||||
|
@ -37,7 +37,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "af_volume.h"
|
||||
|
||||
static const char * const precision_str[] = {
|
||||
|
@ -23,7 +23,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct VolDetectContext {
|
||||
/**
|
||||
|
@ -20,7 +20,6 @@
|
||||
|
||||
#include "libavutil/tx.h"
|
||||
#include "avfilter.h"
|
||||
#include "internal.h"
|
||||
#include "audio.h"
|
||||
|
||||
#undef ctype
|
||||
|
@ -21,7 +21,6 @@
|
||||
#include "libavutil/internal.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
static int null_filter_frame(AVFilterLink *link, AVFrame *frame)
|
||||
{
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AFDelaySrcContext {
|
||||
const AVClass *class;
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "window_func.h"
|
||||
|
||||
typedef struct AudioFIRSourceContext {
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "libavutil/lfg.h"
|
||||
#include "libavutil/random_seed.h"
|
||||
|
||||
|
@ -34,7 +34,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct ANullContext {
|
||||
const AVClass *class;
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include "filters.h"
|
||||
#include "audio.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct FliteContext {
|
||||
const AVClass *class;
|
||||
|
@ -24,7 +24,6 @@
|
||||
#include "audio.h"
|
||||
#include "avfilter.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "filters.h"
|
||||
#include "window_func.h"
|
||||
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct SincContext {
|
||||
const AVClass *class;
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct SineContext {
|
||||
const AVClass *class;
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "avfilter_internal.h"
|
||||
#include "filters.h"
|
||||
#include "framepool.h"
|
||||
#include "internal.h"
|
||||
|
||||
const AVFilterPad ff_audio_default_filterpad[1] = {
|
||||
{
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include "formats.h"
|
||||
#include "audio.h"
|
||||
#include "video.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct Audio3dScopeContext {
|
||||
const AVClass *class;
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "formats.h"
|
||||
#include "audio.h"
|
||||
#include "video.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AudioBitScopeContext {
|
||||
const AVClass *class;
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "video.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum DisplayScale { LINEAR, SQRT, CBRT, LOG, RLOG, NB_SCALES };
|
||||
enum AmplitudeScale { ALINEAR, ALOG, NB_ASCALES };
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include "formats.h"
|
||||
#include "audio.h"
|
||||
#include "video.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct AudioPhaseMeterContext {
|
||||
const AVClass *class;
|
||||
|
@ -32,7 +32,6 @@
|
||||
#include "formats.h"
|
||||
#include "audio.h"
|
||||
#include "video.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum VectorScopeMode {
|
||||
LISSAJOUS,
|
||||
|
@ -30,7 +30,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "video.h"
|
||||
#include "audio.h"
|
||||
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "internal.h"
|
||||
#include "lavfutils.h"
|
||||
#include "lswsutils.h"
|
||||
#include "video.h"
|
||||
|
@ -23,7 +23,6 @@
|
||||
|
||||
#include "libavutil/tx.h"
|
||||
#include "avfilter.h"
|
||||
#include "internal.h"
|
||||
|
||||
typedef struct Coeffs {
|
||||
float *val;
|
||||
|
@ -33,7 +33,6 @@
|
||||
#include "video.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
|
||||
enum FrequencyScale {
|
||||
FSCALE_LINEAR,
|
||||
|
@ -34,7 +34,6 @@
|
||||
#include "formats.h"
|
||||
#include "video.h"
|
||||
#include "avfilter.h"
|
||||
#include "internal.h"
|
||||
#include "window_func.h"
|
||||
|
||||
enum DataMode { MAGNITUDE, PHASE, DELAY, NB_DATA };
|
||||
|
@ -31,7 +31,6 @@
|
||||
#include "video.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "window_func.h"
|
||||
|
||||
typedef struct ShowSpatialContext {
|
||||
|
@ -45,7 +45,6 @@
|
||||
#include "video.h"
|
||||
#include "avfilter.h"
|
||||
#include "filters.h"
|
||||
#include "internal.h"
|
||||
#include "window_func.h"
|
||||
|
||||
enum DisplayMode { COMBINED, SEPARATE, NB_MODES };
|
||||
|
@ -28,7 +28,6 @@
|
||||
#include "filters.h"
|
||||
#include "formats.h"
|
||||
#include "video.h"
|
||||
#include "internal.h"
|
||||
|
||||
static const char *const var_names[] = { "VOLUME", "CHANNEL", "PEAK", NULL };
|
||||
enum { VAR_VOLUME, VAR_CHANNEL, VAR_PEAK, VAR_VARS_NB };
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user