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

Fix piped TBC input with 3D chroma decoders #390

Merged
merged 2 commits into from
Dec 30, 2019

Commits on Dec 30, 2019

  1. Fill dummy fields correctly with black.

    These are QByteArrays, so using the fill method won't do the right thing
    when we're trying to fill with a 16-bit value.
    atsampson committed Dec 30, 2019
    Configuration menu
    Copy the full SHA
    713497d View commit details
    Browse the repository at this point in the history
  2. Construct dummy fields by resizing, rather than loading.

    SourceField::loadFields used to load field 1 then fill it with black
    when it needed a dummy black field. This doesn't work when input is from
    a pipe (because it would need to seek), so just resize the field data to
    the right size instead.
    atsampson committed Dec 30, 2019
    Configuration menu
    Copy the full SHA
    b5016ae View commit details
    Browse the repository at this point in the history