diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-07-10 22:17:49 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-07-10 22:17:49 +0000 |
commit | bfaac05a7d01a9f3a4cb66014026fa84e279df80 (patch) | |
tree | 13b05a56df83d875eaf63376053c28b19aa7e387 | |
parent | 69e362bb43c8e2b67a9b52205256f73298c66b4a (diff) | |
download | xine-lib-bfaac05a7d01a9f3a4cb66014026fa84e279df80.tar.gz xine-lib-bfaac05a7d01a9f3a4cb66014026fa84e279df80.tar.bz2 |
Add support for m4b extension to the Qt demuxer, to be able to play audiobooks in AAC format. This still requires to be tested with encrypted audiobooks to make sure they fail gracefully.
CVS patchset: 8103
CVS date: 2006/07/10 22:17:49
-rw-r--r-- | src/demuxers/demux_qt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/demuxers/demux_qt.c b/src/demuxers/demux_qt.c index 9719bac51..09a5650e6 100644 --- a/src/demuxers/demux_qt.c +++ b/src/demuxers/demux_qt.c @@ -30,7 +30,7 @@ * build_frame_table * free_qt_info * - * $Id: demux_qt.c,v 1.210 2006/07/10 22:08:13 dgp85 Exp $ + * $Id: demux_qt.c,v 1.211 2006/07/10 22:17:49 dgp85 Exp $ * */ @@ -3054,13 +3054,13 @@ static char *get_identifier (demux_class_t *this_gen) { } static char *get_extensions (demux_class_t *this_gen) { - return "mov qt mp4 m4a"; + return "mov qt mp4 m4a m4b"; } static char *get_mimetypes (demux_class_t *this_gen) { return "video/quicktime: mov,qt: Quicktime animation;" "video/x-quicktime: mov,qt: Quicktime animation;" - "audio/x-m4a: m4a: MPEG-4 audio;" + "audio/x-m4a: m4a,m4b: MPEG-4 audio;" "application/x-quicktimeplayer: qtl: Quicktime list;"; } |