Skip to content

Comments

Text track clock resync#372

Open
aczs wants to merge 15 commits intomasterfrom
TextTrackClockResync
Open

Text track clock resync#372
aczs wants to merge 15 commits intomasterfrom
TextTrackClockResync

Conversation

@aczs
Copy link
Contributor

@aczs aczs commented Apr 15, 2025

No description provided.

@github-actions
Copy link

Pull request must be merged with a description containing the required fields,

Summary:
Type: Feature/Fix/Cleanup
Test Plan:
Jira:

If there is no jira releated to this change, please put 'Jira: NO-JIRA'.

Description can be changed by editing the top comment on your pull request and making a new commit.

@rdkcmf-jenkins
Copy link
Contributor

build-rpi4-ipstb-oss Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/f12a68a60ecb12789c0e33ff705b88f4

@rdkcmf-jenkins
Copy link
Contributor

build-brcm-refboard3 Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/7ba7f532033362b9151044d034d0196e

@rdkcmf-jenkins
Copy link
Contributor

build-brcm-refboard3 Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/4e99af527d523f5526c88a90a105d89e

@rdkcmf-jenkins
Copy link
Contributor

build-rpi4-ipstb-oss Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/2f7c42ee7a5ed54185788fb96ce2cfbc

@rdkcmf-jenkins
Copy link
Contributor

build-rpi4-ipstb-oss Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/e5e0d3214137ca2b53afe3a21b70c122

@rdkcmf-jenkins
Copy link
Contributor

build-brcm-refboard3 Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/fc75923570e1cdde9f386fa779b46bb5

@rdkcmf-jenkins
Copy link
Contributor

build-brcm-refboard3 Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/792edcd94ad39655e877780e0c96c6d4

@rdkcmf-jenkins
Copy link
Contributor

build-rpi4-ipstb-oss Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/5f81df87c08afdaf6b789c3207f0dafa

@rdkcmf-jenkins
Copy link
Contributor

Sanity tests for ['RPI4 IPSTB'] added.
https://jenkinsrdkm.cmf.code.rdkcentral.com/job/test-components-flow/77626/

@rdkcmf-jenkins
Copy link
Contributor

Sanity tests for ['BCM 7216OTT Refboard VA'] added.
https://jenkinsrdkm.cmf.code.rdkcentral.com/job/test-components-flow/77628/

@rdkcmf-jenkins
Copy link
Contributor

build-rpi4-ipstb-oss Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/f1eb1349aec35f736db4e8fc382d9e99

@rdkcmf-jenkins
Copy link
Contributor

build-brcm-refboard3 Console Log uploaded to Gist URL: https://gist.github.com/rdkcmf-jenkins/a7bb5bdd5a2adb68506fd7d289b6ba9f

@RIALTO-JENKINS-AI
Copy link

Job for AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds started: https://pv-jen015.uk2.scp.bskyb.com/job/AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds/143/

@RIALTO-JENKINS-AI
Copy link

Job for AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds started: https://pv-jen015.uk2.scp.bskyb.com/job/AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds/282/

@RIALTO-JENKINS-AI
Copy link

Job for AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds started: https://pv-jen015.uk2.scp.bskyb.com/job/AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds/283/

@RIALTO-JENKINS-AI
Copy link

Job for AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds started: https://pv-jen015.uk2.scp.bskyb.com/job/AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds/284/

@RIALTO-JENKINS-AI
Copy link

Job for AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds started: https://pv-jen015.uk2.scp.bskyb.com/job/AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds/285/

SynchroniseSubtitleClock::SynchroniseSubtitleClock(GenericPlayerContext &context, IGstGenericPlayerPrivate &player,
std::shared_ptr<firebolt::rialto::wrappers::IGstWrapper> gstWrapper,
std::shared_ptr<firebolt::rialto::wrappers::IGlibWrapper> glibWrapper)
: m_context{context}, m_player{player}, m_gstWrapper{gstWrapper}, m_glibWrapper{glibWrapper}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverity Issue - Variable copied when it could be moved

"glibWrapper" is passed-by-value as parameter to "std::shared_ptrfirebolt::rialto::wrappers::IGlibWrapper::shared_ptr(std::shared_ptrfirebolt::rialto::wrappers::IGlibWrapper const &) /explicit =default/", when it could be moved instead.

Low Impact, CWE-none
COPY_INSTEAD_OF_MOVE

How to fix

Use "std::move(""glibWrapper"")" instead of "glibWrapper".

SynchroniseSubtitleClock::SynchroniseSubtitleClock(GenericPlayerContext &context, IGstGenericPlayerPrivate &player,
std::shared_ptr<firebolt::rialto::wrappers::IGstWrapper> gstWrapper,
std::shared_ptr<firebolt::rialto::wrappers::IGlibWrapper> glibWrapper)
: m_context{context}, m_player{player}, m_gstWrapper{gstWrapper}, m_glibWrapper{glibWrapper}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverity Issue - Variable copied when it could be moved

"gstWrapper" is passed-by-value as parameter to "std::shared_ptrfirebolt::rialto::wrappers::IGstWrapper::shared_ptr(std::shared_ptrfirebolt::rialto::wrappers::IGstWrapper const &) /explicit =default/", when it could be moved instead.

Low Impact, CWE-none
COPY_INSTEAD_OF_MOVE

How to fix

Use "std::move(""gstWrapper"")" instead of "gstWrapper".

@RIALTO-JENKINS-AI
Copy link

Job for AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds started: https://pv-jen015.uk2.scp.bskyb.com/job/AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds/290/

@github-actions
Copy link

github-actions bot commented Sep 1, 2025

nofile:0:0: information: Unmatched suppression: unusedFunction [unmatchedSuppression]

nofile:0:0: information: Active checkers: 161/592 (use --checkers-report= to see details) [checkersReport]

@RIALTO-JENKINS-AI
Copy link

Job for AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds started: https://pv-jen015.uk2.scp.bskyb.com/job/AI/job/RIALTO_BUILDS/job/AI-Trigger-PR-Builds/309/

@github-actions
Copy link

nofile:0:0: information: Unmatched suppression: unusedFunction [unmatchedSuppression]

nofile:0:0: information: Active checkers: 161/592 (use --checkers-report= to see details) [checkersReport]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants