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

Rtp h263 test and fix #119

Merged
merged 6 commits into from Aug 8, 2022
Merged

Commits on Jul 13, 2022

  1. Update H263 Reader to handle missing frames/fragments.

    Change-Id: I43dfbabcbe686c31cb54e6b95688af1fa35a3d24
    ManishaJajoo committed Jul 13, 2022
    Copy the full SHA
    a38059d View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2022

  1. Add test for Rtp H263 Reader

    Change-Id: I57d57881ef5c158d41be1bf1e3714332d50cd3a9
    ManishaJajoo committed Jul 14, 2022
    Copy the full SHA
    da47771 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. Keep the input data constant in consume method

    Earlier, the consume method of RtpH263Reader was changing the bytes of the
    input bitstream during header parse. This commit copies the input into
    local context and changes the local variable as per the specifications
    thus keeping the input constant.
    ManishaJajoo committed Jul 18, 2022
    Copy the full SHA
    3bacb16 View commit details
    Browse the repository at this point in the history
  2. Copy the full SHA
    69a716f View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2022

  1. Revert "Keep the input data constant in consume method"

    This reverts commit 3bacb16.
    ManishaJajoo committed Jul 19, 2022
    Copy the full SHA
    c7fbf34 View commit details
    Browse the repository at this point in the history
  2. Pass local copy of input to RtpH263ReaderTest's consume method

    This change is done to keep the frame data unchanged.
    RtpH263Reader changes the header data in input, so to send the same
    RTP packet across multiple tests, each test copies the frame data
    into a new packet and sends that to the reader.
    ManishaJajoo committed Jul 19, 2022
    Copy the full SHA
    ef57a06 View commit details
    Browse the repository at this point in the history