[vlc-commits] Fix vorbis in mp4 sample

Jean-Baptiste Kempf git at videolan.org
Fri Apr 6 00:25:07 CEST 2012


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Apr  5 23:24:58 2012 +0200| [b1b423c17b7d133242a02a185823e91dbe554540] | committer: Jean-Baptiste Kempf

Fix vorbis in mp4 sample

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

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

diff --git a/modules/demux/mp4/mp4.c b/modules/demux/mp4/mp4.c
index 7ce346b..d5cd1e2 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -1914,6 +1914,9 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
             case( 0xab ): /* DTS-HD Master Audio */
                 p_track->fmt.i_codec = VLC_CODEC_DTS;
                 break;
+            case( 0xDD ):
+                p_track->fmt.i_codec = VLC_CODEC_VORBIS;
+                break;
 
             /* Private ID */
             case( 0xe0 ): /* NeroDigital: dvd subs */



More information about the vlc-commits mailing list