[vlc-devel] commit: Shrink overly large blocks ( Rémi Denis-Courmont )
git version control
git at videolan.org
Tue Sep 2 16:59:10 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Tue Sep 2 17:57:31 2008 +0300| [ebc680cef7911f76f849075dca947d9cc7fd9629] | committer: Rémi Denis-Courmont
Shrink overly large blocks
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ebc680cef7911f76f849075dca947d9cc7fd9629
---
src/misc/block.c | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/src/misc/block.c b/src/misc/block.c
index 97281cb..8c37bcf 100644
--- a/src/misc/block.c
+++ b/src/misc/block.c
@@ -168,10 +168,6 @@ block_t *block_Realloc( block_t *p_block, ssize_t i_prebody, size_t i_body )
return p_rea;
}
-#if 0
- /* Shrinking the buffer seems to cause performance problems, on Windows,
- * at least. Also with demand paging, oversizing buffers is not an issue,
- * as long as we don't write to the extraneous allocated space. */
/* We have a very large reserved footer now? Release some of it. */
if ((p_sys->p_allocated_buffer + p_sys->i_allocated_buffer) -
(p_block->p_buffer + p_block->i_buffer) > BLOCK_WASTE_SIZE)
@@ -189,7 +185,6 @@ block_t *block_Realloc( block_t *p_block, ssize_t i_prebody, size_t i_body )
- ((uintptr_t)p_sys->p_allocated_buffer % BLOCK_ALIGN);
}
}
-#endif
return p_block;
}
More information about the vlc-devel
mailing list