diff options
author | jstebbins <[email protected]> | 2009-12-05 17:15:57 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2009-12-05 17:15:57 +0000 |
commit | c6caa91a4ff436198e22d518d6b5e6882921576b (patch) | |
tree | 8831fdf29ffffe86c30fc008e20d848254a37046 /libhb/ports.h | |
parent | 8209d6c285d54482da16aa5eb7b5dfe96c2b3264 (diff) |
Reduce the amount of buffering used and eliminate hb_snooze in the encoding pipeline
For HD sources on an 8 core system with hyperthreading, we were using 1.5GB
of ram. Add to that the 600MB x264 uses for rc-lookahead, pushes it north of 2GB.
To reduce our memory usage, the fifo depths have been reduced are are no longer
a multiple of cpu count. Use of hb_snooze has been eliminated in the encoding
pipeline so that performance doesn't fall as a result of the reduced fifo depths.
In sync, each audio and video were given separate threads so that each can wait on
it's respective input fifo without blocking the others. In muxcommon, each stream
being muxed was given a separate thread so that each can wait on it's respective fifo.
This allows the removal of hb_snooze in the sync and muxer work loops. In both sync
and muxer, there is common data that is shared by all threads, so special init
routines allocate this shared data and initialize the threads.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3007 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/ports.h')
-rw-r--r-- | libhb/ports.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/ports.h b/libhb/ports.h index 47be2d76e..318a7d717 100644 --- a/libhb/ports.h +++ b/libhb/ports.h @@ -80,6 +80,7 @@ typedef struct hb_cond_s hb_cond_t; hb_cond_t * hb_cond_init(); void hb_cond_wait( hb_cond_t *, hb_lock_t * ); +void hb_cond_timedwait( hb_cond_t * c, hb_lock_t * lock, int msec ); void hb_cond_signal( hb_cond_t * ); void hb_cond_close( hb_cond_t ** ); |