diff options
author | eddyg <[email protected]> | 2008-08-29 00:16:22 +0000 |
---|---|---|
committer | eddyg <[email protected]> | 2008-08-29 00:16:22 +0000 |
commit | 06413f74f4cce1662ed00b9d4a20285f7eeed914 (patch) | |
tree | 517416a0c8907913078a8a0a0cb7d1be2f6d211f /libhb/internal.h | |
parent | e746a5c30f6532923f5008effd29b52903833a2b (diff) |
Change buffer reuse policy to MRU to hopefully improve cache and VM performance.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1659 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/internal.h')
-rw-r--r-- | libhb/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/internal.h b/libhb/internal.h index 36dca0d80..5f04e3852 100644 --- a/libhb/internal.h +++ b/libhb/internal.h @@ -85,6 +85,7 @@ hb_buffer_t * hb_fifo_get( hb_fifo_t * ); hb_buffer_t * hb_fifo_see( hb_fifo_t * ); hb_buffer_t * hb_fifo_see2( hb_fifo_t * ); void hb_fifo_push( hb_fifo_t *, hb_buffer_t * ); +void hb_fifo_push_head( hb_fifo_t *, hb_buffer_t * ); void hb_fifo_close( hb_fifo_t ** ); /*********************************************************************** |