You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
startVideoStreaming with given VideoStreamingParams.
Expected Behavior
Video streaming works in appropriate bitrate.
Observed Behavior
Video streaming on HU looks very poor quality.
OS & Version Information
Android Version: Android 7.0 (Samsung Galaxy S8)
SDL Android Version: commit daaac59 from develop branch
Testing Against: running on our video-capable dev-board
Test Case, Sample Code, and / or Example App
I will create PR later, but in short, it is a bug in VideoStreamingParameters class.
According to hmi_integration_guideline, maxBitrate is described as "The maximum bitrate of video stream that is supported, in kbps.", but the code treats it as bps.
The text was updated successfully, but these errors were encountered:
Bug Report
maxBitrate in VIDEO_STREAMING capability is read in wrong unit
Reproduction Steps
"systemCapability" : {
"systemCapabilityType" : "VIDEO_STREAMING",
"videoStreamingCapability" : {
"hapticSpatialDataSupported" : false,
"maxBitrate" : 10000,
"preferredResolution" : {
"resolutionHeight" : 416,
"resolutionWidth" : 800
},
"supportedFormats" : [
{
"codec" : "H264",
"protocol" : "RTP"
},
{
"codec" : "H264",
"protocol" : "RAW"
}
]
}
}
Expected Behavior
Video streaming works in appropriate bitrate.
Observed Behavior
Video streaming on HU looks very poor quality.
OS & Version Information
Test Case, Sample Code, and / or Example App
I will create PR later, but in short, it is a bug in VideoStreamingParameters class.
According to hmi_integration_guideline, maxBitrate is described as "The maximum bitrate of video stream that is supported, in kbps.", but the code treats it as bps.
The text was updated successfully, but these errors were encountered: