summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJames Stembridge <jstembridge@users.sourceforge.net>2005-05-21 14:09:54 +0000
committerJames Stembridge <jstembridge@users.sourceforge.net>2005-05-21 14:09:54 +0000
commit072445b01fd6e0c2658043834e60df7a4318c350 (patch)
tree6549fb0aa242e30fbb0ee823bc68eca934525ba1 /src
parent6f665ad312da7e80bd76dddc58f2b029e81d9e9e (diff)
downloadxine-lib-072445b01fd6e0c2658043834e60df7a4318c350.tar.gz
xine-lib-072445b01fd6e0c2658043834e60df7a4318c350.tar.bz2
**BUGFIX**
Don't use raw mode for AAC from avi files, it should be packetized. CVS patchset: 7553 CVS date: 2005/05/21 14:09:54
Diffstat (limited to 'src')
-rw-r--r--src/libfaad/xine_decoder.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/libfaad/xine_decoder.c b/src/libfaad/xine_decoder.c
index 065355554..297e099d6 100644
--- a/src/libfaad/xine_decoder.c
+++ b/src/libfaad/xine_decoder.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2000-2003 the xine project
+ * Copyright (C) 2000-2005 the xine project
*
* This file is part of xine, a free video player.
*
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xine_decoder.c,v 1.37 2004/12/16 13:59:10 mroi Exp $
+ * $Id: xine_decoder.c,v 1.38 2005/05/21 14:09:54 jstembridge Exp $
*
*/
@@ -298,6 +298,8 @@ static void faad_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) {
if( faad_open_dec(this) )
return;
+
+ this->raw_mode = 0;
}
}