You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
swresample: support up to 32 channels
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -30,14 +30,14 @@
|
|||||||
#include "libavutil/samplefmt.h"
|
#include "libavutil/samplefmt.h"
|
||||||
|
|
||||||
#define LIBSWRESAMPLE_VERSION_MAJOR 0
|
#define LIBSWRESAMPLE_VERSION_MAJOR 0
|
||||||
#define LIBSWRESAMPLE_VERSION_MINOR 7
|
#define LIBSWRESAMPLE_VERSION_MINOR 8
|
||||||
#define LIBSWRESAMPLE_VERSION_MICRO 100
|
#define LIBSWRESAMPLE_VERSION_MICRO 100
|
||||||
|
|
||||||
#define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \
|
#define LIBSWRESAMPLE_VERSION_INT AV_VERSION_INT(LIBSWRESAMPLE_VERSION_MAJOR, \
|
||||||
LIBSWRESAMPLE_VERSION_MINOR, \
|
LIBSWRESAMPLE_VERSION_MINOR, \
|
||||||
LIBSWRESAMPLE_VERSION_MICRO)
|
LIBSWRESAMPLE_VERSION_MICRO)
|
||||||
|
|
||||||
#define SWR_CH_MAX 16 ///< Maximum number of channels
|
#define SWR_CH_MAX 32 ///< Maximum number of channels
|
||||||
|
|
||||||
#define SWR_FLAG_RESAMPLE 1 ///< Force resampling even if equal sample rate
|
#define SWR_FLAG_RESAMPLE 1 ///< Force resampling even if equal sample rate
|
||||||
//TODO use int resample ?
|
//TODO use int resample ?
|
||||||
|
Reference in New Issue
Block a user