Module: libav Branch: master Commit: 3e6e89b3d61876b49f4c5d17a36d40e96ccf7ce4
Author: Alex Converse <[email protected]> Committer: Alex Converse <[email protected]> Date: Wed Mar 21 09:35:45 2012 -0700 mov: Add missing terminator to mov_ch_layout_map_1ch. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: [email protected] --- 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 5728ebd..a0fbecc 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[] = { _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
