Specifies the buffering requirements of a file.
typedef struct _MF_LEAKY_BUCKET_PAIR {
DWORD dwBitrate;
DWORD msBufferWindow;
} MF_LEAKY_BUCKET_PAIR;
dwBitrate
Bit rate, in bits per second.
msBufferWindow
Size of the buffer window, in milliseconds.
This structure describes the buffering requirements for content encoded at the bit rate specified in the dwBitrate. The msBufferWindow member indicates how much data should be buffered before starting playback. The size of the buffer in bytes is msBufferWinow×dwBitrate / 8000.
Header: Declared in mfidl.h.