Skip to content
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

Save-to-webm: use timestamp from samplebuilder #130

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Nov 11, 2022

  1. Save-to-webm: use timestamp from samplebuilder

    This avoids desyncing by accumulating drift.
    tmatth committed Nov 11, 2022
    Configuration menu
    Copy the full SHA
    5bab82e View commit details
    Browse the repository at this point in the history

Commits on Nov 12, 2022

  1. Save-to-webm: handle timestamp wrap

    In the event that the packet timestamp wraps past uint32max, cast to
    int64 and add uint32_max so that the delta (and thus the webm timestamp)
    stays positive.
    tmatth committed Nov 12, 2022
    Configuration menu
    Copy the full SHA
    aca9a01 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2022

  1. Save-to-webm: do not force starting ts to 0

    Instead we use the sample.Duration (as before) for the first packet
    only, subsequent packets will be computed as a delta.
    tmatth committed Nov 18, 2022
    Configuration menu
    Copy the full SHA
    c827071 View commit details
    Browse the repository at this point in the history