[FFmpeg-cvslog] avformat/movenc: treat ALAC same as FLAC and write correct info

Paul B Mahol git at videolan.org
Fri Dec 14 13:14:21 EET 2018


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Fri Dec 14 12:10:25 2018 +0100| [d9a91d58a17ff485a02cd63581ba6f528315c767] | committer: Paul B Mahol

avformat/movenc: treat ALAC same as FLAC and write correct info

Fixes #7291.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d9a91d58a17ff485a02cd63581ba6f528315c767
---

 libavformat/movenc.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 28cf8b719c..adaff4c5e9 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1079,12 +1079,14 @@ static int mov_write_audio_tag(AVFormatContext *s, AVIOContext *pb, MOVMuxContex
             avio_wb16(pb, track->audio_vbr ? -2 : 0); /* compression ID */
         } else { /* reserved for mp4/3gp */
             if (track->par->codec_id == AV_CODEC_ID_FLAC ||
+                track->par->codec_id == AV_CODEC_ID_ALAC ||
                 track->par->codec_id == AV_CODEC_ID_OPUS) {
                 avio_wb16(pb, track->par->channels);
             } else {
                 avio_wb16(pb, 2);
             }
-            if (track->par->codec_id == AV_CODEC_ID_FLAC) {
+            if (track->par->codec_id == AV_CODEC_ID_FLAC ||
+                track->par->codec_id == AV_CODEC_ID_ALAC) {
                 avio_wb16(pb, track->par->bits_per_raw_sample);
             } else {
                 avio_wb16(pb, 16);



More information about the ffmpeg-cvslog mailing list