fix(tizen): restore avplay video rendering and fix playback issues#59
fix(tizen): restore avplay video rendering and fix playback issues#59anudeepreddy wants to merge 2 commits intoNuvioMedia:mainfrom
Conversation
- Add <object type="application/avplayer"> surface for video rendering - Fix avplay lifecycle order: open() → setListener() → setDisplayRect() → prepareAsync() → play() - Remove tick timer polling getCurrentTime() to fix audio stuttering (time updates already provided by oncurrentplaytime callback) - Dismiss loading overlay on canplay event so it clears after mid-stream buffering
|
/oc Review this pull request: check for code quality issues, look for potential bugs and suggest improvements |
|
Findings:
Overall, the AVPlay rendering fix looks directionally correct, but I’d address the stall-guard regression before merging. |
|
hey @anudeepreddy, could you please take a look at this and fix any potential issues mentioned so we can merge? |
- This was missed in the previous commit
|
The ticktimer was not removed in the previous commit and is removed now in the latest commit and also made sure that timeupdate event is preserved. The console.log still exists, I hope that is fine |

The tizen player was not configured properly, the initial assumption was tizen avplay was unable to play content but after a bit of testing it turns out it's used a bit differently which was causing the video playback to be missing and was just playing audio. This PR fixes that problem.