1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
Source: vrb
Priority: optional
Maintainer: Székelyi Szabolcs <cc@mail.3d.hu>
Build-Depends: debhelper (>= 5), gawk, dpkg-dev (>= 1.13.19)
Standards-Version: 3.8.0
Section: libs
Homepage: http://vrb.slashusr.org/
Package: libvrb0
Section: libs
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Description: Virtual Ring Buffer library
The Virtual Ring Buffer (VRB) is an implementation of a character
FIFO ring buffer. A ring buffer is a special memory area, because
writing beyond the end of it actually results in a write at the
beginning. Such a construct comes very handy in applications where
one end of a communications channel is required to produce or consume
data at a constant rate, but the other end cannot gurantee this. This
is a common situation in multimedia applications or Voice-over-IP
solutions, for example.
.
VRB provides direct access to the buffer so the calling program can
construct output data in place, or parse input data in place, without
the extra step of copying data to or from a calling program provided
buffer area, thus provides a highly efficient ring buffer
implementation.
Package: libvrb0-dev
Provides: libvrb-dev
Conflicts: libvrb-dev
Replaces: libvrb-dev
Section: libdevel
Architecture: any
Depends: libvrb0 (= ${binary:Version})
Description: Virtual Ring Buffer library - development files
The Virtual Ring Buffer (VRB) is an implementation of a character
FIFO ring buffer. A ring buffer is a special memory area, because
writing beyond the end of it actually results in a write at the
beginning. Such a construct comes very handy in applications where
one end of a communications channel is required to produce or consume
data at a constant rate, but the other end cannot gurantee this. This
is a common situation in multimedia applications or Voice-over-IP
solutions, for example.
.
VRB provides direct access to the buffer so the calling program can
construct output data in place, or parse input data in place, without
the extra step of copying data to or from a calling program provided
buffer area, thus provides a highly efficient ring buffer
implementation.
.
This package contains development files for linking against libvrb0.
Package: vbuf
Section: utils
Architecture: any
Depends: ${shlibs:Depends}
Description: Virtual Ring Buffer library - shell interface
The Virtual Ring Buffer (VRB) is an implementation of a character
FIFO ring buffer. A ring buffer is a special memory area, because
writing beyond the end of it actually results in a write at the
beginning. Such a construct comes very handy in applications where
one end of a communications channel is required to produce or consume
data at a constant rate, but the other end cannot gurantee this. This
is a common situation in multimedia applications or Voice-over-IP
solutions, for example.
.
VRB provides direct access to the buffer so the calling program can
construct output data in place, or parse input data in place, without
the extra step of copying data to or from a calling program provided
buffer area, thus provides a highly efficient ring buffer
implementation.
.
This package contains the program vbuf, which implements nothing but
a simple ring buffer, so it can be used directly from the shell.
|