-
Notifications
You must be signed in to change notification settings - Fork 3
RDKEMW-13310: Adding Telemetry markers in Player-Interface component #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dp0000
wants to merge
57
commits into
develop
Choose a base branch
from
feature/RDKEMW-13310
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
57 commits
Select commit
Hold shift + click to select a range
313035d
RDKEMW-13310: Telemetry T2 markers for Player-interface component
Deepikasri1234 beae9af
T2 changes
Deepikasri1234 71a8b63
resovling compilation issues
Deepikasri1234 b9d1c24
underflow msg added
Deepikasri1234 7c20fb0
static code usage is removed
Deepikasri1234 aaa77d4
Merge branch 'develop' into feature/RDKEMW-13310
Deepikasri1234 64366e1
resolving conflicts
Deepikasri1234 f404e6e
added error PTS conditions
Deepikasri1234 7339125
Merge branch 'feature/dev_sprint_pli' into feature/RDKEMW-13310
Deepikasri1234 e4d686e
resolved compilation isseus
Deepikasri1234 9148d7e
resolved compilation issues
Deepikasri1234 b0ace39
Merge branch 'feature/dev_sprint_pli' into feature/RDKEMW-13310
Deepikasri1234 1692915
removed additional logic handled
Deepikasri1234 3a28ef6
added prints
Deepikasri1234 0ccd026
fixed compilation issues
Deepikasri1234 6107254
Merge branch 'feature/dev_sprint_pli' into feature/RDKEMW-13310
Deepikasri1234 b67c5a6
Merge branch 'feature/dev_sprint_pli' into feature/RDKEMW-13310
Deepikasri1234 3c90d8a
added debug
Deepikasri1234 fe2013c
Merge branch 'feature/dev_sprint_pli' into feature/RDKEMW-13310
Deepikasri1234 16117e1
added few telemetry markers
Deepikasri1234 4f6db42
added new set of markers
Deepikasri1234 c13064e
Merge branch 'feature/dev_sprint_pli' into feature/RDKEMW-13310
Deepikasri1234 24076a3
Merge branch 'feature/dev_sprint_pli' into feature/RDKEMW-13310
dp0000 24b2f08
added t2_event_d commands
Deepikasri1234 1de869e
Update PlayerTelemetry.h
dp0000 4769534
Update PlayerTelemetry.h
dp0000 627c301
added compilation issue fix
Deepikasri1234 de2bf29
added com fix
Deepikasri1234 b3b6a2f
added com fix
Deepikasri1234 80f07bb
com issue fixed
Deepikasri1234 0254603
speeling check
Deepikasri1234 0f1e364
spell check
Deepikasri1234 a8130c4
Merge branch 'develop' into feature/RDKEMW-13310
dp0000 4db99b2
resolving compilation failures
Deepikasri1234 a210add
Update PlayerTelemetry.h
dp0000 2a06647
Update InterfacePlayerRDK.cpp
dp0000 51e4139
removed entry markers
Deepikasri1234 df904f5
telemetry marker verification
Deepikasri1234 3b02f23
Update TelemetryMarkers.h
dp0000 c807cf2
added initial prints
Deepikasri1234 daf6ce8
Update InterfacePlayerRDK.cpp
dp0000 5373b66
Update opencdmsessionadapter.cpp
dp0000 0a1d146
Update opencdmsessionadapter.cpp
dp0000 35ccd29
Potential fix for pull request finding
dp0000 e55bf1a
Potential fix for pull request finding
dp0000 ba6fe0a
Potential fix for pull request finding
dp0000 881c70a
Update InterfacePlayerRDK.cpp
dp0000 c0ae9f4
Merge branch 'develop' into feature/RDKEMW-13310
dp0000 4e25993
Potential fix for pull request finding
dp0000 4d5d38b
added few markers
Deepikasri1234 2fae7ff
added headers
Deepikasri1234 502e85b
added markers for drm mismatch
Deepikasri1234 d90ea3a
relevant headers added
Deepikasri1234 7ad007a
Update DrmSessionManager.cpp
dp0000 74a4b25
Merge branch 'develop' into feature/RDKEMW-13310
dp0000 71bbb77
added telemetry for watermarking scenario
Deepikasri1234 983b43f
initialisation missed
Deepikasri1234 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Appending
PlayerTelemetry2.cpptoLIBPLAYERGSTINTERFACE_SOURCESviaset(LIBPLAYERGSTINTERFACE_SOURCES "${LIBPLAYERGSTINTERFACE_SOURCES}" PlayerTelemetry2.cpp)can accidentally turn a list into a single semicolon-delimited string and behaves differently from other source additions in this CMakeLists. Preferlist(APPEND LIBPLAYERGSTINTERFACE_SOURCES PlayerTelemetry2.cpp)(or unquoted${LIBPLAYERGSTINTERFACE_SOURCES}) for consistent list handling.