Get the current input position of a playing track.
Defined in <SDL3_mixer/SDL_mixer.h>
Sint64 MIX_GetTrackPlaybackPosition(MIX_Track *track);
MIX_Track * | track | the track to change. |
(Sint64) Returns the track's current sample frame position, or -1 on error; call SDL_GetError() for details.
(Not to be confused with MIX_GetTrack3DPosition(), which is positioning of the track in 3D space, not the playback position of its audio data.)
Position is defined in sample frames of decoded audio, not units of time, so that sample-perfect mixing can be achieved. To instead operate in units of time, use MIX_TrackFramesToMS() to convert the return value to milliseconds.
Stopped and paused tracks will report the position when they halted. Playing tracks will report the current position, which will change over time.
It is safe to call this function from any thread.
This function is available since SDL_mixer 3.0.0.