| 126 | } |
| 127 | |
| 128 | float MP3Stream_GetPlayingTimeInSeconds( LP_MP3STREAM lpMP3Stream ) |
| 129 | { |
| 130 | if (lpMP3Stream->iTimeQuery_UnpackedLength) // fields initialised? |
| 131 | return (float)((((double)lpMP3Stream->iTimeQuery_UnpackedLength / (double)lpMP3Stream->iTimeQuery_SampleRate) / (double)lpMP3Stream->iTimeQuery_Channels) / (double)lpMP3Stream->iTimeQuery_Width); |
| 132 | |
| 133 | return 0.0f; |
| 134 | } |
| 135 | |
| 136 | float MP3Stream_GetRemainingTimeInSeconds( LP_MP3STREAM lpMP3Stream ) |
| 137 | { |
no outgoing calls
no test coverage detected