Searched refs:ResampleContext (Results 1 - 14 of 14) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/aarch64/
H A Dresample_init.c30 AV_CHECK_OFFSET(struct ResampleContext, filter_bank, FILTER_BANK);
31 AV_CHECK_OFFSET(struct ResampleContext, filter_length, FILTER_LENGTH);
32 AV_CHECK_OFFSET(struct ResampleContext, phase_shift, PHASE_SHIFT);
33 AV_CHECK_OFFSET(struct ResampleContext, phase_mask, PHASE_MASK);
35 void ff_resample_one_dbl_neon(struct ResampleContext *c, void *dst0,
38 void ff_resample_one_flt_neon(struct ResampleContext *c, void *dst0,
41 void ff_resample_one_s16_neon(struct ResampleContext *c, void *dst0,
44 void ff_resample_one_s32_neon(struct ResampleContext *c, void *dst0,
48 void ff_audio_resample_init_aarch64(ResampleContext *c,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswresample/
H A Dresample.h30 typedef struct ResampleContext { struct
56 int (*resample)(struct ResampleContext *c, void *dst,
59 } ResampleContext; typedef in typeref:struct:ResampleContext
61 void swri_resample_dsp_init(ResampleContext *c);
62 void swri_resample_dsp_x86_init(ResampleContext *c);
H A Dsoxr_resample.c32 static struct ResampleContext *create(struct ResampleContext *c, int out_rate, int in_rate, int filter_size, int phase_shift, int linear,
57 c = (struct ResampleContext *)
64 static void destroy(struct ResampleContext * *c){
75 struct ResampleContext * c, AudioData *dst, int dst_size,
90 static int invert_initial_buffer(struct ResampleContext *c, AudioData *dst, const AudioData *src,
H A Dswresample_internal.h132 struct ResampleContext *resample; ///< resampling context
153 typedef struct ResampleContext * (* resample_init_func)(struct ResampleContext *c, int out_rate, int in_rate, int filter_size, int phase_shift, int linear,
155 typedef void (* resample_free_func)(struct ResampleContext **c);
156 typedef int (* multiple_resample_func)(struct ResampleContext *c, AudioData *dst, int dst_size, AudioData *src, int src_size, int *consumed);
158 typedef int (* set_compensation_func)(struct ResampleContext *c, int sample_delta, int compensation_distance);
160 typedef int (* invert_initial_buffer_func)(struct ResampleContext *c, AudioData *dst, const AudioData *src, int src_size, int *dst_idx, int *dst_count);
H A Dresample_dsp.c46 void swri_resample_dsp_init(ResampleContext *c)
H A Dresample.c70 static int build_filter(ResampleContext *c, void *filter, double factor, int tap_count, int alloc, int phase_count, int scale,
174 static ResampleContext *resample_init(ResampleContext *c, int out_rate, int in_rate, int filter_size, int phase_shift, int linear,
250 static void resample_free(ResampleContext **c){
257 static int set_compensation(ResampleContext *c, int sample_delta, int compensation_distance){
270 static int swri_resample(ResampleContext *c,
308 static int multiple_resample(ResampleContext *c, AudioData *dst, int dst_size, AudioData *src, int src_size, int *consumed){
339 ResampleContext *c = s->resample;
365 static int invert_initial_buffer(ResampleContext *c, AudioData *dst, const AudioData *src,
H A Dresample_template.c86 static int RENAME(resample_common)(ResampleContext *c,
126 static int RENAME(resample_linear)(ResampleContext *c,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavresample/
H A Dresample.h28 struct ResampleContext { struct
45 void (*resample_one)(struct ResampleContext *c, void *dst0,
58 * Allocate and initialize a ResampleContext.
61 * ResampleContext.
64 * @return newly-allocated ResampleContext
66 ResampleContext *ff_audio_resample_init(AVAudioResampleContext *avr);
69 * Free a ResampleContext.
71 * @param c ResampleContext
73 void ff_audio_resample_free(ResampleContext **c);
89 * @param c ResampleContext
[all...]
H A Dinternal.h33 typedef struct ResampleContext ResampleContext; typedef in typeref:struct:ResampleContext
95 ResampleContext *resample; /**< resampling context */
111 void ff_audio_resample_init_aarch64(ResampleContext *c,
H A Dresample.c67 static int build_filter(ResampleContext *c, double factor)
120 ResampleContext *ff_audio_resample_init(AVAudioResampleContext *avr)
122 ResampleContext *c;
222 void ff_audio_resample_free(ResampleContext **c)
234 ResampleContext *c;
316 static int resample(ResampleContext *c, void *dst, const void *src,
391 int ff_audio_resample(ResampleContext *c, AudioData *dst, AudioData *src)
495 ResampleContext *c = avr->resample;
H A Dresample_template.c64 static void SET_TYPE(resample_linear)(ResampleContext *c, void *dst0, int dst_index,
85 static void SET_TYPE(resample_one)(ResampleContext *c,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswresample/x86/
H A Dresample_init.c32 int ff_resample_common_##type##_##opt(ResampleContext *c, void *dst, \
34 int ff_resample_linear_##type##_##opt(ResampleContext *c, void *dst, \
46 void swri_resample_dsp_x86_init(ResampleContext *c)
H A Dresample.asm31 struc ResampleContext
59 ; int resample_common_$format(ResampleContext *ctx, $format *dst,
79 mov phase_maskd, [ctxq+ResampleContext.phase_mask]
83 mov indexd, [ctxq+ResampleContext.index]
84 mov fracd, [ctxq+ResampleContext.frac]
85 mov dst_incr_modd, [ctxq+ResampleContext.dst_incr_mod]
86 mov filter_bankq, [ctxq+ResampleContext.filter_bank]
87 mov src_incrd, [ctxq+ResampleContext.src_incr]
89 mov min_filter_len_x4d, [ctxq+ResampleContext.filter_length]
90 mov dst_incr_divd, [ctxq+ResampleContext
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Daf_resample.c38 typedef struct ResampleContext { struct
47 } ResampleContext; typedef in typeref:struct:ResampleContext
51 ResampleContext *s = ctx->priv;
78 ResampleContext *s = ctx->priv;
115 ResampleContext *s = ctx->priv;
172 ResampleContext *s = ctx->priv;
208 ResampleContext *s = ctx->priv;
289 ResampleContext *s = obj;
323 .priv_size = sizeof(ResampleContext),

Completed in 205 milliseconds