我需要知道lame_enc线程是否安全?
答案 0 :(得分:2)
截至LAME 3.99.5 HACKING:
THREADSAFE:
Lame should now be thread safe and re-entrant.
The only problem seems to be some OS's allocate small
stacks (< 128K) to threads launched by applictions, and this
is not enough for LAME. Fix is to increase the stack space,
or move some of our automatic variables onto the heap with
by using bug-prove malloc()'s and free().
答案 1 :(得分:0)