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

Commit 6283af5f authored by Andreas Huber's avatar Andreas Huber Committed by Android (Google) Code Review
Browse files

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

parents 842c5d95 019aabab
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) {