chromium/media/base/encryption_pattern.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/base/encryption_pattern.h"

namespace media {

EncryptionPattern::EncryptionPattern() = default;

EncryptionPattern::EncryptionPattern(uint32_t crypt_byte_block,
                                     uint32_t skip_byte_block)
    :{}

EncryptionPattern::EncryptionPattern(const EncryptionPattern& rhs) = default;

EncryptionPattern& EncryptionPattern::operator=(const EncryptionPattern& rhs) =
    default;

EncryptionPattern::~EncryptionPattern() = default;

bool EncryptionPattern::operator==(const EncryptionPattern& other) const {}

bool EncryptionPattern::operator!=(const EncryptionPattern& other) const {}

std::ostream& operator<<(std::ostream& os,
                         const EncryptionPattern& encryption_pattern) {}

}  // namespace media