Skip to content

Commit 4168cac

Browse files
committed
AVInput COM-RPC Support: Converted input types in interface to strings to maintain unit test compatibility
1 parent 8ade302 commit 4168cac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AVInput/AVInputImplementation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -557,7 +557,7 @@ namespace Plugin {
557557
successResult.success = true;
558558

559559
try {
560-
if (strcmp(typeOfInput.c_str(), INPUT_TYPE_HDMI) == 0)
560+
if (strcmp(typeOfInput.c_str(), INPUT_TYPE_HDMI) == 0) {
561561
device::HdmiInput::getInstance().selectPort(portId, requestAudioMix, plane, topMost);
562562
} else if (strcmp(typeOfInput.c_str(), INPUT_TYPE_COMPOSITE) == 0) {
563563
device::CompositeInput::getInstance().selectPort(portId);

0 commit comments

Comments
 (0)