-
Notifications
You must be signed in to change notification settings - Fork 3
Topic/rdkemw6161 ramesh #108
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
base: develop
Are you sure you want to change the base?
Conversation
ds/iarm/IarmHostImpl.cpp
Outdated
videoResolution.pixelResolution = eventData->data.composite_in_video_mode.resolution.pixelResolution; | ||
videoResolution.interlaced = eventData->data.composite_in_video_mode.resolution.interlaced; | ||
videoResolution.frameRate = eventData->data.composite_in_video_mode.resolution.frameRate; | ||
IarmHostImpl::Dispatch([compositePort,videoResolution](ICompositeInEvents* listener) { |
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.
Coverity issue no longer present as of: undefined
Show issue
Coverity Issue - Uninitialized scalar variable
Using uninitialized value "videoResolution". Field "videoResolution.name" is uninitialized.
High Impact, CWE-457
UNINIT
videoResolution.interlaced = eventData->data.composite_in_video_mode.resolution.interlaced; | ||
videoResolution.frameRate = eventData->data.composite_in_video_mode.resolution.frameRate; | ||
memset(videoResolution.name, 0, sizeof(videoResolution.name)); | ||
IarmHostImpl::Dispatch([compositePort,videoResolution](ICompositeInEvents* listener) { |
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.
Coverity issue no longer present as of: undefined
Show issue
Coverity Issue - Uninitialized scalar variable
Using uninitialized value "videoResolution". Field "videoResolution.aspectRatio" is uninitialized.
High Impact, CWE-457
UNINIT
No description provided.