Tao.Sdl SDK Documentation

Sdl.MSF_TO_FRAMES Method 

Conversion function from Minute/Second/Frames to frames.

[Visual Basic]
Public Shared Function MSF_TO_FRAMES( _
   ByVal M As Integer, _
   ByVal S As Integer, _
   ByVal F As Integer _
) As Integer
[C#]
public static int MSF_TO_FRAMES(
   int M,
   int S,
   int F
);

Parameters

M
Minutes
S
Seconds
F
Frames

Remarks

Binds to C-macro call in SDL_cdrom.h:

#define MSF_TO_FRAMES(M, S, F)    ((M)*60*CD_FPS+(S)*CD_FPS+(F))
            

See Also

Sdl Class | Tao.Sdl Namespace | CD_FPS