[vlc-devel] commit: Shrink overly large blocks ( Rémi Denis-Courmont )

git version control git at videolan.org
Thu Sep 4 22:38:25 CEST 2008


vlc | branch: 0.9-bugfix | Rémi Denis-Courmont <rdenis at simphalempin.com> | Tue Sep  2 17:57:31 2008 +0300| [9703568692c909efe6663aa3db73885133981aec] | committer: Rémi Denis-Courmont 

Shrink overly large blocks
(cherry picked from commit ebc680cef7911f76f849075dca947d9cc7fd9629)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9703568692c909efe6663aa3db73885133981aec
---

 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 d5ce01b..3909d33 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