Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix playback 4k and 1080p video stuck issue
Issue is when playing 4k or 1080p video with gallery, video get stuck on android 15. Cause is when c2 service change from hidl to aidl, block pool used in framework will change from buffer queue to IGBA, when allocating surface, surface metadata of igbp_id and igbp_slot will not be updated because they are buffer queue related concept. While in mediasdk_c2, it was checking igbp_id and igbp_slot during InitDecoder(), and caused IO pattern changed from video memory to system memory. Solution is removing checking of igbp_id and igbp_slot for now. This way will cause some vts test fail, which will need be fixed. Tracked-On: OAM-128397 Tracked-On: OAM-128324 Tracked-On: OAM-128315 Signed-off-by: Lina Sun <[email protected]>
- Loading branch information