Commit d9e7dc3e authored by Michael Niedermayer's avatar Michael Niedermayer

ffmpeg: do not use SWR_CH_MAX

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 65cb02e8
......@@ -402,7 +402,8 @@ typedef struct OutputStream {
double forced_keyframes_expr_const_values[FKF_NB];
/* audio only */
int audio_channels_map[SWR_CH_MAX]; /* list of the channels id to pick from the source stream */
#define FF_CH_MAX 32
int audio_channels_map[FF_CH_MAX]; /* list of the channels id to pick from the source stream */
int audio_channels_mapped; /* number of channels in audio_channels_map */
char *logfile_prefix;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment