chromium/third_party/webrtc/rtc_base/bitstream_reader.cc

/*
 *  Copyright 2021 The WebRTC Project Authors. All rights reserved.
 *
 *  Use of this source code is governed by a BSD-style license
 *  that can be found in the LICENSE file in the root of the source
 *  tree. An additional intellectual property rights grant can be found
 *  in the file PATENTS.  All contributing project authors may
 *  be found in the AUTHORS file in the root of the source tree.
 */

#include "rtc_base/bitstream_reader.h"

#include <stdint.h>

#include <limits>

#include "absl/numeric/bits.h"
#include "rtc_base/checks.h"
#include "rtc_base/numerics/safe_conversions.h"

namespace webrtc {

uint64_t BitstreamReader::ReadBits(int bits) {}

int BitstreamReader::ReadBit() {}

void BitstreamReader::ConsumeBits(int bits) {}

uint32_t BitstreamReader::ReadNonSymmetric(uint32_t num_values) {}

uint32_t BitstreamReader::ReadExponentialGolomb() {}

int BitstreamReader::ReadSignedExponentialGolomb() {}

uint64_t BitstreamReader::ReadLeb128() {}

std::string BitstreamReader::ReadString(int num_bytes) {}

}  // namespace webrtc