| 189 | } |
| 190 | |
| 191 | int Mpv::getVideoBitrate() { |
| 192 | double bitrate = 0; |
| 193 | mpv_get_property(handle, "video-bitrate", MPV_FORMAT_DOUBLE, &bitrate); |
| 194 | return (int) bitrate; |
| 195 | } |
| 196 | |
| 197 | int Mpv::getAudioBitrate() { |
| 198 | double bitrate = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected