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
25 changes: 24 additions & 1 deletion AVInput/AVInput.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**

Check failure on line 1 in AVInput/AVInput.cpp

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'AVInput/AVInput.cpp' (Match: rdkcentral/rdkservices/1, 1544 lines, url: https://github.com/rdkcentral/rdkservices/archive/GRT_v1.tar.gz, file: HdmiInput/HdmiInput.cpp)

Check failure on line 1 in AVInput/AVInput.cpp

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'AVInput/AVInput.cpp' (Match: rdkcentral/rdkservices/5.1.0, 1544 lines, url: https://github.com/rdkcentral/rdkservices/archive/AML_BSP_REL_VERSION_RDK5.1.0.tar.gz, file: AVInput/AVInput.cpp)

Check failure on line 1 in AVInput/AVInput.cpp

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'AVInput/AVInput.cpp' (Match: rdkcentral/rdkservices/1, 1544 lines, url: https://github.com/rdkcentral/rdkservices/archive/GRT_v1.tar.gz, file: AVInput/AVInput.cpp)
* If not stated otherwise in this file or this component's LICENSE
* file the following copyright and licenses apply:
*
Expand Down Expand Up @@ -868,7 +868,30 @@
params["frameRateN"] = 60000;
params["frameRateD"] = 1001;
break;

case dsVIDEO_FRAMERATE_100:
params["frameRateN"] = 100000;
params["frameRateD"] = 1000;
break;
case dsVIDEO_FRAMERATE_119dot88:
params["frameRateN"] = 120000;
params["frameRateD"] = 1001;
break;
case dsVIDEO_FRAMERATE_120:
params["frameRateN"] = 120000;
params["frameRateD"] = 1000;
break;
case dsVIDEO_FRAMERATE_200:
params["frameRateN"] = 200000;
params["frameRateD"] = 1000;
break;
case dsVIDEO_FRAMERATE_239dot76:
params["frameRateN"] = 240000;
params["frameRateD"] = 1001;
break;
case dsVIDEO_FRAMERATE_240:
params["frameRateN"] = 240000;
params["frameRateD"] = 100;
break;
default:
params["frameRateN"] = 60000;
params["frameRateD"] = 1000;
Expand Down
25 changes: 24 additions & 1 deletion HdmiInput/HdmiInput.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/**

Check failure on line 1 in HdmiInput/HdmiInput.cpp

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'HdmiInput/HdmiInput.cpp' (Match: rdkcentral/rdkservices/1, 1453 lines, url: https://github.com/rdkcentral/rdkservices/archive/GRT_v1.tar.gz, file: HdmiInput/HdmiInput.cpp)
* If not stated otherwise in this file or this component's LICENSE
* file the following copyright and licenses apply:
*
Expand Down Expand Up @@ -718,7 +718,30 @@
params["frameRateN"] = 60000;
params["frameRateD"] = 1001;
break;

case dsVIDEO_FRAMERATE_100:
params["frameRateN"] = 100000;
params["frameRateD"] = 1000;
break;
case dsVIDEO_FRAMERATE_119dot88:
params["frameRateN"] = 120000;
params["frameRateD"] = 1001;
break;
case dsVIDEO_FRAMERATE_120:
params["frameRateN"] = 120000;
params["frameRateD"] = 1000;
break;
case dsVIDEO_FRAMERATE_200:
params["frameRateN"] = 200000;
params["frameRateD"] = 1000;
break;
case dsVIDEO_FRAMERATE_239dot76:
params["frameRateN"] = 240000;
params["frameRateD"] = 1001;
break;
case dsVIDEO_FRAMERATE_240:
params["frameRateN"] = 240000;
params["frameRateD"] = 100;
break;
default:
params["frameRateN"] = 60000;
params["frameRateD"] = 1000;
Expand Down
Loading