Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Buffer Underrun? [closed]

Tags:

buffer

Just what the title states - What does Buffer Underrun mean?

like image 866
Everyone Avatar asked May 07 '11 09:05

Everyone


1 Answers

It's when a buffer that's being read from (and should preferably always have data available) runs empty.

An audio output device is a good example. An audio device will read its buffer at a constant rate, and unless you keep supplying it data at a fast enough rate, the buffer will run out. And it'll sound nasty.

like image 186
Matti Virkkunen Avatar answered Nov 30 '22 20:11

Matti Virkkunen