-
Notifications
You must be signed in to change notification settings - Fork 948
Implement audio video synchronization #4325
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
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
9a36199
Initial work on av sync
nanangizz ac3a298
Add av_sync.c to VS2022 project & GNU Makefile
nanangizz e95e972
Merge branch 'master' into avsync
nanangizz e96a566
Apply delay requests from AV sync to audio stream
nanangizz cc5b8a3
Clean ups, update docs
nanangizz 22415d0
Update logging & tracing
nanangizz 891c65b
Update based on comments.
nanangizz 8aca075
Update audio stream get_frame_ext()
nanangizz fd3ab06
Merge branch 'master' into avsync
nanangizz 56fe5a0
Add simple delay management in video stream
nanangizz 3fe71a4
Update pjmedia_av_sync_update_pts() docs
nanangizz 2e374ae
Handle avsync cancellation in mid call
nanangizz 098db88
Update config.h
nanangizz 12fd9a8
Merge branch 'master' into avsync
nanangizz 8a7ec1b
Merge branch 'master' into avsync
nanangizz 3f45ae8
Fix discard calculation in jbuf
nanangizz af137f1
Merge branch 'master' into avsync
nanangizz b501049
Update video stream to try to skip frames on speed up request
nanangizz cf6547d
Integrate synchronization into AVI streams
nanangizz 3874803
Fix error compile
nanangizz 649ef8f
Update VS2005 projects & SWIG symbols.i
nanangizz 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
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
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
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.
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.
Should an upper bound considered? Where does the magic numbers come from?
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.
Just added the upper bound 60s in the last commit, actually not really sure if it is needed.
The magic numbers are weighting for the smoothing, i.e: last delay uses weight of 19, newly received delay uses weight of 1, then divide the sum by 20 for the new delay. Instead of by 20, it is by 200 then multiplied to 10 for rounding down to nearest 10.
Thanks for the feedback.