Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,10 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [1.0.2](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.1...1.0.2)

- RDKEMW-1691 : Remove unsupported plugins in rdk-e [`#4`](https://github.com/rdkcentral/entservices-inputoutput/pull/4)
- RDK-55887: Update the Plugin Client with QueryInterface with CallSign [`#8`](https://github.com/rdkcentral/entservices-inputoutput/pull/8)
- test [`43988dc`](https://github.com/rdkcentral/entservices-inputoutput/commit/43988dcac9cd750a0afab83f2e85c44f3cb79b7b)
- Delete HdmiInput directory [`73fdb8c`](https://github.com/rdkcentral/entservices-inputoutput/commit/73fdb8c516741a054e8e9026816a6fd92cecbbf8)
- Delete CompositeInput directory [`1b86833`](https://github.com/rdkcentral/entservices-inputoutput/commit/1b8683384658fe40c9bb6fcb0f5f8976b0f37db4)

#### [1.0.1](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.0...1.0.1)

> 19 February 2025

- Update AVInput AVOutput plugins with latest HPK 1.4.4 interface options [`#3`](https://github.com/rdkcentral/entservices-inputoutput/pull/3)
- RDKE-672 - Changelog updates for 1.0.0 [`#2`](https://github.com/rdkcentral/entservices-inputoutput/pull/2)
- RDKE-672 - Changelog updates for 1.0.0 [`#1`](https://github.com/rdkcentral/entservices-inputoutput/pull/1)
- Remove ODM APIs - Phase 1 [`0dd73c6`](https://github.com/rdkcentral/entservices-inputoutput/commit/0dd73c6e92a8b197fa2bb8a1d0e7614c0acb3d0b)
- Composite VideoMode update [`b89381b`](https://github.com/rdkcentral/entservices-inputoutput/commit/b89381be1c5931a918fbf0c677e9539503185245)
- RDKServices changes - getHdmiVersion [`7e0ef17`](https://github.com/rdkcentral/entservices-inputoutput/commit/7e0ef17e4baed5ff3449b645cf3c56211c39c76c)
Expand Down
5 changes: 5 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ if(PLUGIN_HDCPPROFILE)
add_subdirectory(HdcpProfile)
endif()

if(PLUGIN_HDMIINPUT)
add_subdirectory(HdmiInput)
endif()


if(WPEFRAMEWORK_CREATE_IPKG_TARGETS)
set(CPACK_GENERATOR "DEB")
set(CPACK_DEB_COMPONENT_INSTALL ON)
Expand Down
27 changes: 27 additions & 0 deletions HdmiInput/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

All notable changes to this RDK Service will be documented in this file.

* Each RDK Service has a CHANGELOG file that contains all changes done so far. When version is updated, add a entry in the CHANGELOG.md at the top with user friendly information on what was changed with the new version. Please don't mention JIRA tickets in CHANGELOG.

* Please Add entry in the CHANGELOG for each version change and indicate the type of change with these labels:
* **Added** for new features.
* **Changed** for changes in existing functionality.
* **Deprecated** for soon-to-be removed features.
* **Removed** for now removed features.
* **Fixed** for any bug fixes.
* **Security** in case of vulnerabilities.

* Changes in CHANGELOG should be updated when commits are added to the main or release branches. There should be one CHANGELOG entry per JIRA Ticket. This is not enforced on sprint branches since there could be multiple changes for the same JIRA ticket during development.

## [1.4.0] - 2025-02-17
### Added
- Added support for Getting the Maximum HDMI Compatibility version for the given port.

## [1.0.0] - 2025-02-17
### Added
- Add CHANGELOG

### Change
- Reset API version to 1.0.0
- Change README to inform how to update changelog and API version
64 changes: 64 additions & 0 deletions HdmiInput/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# If not stated otherwise in this file or this component's license file the
# following copyright and licenses apply:
#
# Copyright 2020 RDK Management
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set(PLUGIN_NAME HdmiInput)
set(MODULE_NAME ${NAMESPACE}${PLUGIN_NAME})

set(PLUGIN_HDMIINPUT_STARTUPORDER "" CACHE STRING "To configure startup order of HdmiInput plugin")

find_package(${NAMESPACE}Plugins REQUIRED)
if (USE_THUNDER_R4)
find_package(${NAMESPACE}COM REQUIRED)
else ()
find_package(${NAMESPACE}Protocols REQUIRED)
endif (USE_THUNDER_R4)

add_library(${MODULE_NAME} SHARED
HdmiInput.cpp
Module.cpp
)

set_target_properties(${MODULE_NAME} PROPERTIES
CXX_STANDARD 11
CXX_STANDARD_REQUIRED YES)

target_compile_definitions(${MODULE_NAME} PRIVATE MODULE_NAME=Plugin_${PLUGIN_NAME})

target_include_directories(${MODULE_NAME} PRIVATE ../helpers)

if (USE_THUNDER_R4)
target_link_libraries(${MODULE_NAME} PRIVATE ${NAMESPACE}COM::${NAMESPACE}COM)
else ()
target_link_libraries(${MODULE_NAME} PRIVATE ${NAMESPACE}Protocols::${NAMESPACE}Protocols)
endif (USE_THUNDER_R4)


find_package(DS)
find_package(IARMBus)

target_include_directories(${MODULE_NAME} PRIVATE ${DS_INCLUDE_DIRS})
target_include_directories(${MODULE_NAME} PRIVATE ${IARMBUS_INCLUDE_DIRS})
target_include_directories(${MODULE_NAME} PRIVATE ../helpers)

set_source_files_properties(HdmiInput.cpp PROPERTIES COMPILE_FLAGS "-fexceptions")

target_link_libraries(${MODULE_NAME} PUBLIC ${NAMESPACE}Plugins::${NAMESPACE}Plugins ${IARMBUS_LIBRARIES} ${DS_LIBRARIES} )

install(TARGETS ${MODULE_NAME}
DESTINATION lib/${STORAGE_DIRECTORY}/plugins)

write_config(${PLUGIN_NAME})
4 changes: 4 additions & 0 deletions HdmiInput/HdmiInput.conf.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
precondition = ["Platform"]
callsign = "org.rdk.HdmiInput"
autostart = "false"
startuporder = "@PLUGIN_HDMIINPUT_STARTUPORDER@"
7 changes: 7 additions & 0 deletions HdmiInput/HdmiInput.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
set (autostart false)
set (preconditions Platform)
set (callsign "org.rdk.HdmiInput")

if(PLUGIN_HDMIINPUT_STARTUPORDER)
set (startuporder ${PLUGIN_HDMIINPUT_STARTUPORDER})
endif()
Loading
Loading