FFmpeg 7.1 + cuframes input demuxer
Snapshot FFmpeg n7.1 (release tag) с применённым patch'ем для cuframes input format. Используется как FFMPEG_REPO_OVERRIDE в NickM-27/FFmpeg-Builds fork для статической сборки patched binary под Frigate (Debian 12 / glibc 2.36). Apply changes: + libavformat/cuframesdec.c (новый — реализация демуксера) M libavformat/Makefile (CONFIG_CUFRAMES_DEMUXER target) M libavformat/allformats.c (extern declaration) M configure (--enable-libcuframes option + dep check) Patch source: https://git.goldix.org/gx/cuframes (filter/ffmpeg-7.1-cuframes-demuxer.patch) History сброшена (snapshot вместо fork) потому что upstream shallow clone не позволял push в gitea. Полная история FFmpeg — на github.com/FFmpeg/FFmpeg n7.1.
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
/*
|
||||
* IIR filter
|
||||
* Copyright (c) 2008 Konstantin Shishkov
|
||||
*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
* FFmpeg is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* FFmpeg is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with FFmpeg; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* IIR filter interface
|
||||
*/
|
||||
|
||||
#ifndef AVCODEC_IIRFILTER_H
|
||||
#define AVCODEC_IIRFILTER_H
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
struct FFIIRFilterCoeffs;
|
||||
struct FFIIRFilterState;
|
||||
|
||||
enum IIRFilterType{
|
||||
FF_FILTER_TYPE_BESSEL,
|
||||
FF_FILTER_TYPE_BIQUAD,
|
||||
FF_FILTER_TYPE_BUTTERWORTH,
|
||||
FF_FILTER_TYPE_CHEBYSHEV,
|
||||
FF_FILTER_TYPE_ELLIPTIC,
|
||||
};
|
||||
|
||||
enum IIRFilterMode{
|
||||
FF_FILTER_MODE_LOWPASS,
|
||||
FF_FILTER_MODE_HIGHPASS,
|
||||
FF_FILTER_MODE_BANDPASS,
|
||||
FF_FILTER_MODE_BANDSTOP,
|
||||
};
|
||||
|
||||
typedef struct FFIIRFilterContext {
|
||||
/**
|
||||
* Perform IIR filtering on floating-point input samples.
|
||||
*
|
||||
* @param coeffs pointer to filter coefficients
|
||||
* @param state pointer to filter state
|
||||
* @param size input length
|
||||
* @param src source samples
|
||||
* @param sstep source stride
|
||||
* @param dst filtered samples (destination may be the same as input)
|
||||
* @param dstep destination stride
|
||||
*/
|
||||
void (*filter_flt)(const struct FFIIRFilterCoeffs *coeffs,
|
||||
struct FFIIRFilterState *state, int size,
|
||||
const float *src, ptrdiff_t sstep, float *dst, ptrdiff_t dstep);
|
||||
} FFIIRFilterContext;
|
||||
|
||||
/**
|
||||
* Initialize FFIIRFilterContext
|
||||
*/
|
||||
void ff_iir_filter_init(FFIIRFilterContext *f);
|
||||
void ff_iir_filter_init_mips(FFIIRFilterContext *f);
|
||||
|
||||
/**
|
||||
* Initialize filter coefficients.
|
||||
*
|
||||
* @param avc a pointer to an arbitrary struct of which the first
|
||||
* field is a pointer to an AVClass struct
|
||||
* @param filt_type filter type (e.g. Butterworth)
|
||||
* @param filt_mode filter mode (e.g. lowpass)
|
||||
* @param order filter order
|
||||
* @param cutoff_ratio cutoff to input frequency ratio
|
||||
* @param stopband stopband to input frequency ratio (used by bandpass and bandstop filter modes)
|
||||
* @param ripple ripple factor (used only in Chebyshev filters)
|
||||
*
|
||||
* @return pointer to filter coefficients structure or NULL if filter cannot be created
|
||||
*/
|
||||
struct FFIIRFilterCoeffs* ff_iir_filter_init_coeffs(void *avc,
|
||||
enum IIRFilterType filt_type,
|
||||
enum IIRFilterMode filt_mode,
|
||||
int order, float cutoff_ratio,
|
||||
float stopband, float ripple);
|
||||
|
||||
/**
|
||||
* Create new filter state.
|
||||
*
|
||||
* @param order filter order
|
||||
*
|
||||
* @return pointer to new filter state or NULL if state creation fails
|
||||
*/
|
||||
struct FFIIRFilterState* ff_iir_filter_init_state(int order);
|
||||
|
||||
/**
|
||||
* Free filter coefficients.
|
||||
*
|
||||
* @param coeffs pointer allocated with ff_iir_filter_init_coeffs()
|
||||
*/
|
||||
void ff_iir_filter_free_coeffsp(struct FFIIRFilterCoeffs **coeffs);
|
||||
|
||||
/**
|
||||
* Free and zero filter state.
|
||||
*
|
||||
* @param state pointer to pointer allocated with ff_iir_filter_init_state()
|
||||
*/
|
||||
void ff_iir_filter_free_statep(struct FFIIRFilterState **state);
|
||||
|
||||
#endif /* AVCODEC_IIRFILTER_H */
|
||||
Reference in New Issue
Block a user