AVIStreamNextSampleTime macro (vfw.h)

The AVIStreamNextSampleTime macro returns the time that a sample changes to the next sample in the stream. This macro finds the next interesting time in a stream.

Syntax

void AVIStreamNextSampleTime(
   pavi,
   t
);

Parameters

pavi

Handle to an open stream.

t

Position information of the sample in the stream.

Return value

None

Remarks

The AVIStreamNextSampleTime macro is defined as follows:


#define AVIStreamNextSampleTime(pavi, time) \ 
    AVIStreamSampleToTime(pavi, \ 
    AVIStreamNextSample(pavi, \ 
    AVIStreamTimeToSample(pavi, t))) 

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Target Platform Windows
Header vfw.h

See also

AVIFile Functions and Macros

AVIFile Macros