diff options
author | Alex Converse <alex.converse@gmail.com> | 2012-03-21 09:35:45 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2012-03-22 13:56:44 -0700 |
commit | 3e6e89b3d61876b49f4c5d17a36d40e96ccf7ce4 (patch) | |
tree | 04385696a3db9b8f4d4bd89f7ecd12d2e173b9ad /libavformat | |
parent | e73c6aaabff1169899184c382385fe9afae5b068 (diff) | |
download | ffmpeg-3e6e89b3d61876b49f4c5d17a36d40e96ccf7ce4.tar.gz |
mov: Add missing terminator to mov_ch_layout_map_1ch.
Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: Libav-stable@libav.org
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/mov_chan.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov_chan.c b/libavformat/mov_chan.c index 5728ebd898..a0fbecc991 100644 --- a/libavformat/mov_chan.c +++ b/libavformat/mov_chan.c @@ -155,6 +155,7 @@ static const struct MovChannelLayoutMap mov_ch_layout_map_misc[] = { static const struct MovChannelLayoutMap mov_ch_layout_map_1ch[] = { { MOV_CH_LAYOUT_MONO, AV_CH_LAYOUT_MONO }, // C + { 0, 0 }, }; static const struct MovChannelLayoutMap mov_ch_layout_map_2ch[] = { |