Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1dcadb46 authored by Andreas Huber's avatar Andreas Huber Committed by Android Git Automerger
Browse files

am 6283af5f: Merge "Logic to include HDCP specific PES extra header data was...

am 6283af5f: Merge "Logic to include HDCP specific PES extra header data was backwards." into jb-mr1-dev

* commit '6283af5f':
  Logic to include HDCP specific PES extra header data was backwards.
parents 070936d0 6283af5f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1376,8 +1376,8 @@ status_t WifiDisplaySource::PlaybackSession::packetizeAccessUnit(
    sp<ABuffer> packets;
    mPacketizer->packetize(
            track->packetizerTrackIndex(), accessUnit, &packets, flags,
            isHDCPEncrypted ? NULL : HDCP_private_data,
            isHDCPEncrypted ? 0 : sizeof(HDCP_private_data));
            !isHDCPEncrypted ? NULL : HDCP_private_data,
            !isHDCPEncrypted ? 0 : sizeof(HDCP_private_data));

    for (size_t offset = 0;
            offset < packets->size(); offset += 188) {