[vlc-commits] Correctly detect alac in mp4 properties

Jean-Baptiste Kempf git at videolan.org
Fri Apr 6 01:16:08 CEST 2012


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Apr  6 00:15:27 2012 +0200| [7f807d9bb7cb08f1401d5cbec472338ed1d38157] | committer: Jean-Baptiste Kempf

Correctly detect alac in mp4 properties

Should close #6570

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7f807d9bb7cb08f1401d5cbec472338ed1d38157
---

 modules/demux/mp4/mp4.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/modules/demux/mp4/mp4.c b/modules/demux/mp4/mp4.c
index b1f546b..738cdb0 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -2005,6 +2005,11 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
                             p_sample->data.p_sample_soun->p_qt_description,
                             p_track->fmt.i_extra);
                 }
+                if( p_track->fmt.i_extra >= 56 && p_sample->i_type == VLC_CODEC_ALAC )
+                {
+                    p_track->fmt.audio.i_channels = *((uint8_t*)p_track->fmt.p_extra + 41);
+                    p_track->fmt.audio.i_rate = GetDWBE((uint8_t*)p_track->fmt.p_extra + 52);
+                }
                 break;
 
             /* avc1: send avcC (h264 without annexe B, ie without start code)*/



More information about the vlc-commits mailing list