[vlc-commits] Fix vorbis in mp4 sample
Jean-Baptiste Kempf
git at videolan.org
Fri Apr 6 01:39:42 CEST 2012
vlc/vlc-2.0 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Apr 5 23:24:58 2012 +0200| [4949deed1d64c2abf914d06e8a8731bd5f58c085] | committer: Jean-Baptiste Kempf
Fix vorbis in mp4 sample
(cherry picked from commit b1b423c17b7d133242a02a185823e91dbe554540)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=4949deed1d64c2abf914d06e8a8731bd5f58c085
---
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 1c69dc4..6f9bf07 100644
--- a/modules/demux/mp4/mp4.c
+++ b/modules/demux/mp4/mp4.c
@@ -1940,6 +1940,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