diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-10 01:06:03 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-10 01:08:45 +0200 |
commit | d9e7dc3e16645fca4e804113f13cb3c282b17dae (patch) | |
tree | 5e13e55a589673bd07cfc4f4c3178b056dacb308 /ffmpeg.h | |
parent | 65cb02e87a8f188657843e3e7d91ef19ac8f1629 (diff) | |
download | ffmpeg-d9e7dc3e16645fca4e804113f13cb3c282b17dae.tar.gz |
ffmpeg: do not use SWR_CH_MAX
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r-- | ffmpeg.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; |