Lines Matching refs:tvInputEvent
151 TvInputEvent tvInputEvent; in notify() local
152 tvInputEvent.type = static_cast<TvInputEventType>(event->type); in notify()
153 tvInputEvent.deviceInfo.deviceId = event->device_info.device_id; in notify()
154 tvInputEvent.deviceInfo.type = static_cast<TvInputType>( in notify()
156 tvInputEvent.deviceInfo.portId = event->device_info.hdmi.port_id; in notify()
157 tvInputEvent.deviceInfo.cableConnectionStatus = CableConnectionStatus::UNKNOWN; in notify()
160 tvInputEvent.deviceInfo.audioType = static_cast<AudioDevice>( in notify()
162 memset(tvInputEvent.deviceInfo.audioAddress.data(), 0, in notify()
163 tvInputEvent.deviceInfo.audioAddress.size()); in notify()
167 if (size > tvInputEvent.deviceInfo.audioAddress.size()) { in notify()
172 tvInputEvent.deviceInfo.audioAddress[i] = in notify()
176 mCallback->notify(tvInputEvent); in notify()