There is a package called buffer in Debian that is probably the program you're remembering. It was last updated upstream in 2001 and the URL recorded as the source is no longer live. If your distribution doesn't provide it, you can get the source or a binary package from Debian.
The buffer
program sets up a buffer between a producer and a consumer which may speed up the time of the operation. However, this is not a program that will somehow “speed up I/O between two piped programs”. This program is only useful in a particular case: when both the reader and the writer have variable speed, so that the buffer
program can keep accumulating data at times when the producer is faster than the consumer, and keep providing data when the consumer is faster than the producer. In the common cases where one of the parties is consistently the bottleneck, or when the bottleneck is CPU time rather than blocking I/O, buffer
is useless.
buffer(1)
itself. There's also measuring buffer. – lcd047 Jun 19 '15 at 18:26