From d21b55880b64f087ed54603edcdec141be9826ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Tue, 14 Sep 2010 18:37:37 +0000 Subject: [PATCH] For full HD clips, the real-time memory chunk cache was not big enough. Axel, perhaps another solution is better? Would you prefer the chunk cache to fall-back to regular memory and keep track of allocation type? git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38649 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kits/media/MediaExtractor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kits/media/MediaExtractor.cpp b/src/kits/media/MediaExtractor.cpp index b352161fbb..b82dccff77 100644 --- a/src/kits/media/MediaExtractor.cpp +++ b/src/kits/media/MediaExtractor.cpp @@ -24,7 +24,7 @@ #define DISABLE_CHUNK_CACHE 0 -static const size_t kMaxCacheBytes = 1024 * 1024; +static const size_t kMaxCacheBytes = 3 * 1024 * 1024; class MediaExtractorChunkProvider : public ChunkProvider {