From ad791b5a1447f6bdbf23d337ad654503234b4e34 Mon Sep 17 00:00:00 2001 From: Torsten Jager Date: Mon, 30 Dec 2013 15:38:50 +0100 Subject: Support vorbis audio inside .mp4. --- src/demuxers/demux_qt.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 0aaab4e50..de00dd8ab 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -2936,6 +2936,9 @@ static void demux_qt_send_headers(demux_plugin_t *this_gen) { * specified by the object type id field in the esds atom */ if (audio_trak->properties->audio.codec_fourcc == MP4A_FOURCC) { switch (audio_trak->object_type_id) { + case 221: + audio_trak->properties->audio.codec_buftype = BUF_AUDIO_VORBIS; + break; case 107: audio_trak->properties->audio.codec_buftype = BUF_AUDIO_MPEG; break; -- cgit v1.2.3