@@ -403,13 +403,13 @@ namespace Plugin {
403
403
registerMethod (" getSharpnessCapsV2" , &AVOutputTV::getSharpnessCapsV2, this );
404
404
registerMethod (" getSaturationCapsV2" , &AVOutputTV::getSaturationCapsV2, this );
405
405
registerMethod (" getHueCapsV2" , &AVOutputTV::getHueCapsV2, this );
406
- registerMethod (" getPrecisionDetailCapsV2 " , &AVOutputTV::getPrecisionDetailCapsV2 , this );
406
+ registerMethod (" getPrecisionDetailCaps " , &AVOutputTV::getPrecisionDetailCaps , this );
407
407
registerMethod (" getLowLatencyStateCapsV2" , &AVOutputTV::getLowLatencyStateCapsV2, this );
408
408
registerMethod (" getColorTemperatureCapsV2" , &AVOutputTV::getColorTemperatureCapsV2, this );
409
- registerMethod (" getSdrGammaCapsV2 " , &AVOutputTV::getSdrGammaCapsV2 , this );
410
- registerMethod (" getTVDimmingModeCapsV2 " , &AVOutputTV::getTVDimmingModeCapsV2 , this );
411
- registerMethod (" getAspectRatioCapsV2 " , &AVOutputTV::getAspectRatioCapsV2 , this );
412
- registerMethod (" getDVCalibrationCapsV2 " , &AVOutputTV::getDVCalibrationCapsV2 , this );
409
+ registerMethod (" getSdrGammaCaps " , &AVOutputTV::getSdrGammaCaps , this );
410
+ registerMethod (" getBacklightDimmingModeCapsV2 " , &AVOutputTV::getBacklightDimmingModeCapsV2 , this );
411
+ registerMethod (" getZoomModeCapsV2 " , &AVOutputTV::getZoomModeCapsV2 , this );
412
+ registerMethod (" getDVCalibrationCaps " , &AVOutputTV::getDVCalibrationCaps , this );
413
413
registerMethod (" getPictureModeCapsV2" , &AVOutputTV::getPictureModeCapsV2, this );
414
414
415
415
LOGINFO (" Exit\n " );
@@ -709,7 +709,7 @@ namespace Plugin {
709
709
" Hue" , parameters, response);
710
710
}
711
711
712
- uint32_t AVOutputTV::getPrecisionDetailCapsV2 (const JsonObject& parameters, JsonObject& response) {
712
+ uint32_t AVOutputTV::getPrecisionDetailCaps (const JsonObject& parameters, JsonObject& response) {
713
713
return getCapsV2 ([this ](tvContextCaps_t** context_caps, int * max_precision) {
714
714
return this ->GetPrecisionDetailCaps (max_precision, context_caps);
715
715
},
@@ -761,7 +761,7 @@ namespace Plugin {
761
761
returnResponse (true );
762
762
}
763
763
764
- uint32_t AVOutputTV::getSdrGammaCapsV2 (const JsonObject& parameters, JsonObject& response) {
764
+ uint32_t AVOutputTV::getSdrGammaCaps (const JsonObject& parameters, JsonObject& response) {
765
765
tvSdrGamma_t* sdr_gamma = nullptr ;
766
766
size_t num_sdr_gamma = 0 ;
767
767
tvContextCaps_t* context_caps = nullptr ;
@@ -797,7 +797,7 @@ namespace Plugin {
797
797
returnResponse (true );
798
798
}
799
799
800
- uint32_t AVOutputTV::getTVDimmingModeCapsV2 (const JsonObject& parameters, JsonObject& response) {
800
+ uint32_t AVOutputTV::getBacklightDimmingModeCapsV2 (const JsonObject& parameters, JsonObject& response) {
801
801
tvDimmingMode_t* dimming_mode = nullptr ;
802
802
size_t num_dimming_mode = 0 ;
803
803
tvContextCaps_t* context_caps = nullptr ;
@@ -828,7 +828,7 @@ namespace Plugin {
828
828
returnResponse (true );
829
829
}
830
830
831
- uint32_t AVOutputTV::getAspectRatioCapsV2 (const JsonObject& parameters, JsonObject& response) {
831
+ uint32_t AVOutputTV::getZoomModeCapsV2 (const JsonObject& parameters, JsonObject& response) {
832
832
tvDisplayMode_t* aspect_ratio = nullptr ;
833
833
size_t num_aspect_ratio = 0 ;
834
834
tvContextCaps_t* context_caps = nullptr ;
@@ -905,7 +905,7 @@ namespace Plugin {
905
905
returnResponse (true );
906
906
}
907
907
908
- uint32_t AVOutputTV::getDVCalibrationCapsV2 (const JsonObject& parameters, JsonObject& response) {
908
+ uint32_t AVOutputTV::getDVCalibrationCaps (const JsonObject& parameters, JsonObject& response) {
909
909
tvDVCalibrationSettings_t *min_values = nullptr ;
910
910
tvDVCalibrationSettings_t *max_values = nullptr ;
911
911
tvContextCaps_t *context_caps = nullptr ;
0 commit comments