-
Notifications
You must be signed in to change notification settings - Fork 3
Feature/rdkemw 13310 #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
22
commits into
feature/dev_sprint_pli
Choose a base branch
from
feature/RDKEMW-13310
base: feature/dev_sprint_pli
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
22 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 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
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.