diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2005-05-21 14:13:04 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2005-05-21 14:13:04 +0000 |
commit | c8991fceacdbcebdd945407ae926a40e9b1a3cec (patch) | |
tree | 15a90c28c5e6c395a40d77e89d01624c40916f76 /src | |
parent | 072445b01fd6e0c2658043834e60df7a4318c350 (diff) | |
download | xine-lib-c8991fceacdbcebdd945407ae926a40e9b1a3cec.tar.gz xine-lib-c8991fceacdbcebdd945407ae926a40e9b1a3cec.tar.bz2 |
Update description
CVS patchset: 7554
CVS date: 2005/05/21 14:13:04
Diffstat (limited to 'src')
-rw-r--r-- | src/demuxers/demux_aac.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/demuxers/demux_aac.c b/src/demuxers/demux_aac.c index 7afbab94c..6201f5b9e 100644 --- a/src/demuxers/demux_aac.c +++ b/src/demuxers/demux_aac.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2001-2003 the xine project + * Copyright (C) 2001-2005 the xine project * * This file is part of xine, a free video player. * @@ -18,10 +18,10 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * * Raw AAC File Demuxer by Mike Melanson (melanson@pcisys.net) - * This demuxer presently only detects a raw AAC file by the extension - * '.aac'. Then it shovels buffer-sized chunks over to the AAC decoder. + * This demuxer detects ADIF and ADTS headers in AAC files. + * Then it shovels buffer-sized chunks over to the AAC decoder. * - * $Id: demux_aac.c,v 1.6 2005/05/21 09:50:32 jstembridge Exp $ + * $Id: demux_aac.c,v 1.7 2005/05/21 14:13:04 jstembridge Exp $ */ #ifdef HAVE_CONFIG_H @@ -275,11 +275,11 @@ static demux_plugin_t *open_plugin (demux_class_t *class_gen, xine_stream_t *str } static char *get_description (demux_class_t *this_gen) { - return "Raw AAC demux plugin"; + return "ADIF/ADTS AAC demux plugin"; } static char *get_identifier (demux_class_t *this_gen) { - return "Raw AAC"; + return "AAC"; } static char *get_extensions (demux_class_t *this_gen) { |