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
4 changes: 2 additions & 2 deletions .github/workflows/L2-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ jobs:
-DCMAKE_DISABLE_FIND_PACKAGE_RFC=ON
-DCMAKE_DISABLE_FIND_PACKAGE_RBus=ON
-DCMAKE_DISABLE_FIND_PACKAGE_CEC=ON
-DPLUGIN_AVINPUT=OFF
-DPLUGIN_AVINPUT=ON
-DPLUGIN_AVOUTPUT=OFF
-DPLUGIN_HDMICECSINK=ON
-DAVOUTPUT_TV=OFF
Expand Down Expand Up @@ -590,7 +590,7 @@ jobs:
-DCMAKE_DISABLE_FIND_PACKAGE_Udev=ON
-DCMAKE_DISABLE_FIND_PACKAGE_RFC=ON
-DCMAKE_DISABLE_FIND_PACKAGE_RBus=ON
-DPLUGIN_AVINPUT=OFF
-DPLUGIN_AVINPUT=ON
-DPLUGIN_AVOUTPUT=OFF
-DPLUGIN_HDMICECSINK=ON
-DAVOUTPUT_TV=OFF
Expand Down
6 changes: 3 additions & 3 deletions AVInput/AVInputImplementation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -741,9 +741,9 @@ namespace Plugin {
*/
void AVInputImplementation::AVInputVideoModeUpdate(int port, dsVideoPortResolution_t resolution, int type)
{
int width;
int height;
bool progressive;
int width = 0;
int height = 0;
bool progressive = false;
int frameRateN;
int frameRateD;

Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,17 @@ 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.10.0](https://github.com/rdkcentral/entservices-inputoutput/compare/1.9.2...1.10.0)

- RDKEMW-12161 - L2-Test for AVInput Plugin [`#354`](https://github.com/rdkcentral/entservices-inputoutput/pull/354)
- Merge tag '1.9.2' into develop [`ef3f423`](https://github.com/rdkcentral/entservices-inputoutput/commit/ef3f423e7674b249abea470189dec0024b86af8b)

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

> 24 December 2025

- RDKEMW-11903: Add custom coding guidelines for entservices-repos [`#349`](https://github.com/rdkcentral/entservices-inputoutput/pull/349)
- 1.9.2 release changelog updates [`6f102b9`](https://github.com/rdkcentral/entservices-inputoutput/commit/6f102b9c7460d31588fa002c4cf1b8def4e32af7)
- Merge tag '1.9.1' into develop [`5d00074`](https://github.com/rdkcentral/entservices-inputoutput/commit/5d000748f59e60bbbf79db26c15256a66038f174)

#### [1.9.1](https://github.com/rdkcentral/entservices-inputoutput/compare/1.9.0...1.9.1)
Expand Down
Loading