@@ -361,12 +361,12 @@ namespace Plugin {
361
361
registerMethod (" getPrecisionDetail" , &AVOutputTV::getPrecisionDetail, this );
362
362
registerMethod (" setPrecisionDetail" , &AVOutputTV::setPrecisionDetail, this );
363
363
registerMethod (" resetPrecisionDetail" , &AVOutputTV::resetPrecisionDetail, this );
364
- registerMethod (" getPrecisionDetailCaps" , &AVOutputTV::getPrecisionDetailCaps, this );
364
+ // registerMethod("getPrecisionDetailCaps", &AVOutputTV::getPrecisionDetailCaps, this);
365
365
366
366
registerMethod (" getSDRGamma" , &AVOutputTV::getSDRGamma, this );
367
367
registerMethod (" setSDRGamma" , &AVOutputTV::setSDRGamma, this );
368
368
registerMethod (" resetSDRGamma" , &AVOutputTV::resetSDRGamma, this );
369
- registerMethod (" getSDRGammaCaps" , &AVOutputTV::getSDRGammaCaps, this );
369
+ // registerMethod("getSDRGammaCaps", &AVOutputTV::getSDRGammaCaps, this);
370
370
371
371
registerMethod (" getLocalContrastEnhancement" , &AVOutputTV::getLocalContrastEnhancement, this );
372
372
registerMethod (" setLocalContrastEnhancement" , &AVOutputTV::setLocalContrastEnhancement, this );
@@ -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 ;
@@ -4535,6 +4535,7 @@ namespace Plugin {
4535
4535
}
4536
4536
}
4537
4537
4538
+ #if 0
4538
4539
uint32_t AVOutputTV::getPrecisionDetailCaps(const JsonObject& parameters, JsonObject& response) {
4539
4540
LOGINFO("Entry");
4540
4541
@@ -4589,6 +4590,7 @@ namespace Plugin {
4589
4590
LOGINFO("Exit : getPrecisionDetailCaps successful");
4590
4591
returnResponse(true);
4591
4592
}
4593
+ #endif
4592
4594
4593
4595
uint32_t AVOutputTV::getSDRGamma (const JsonObject& parameters, JsonObject& response) {
4594
4596
LOGINFO (" Entry" );
@@ -4701,6 +4703,7 @@ namespace Plugin {
4701
4703
}
4702
4704
}
4703
4705
4706
+ #if 0
4704
4707
uint32_t AVOutputTV::getSDRGammaCaps(const JsonObject& parameters, JsonObject& response) {
4705
4708
LOGINFO("Entry");
4706
4709
@@ -4758,6 +4761,7 @@ namespace Plugin {
4758
4761
LOGINFO("Exit : getSDRGammaCaps successful");
4759
4762
returnResponse(true);
4760
4763
}
4764
+ #endif
4761
4765
4762
4766
uint32_t AVOutputTV::getLocalContrastEnhancement (const JsonObject& parameters, JsonObject& response) {
4763
4767
LOGINFO (" Entry" );
0 commit comments