diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-07-14 16:51:28 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-07-14 17:11:11 +0200 |
commit | 68215724997c26d02a215b377de441b511804ecc (patch) | |
tree | 2e17ac91382d16fadc639023d73738efe88980f5 /libavformat/movenc.h | |
parent | ec24796731d39308936e1e0746f06b105a52e072 (diff) | |
download | ffmpeg-68215724997c26d02a215b377de441b511804ecc.tar.gz |
avformat/movenc: dont mark multichannel as mono tracks as containing the center channel
Fixes Ticket3727
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/movenc.h')
-rw-r--r-- | libavformat/movenc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/movenc.h b/libavformat/movenc.h index 04cb1f392a..6ebe265447 100644 --- a/libavformat/movenc.h +++ b/libavformat/movenc.h @@ -100,6 +100,7 @@ typedef struct MOVTrack { int tag; ///< stsd fourcc AVStream *st; AVCodecContext *enc; + int multichannel_as_mono; int vos_len; uint8_t *vos_data; |