()
| 200 | } |
| 201 | |
| 202 | func rpcGetVideoCodecPreference() (string, error) { |
| 203 | return config.VideoCodecPreference, nil |
| 204 | } |
| 205 | |
| 206 | func rpcSetVideoCodecPreference(codec string) error { |
| 207 | if codec != "auto" && codec != "h265" && codec != "h264" { |
nothing calls this directly
no outgoing calls
no test coverage detected