File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,7 @@ namespace Plugin {
410
410
registerMethod (" getTVDimmingModeCapsV2" , &AVOutputTV::getTVDimmingModeCapsV2, this );
411
411
registerMethod (" getAspectRatioCapsV2" , &AVOutputTV::getAspectRatioCapsV2, this );
412
412
registerMethod (" getDVCalibrationCapsV2" , &AVOutputTV::getDVCalibrationCapsV2, this );
413
- registerMethod (" getTVPictureModeCapsV2 " , &AVOutputTV::getTVPictureModeCapsV2 , this );
413
+ registerMethod (" getPictureModeCapsV2 " , &AVOutputTV::getPictureModeCapsV2 , this );
414
414
415
415
LOGINFO (" Exit\n " );
416
416
}
@@ -859,8 +859,8 @@ namespace Plugin {
859
859
returnResponse (true );
860
860
}
861
861
862
- uint32_t AVOutputTV::getTVPictureModeCapsV2 (const JsonObject& parameters, JsonObject& response) {
863
- return getCapsV2 ([this ](tvContextCaps_t** context_caps, int * options_count, std::vector<std::string>& options ) {
862
+ uint32_t AVOutputTV::getPictureModeCapsV2 (const JsonObject& parameters, JsonObject& response) {
863
+ return getCapsV2 ([this ](tvContextCaps_t** context_caps, int * options_count) {
864
864
return this ->GetTVPictureModeCaps (context_caps);
865
865
},
866
866
" PictureMode" , parameters, response);
Original file line number Diff line number Diff line change @@ -261,7 +261,7 @@ class AVOutputTV : public AVOutputBase {
261
261
DECLARE_JSON_RPC_METHOD (getTVDimmingModeCapsV2)
262
262
DECLARE_JSON_RPC_METHOD (getAspectRatioCapsV2)
263
263
DECLARE_JSON_RPC_METHOD (getDVCalibrationCapsV2)
264
- DECLARE_JSON_RPC_METHOD (getTVPictureModeCapsV2 )
264
+ DECLARE_JSON_RPC_METHOD (getPictureModeCapsV2 )
265
265
266
266
/* Set API's*/
267
267
DECLARE_JSON_RPC_METHOD (setBacklightV2)
You can’t perform that action at this time.
0 commit comments