| 195 | } |
| 196 | |
| 197 | int Mpv::getAudioBitrate() { |
| 198 | double bitrate = 0; |
| 199 | mpv_get_property(handle, "audio-bitrate", MPV_FORMAT_INT64, &bitrate); |
| 200 | return (int) bitrate; |
| 201 | } |
| 202 | |
| 203 | long Mpv::getDuration() { |
| 204 | long duration = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected