[opus] Opus for ASR - update and questions
Timothy B. Terriberry
tterribe at xiph.org
Thu Dec 6 18:45:49 PST 2012
Young, Milan wrote:
> One more follow-up question regarding the decoder's "packet-loss" parameter. What distribution model is being used to simulate packet loss? Is this a uniform model, or something that resembles the bursty nature of real world conditions?
The best answer here is to read the code (from opus_demo.c):
lost = len[toggle]==0 || (packet_loss_perc>0 && rand()%100
< packet_loss_perc);
So, uniform.
More information about the opus
mailing list