summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Holst <holstsn@users.sourceforge.net>2002-12-23 13:41:16 +0000
committerStefan Holst <holstsn@users.sourceforge.net>2002-12-23 13:41:16 +0000
commita5ae5e432c80be42c4f4ce901948535269e670a8 (patch)
tree81fe92a36758d433757f55c482ed5f877d6939be
parenteed68110caf109da447dd16f7c08650712894626 (diff)
downloadxine-lib-a5ae5e432c80be42c4f4ce901948535269e670a8.tar.gz
xine-lib-a5ae5e432c80be42c4f4ce901948535269e670a8.tar.bz2
increase buffers for high quality rm files
CVS patchset: 3647 CVS date: 2002/12/23 13:41:16
-rw-r--r--src/libreal/xine_decoder.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libreal/xine_decoder.c b/src/libreal/xine_decoder.c
index 6ad52f877..cc23c18a1 100644
--- a/src/libreal/xine_decoder.c
+++ b/src/libreal/xine_decoder.c
@@ -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.22 2002/12/22 00:35:05 komadori Exp $
+ * $Id: xine_decoder.c,v 1.23 2002/12/23 13:41:16 holstsn Exp $
*
* thin layer to use real binary-only codecs in xine
*
@@ -50,8 +50,8 @@ typedef struct {
} real_class_t;
-#define BUF_SIZE 32768
-#define CHUNK_TAB_SIZE 64
+#define BUF_SIZE 65536
+#define CHUNK_TAB_SIZE 128
typedef struct realdec_decoder_s {
video_decoder_t video_decoder;