issue #3 #4 Improve tv channel related issues.

This commit is contained in:
Paul Kim
2023-02-13 16:07:13 +09:00
parent 8ab98ecc43
commit 7faf919377
2 changed files with 13 additions and 1 deletions

View File

@@ -1011,6 +1011,13 @@ HotelTV.hcap = (function() {
} }
} }
// APPLICATION CHANNEL CONTROL
if (_devinfo["application_channel_control"] !== undefined) {
if (_devinfo["application_channel_control"] != 1) {
_pmFxnArProperty.push(__hcapfxn_set_property('application_channel_control', 1));
}
}
// // OSD LAYER ID // // OSD LAYER ID
// if (_devinfo["osd_layer_id"] !== undefined) { // if (_devinfo["osd_layer_id"] !== undefined) {
// if (_devinfo["osd_layer_id"] != 0) { // if (_devinfo["osd_layer_id"] != 0) {

View File

@@ -132,6 +132,11 @@ HotelTV.ui_appfull = (function() {
// HotelTV.hcap.SetSoftAp({ // HotelTV.hcap.SetSoftAp({
// "enable": false, // "enable": false,
// }); // });
// 현재 재생중인 TV채널 종료
console.log("Try to channel shutdown..");
HotelTV.hcap.ChannelShutDown();
}else if (_typeAppFocusEvt == "unfocused") {
} }
} }
@@ -3813,7 +3818,7 @@ HotelTV.ui_appfull = (function() {
_state.menu.main[_mmIdx].cur = _curChCtg; _state.menu.main[_mmIdx].cur = _curChCtg;
console.log("CHANGED TV CATEGORY::> CURRENT TV CTG IDX::> " + _curChCtg); console.log("CHANGED TV CATEGORY::> CURRENT TV CTG IDX::> " + _curChCtg);
__uifxn_AppFull_TVRequestChannel(); //__uifxn_AppFull_TVRequestChannel();
}); });
} }