Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-08-10 03:06:03 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-08-10 03:08:45 +0400
commitd9e7dc3e16645fca4e804113f13cb3c282b17dae (patch)
tree5e13e55a589673bd07cfc4f4c3178b056dacb308 /ffmpeg.h
parent65cb02e87a8f188657843e3e7d91ef19ac8f1629 (diff)
ffmpeg: do not use SWR_CH_MAX
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'ffmpeg.h')
-rw-r--r--ffmpeg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/ffmpeg.h b/ffmpeg.h
index 06ef13243a..d124a2cf9b 100644
--- a/ffmpeg.h
+++ b/ffmpeg.h
@@ -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;