Commit 4949deed authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix vorbis in mp4 sample

(cherry picked from commit b1b423c17b7d133242a02a185823e91dbe554540)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent d6b589b1
...@@ -1940,6 +1940,9 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track, ...@@ -1940,6 +1940,9 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
case( 0xab ): /* DTS-HD Master Audio */ case( 0xab ): /* DTS-HD Master Audio */
p_track->fmt.i_codec = VLC_CODEC_DTS; p_track->fmt.i_codec = VLC_CODEC_DTS;
break; break;
case( 0xDD ):
p_track->fmt.i_codec = VLC_CODEC_VORBIS;
break;
/* Private ID */ /* Private ID */
case( 0xe0 ): /* NeroDigital: dvd subs */ case( 0xe0 ): /* NeroDigital: dvd subs */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment