Triode wrote: > What are you seeing dropped frames on - WB? Is it dropping in this > place - if so can you confirm if it is mid decode or at the end of the > decode? We should never get to that code in theory.. Decode should not > run unless there is space in the output buffer for the size of data > produced by the codec multipled by the process scale up factor? Is this > wrong?
decode.c ..... size_t min_space = decode.direct ? codec->min_space : process.max_out_frames; Shouldn't that be (8 bytes in a frame) .... size_t min_space = decode.direct ? codec->min_space : (process.max_out_frames * 8); ------------------------------------------------------------------------ JackOfAll's Profile: http://forums.slimdevices.com/member.php?userid=3069 View this thread: http://forums.slimdevices.com/showthread.php?t=98544 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/unix
