This is a no-op change because rtc::Optional is an alias to absl::optional
This CL generated by running script passing top level directories except rtc_base and api
find $@ -type f \( -name \*.h -o -name \*.cc -o -name \*.mm \) \
-exec sed -i 's|rtc::Optional|absl::optional|g' {} \+ \
-exec sed -i 's|rtc::nullopt|absl::nullopt|g' {} \+ \
-exec sed -i 's|#include "api/optional.h"|#include "absl/types/optional.h"|' {} \+
find $@ -type f -name BUILD.gn \
-exec sed -r -i 's|"[\./api]*:optional"|"//third_party/abseil-cpp/absl/types:optional"|' {} \+;
git cl format
Bug: webrtc:9078
Change-Id: I9465c172e65ba6e6ed4e4fdc35b0b265038d6f71
Reviewed-on: https://webrtc-review.googlesource.com/84584
Reviewed-by: Karl Wiberg <kwiberg@webrtc.org>
Commit-Queue: Danil Chapovalov <danilchap@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#23697}
66 lines
2.0 KiB
C++
66 lines
2.0 KiB
C++
/*
|
|
* Copyright (c) 2015 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.
|
|
*/
|
|
|
|
#ifndef COMMON_VIDEO_H264_H264_BITSTREAM_PARSER_H_
|
|
#define COMMON_VIDEO_H264_H264_BITSTREAM_PARSER_H_
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "absl/types/optional.h"
|
|
#include "common_video/h264/pps_parser.h"
|
|
#include "common_video/h264/sps_parser.h"
|
|
|
|
namespace rtc {
|
|
class BitBufferWriter;
|
|
}
|
|
|
|
namespace webrtc {
|
|
|
|
// Stateful H264 bitstream parser (due to SPS/PPS). Used to parse out QP values
|
|
// from the bitstream.
|
|
// TODO(pbos): Unify with RTP SPS parsing and only use one H264 parser.
|
|
// TODO(pbos): If/when this gets used on the receiver side CHECKs must be
|
|
// removed and gracefully abort as we have no control over receive-side
|
|
// bitstreams.
|
|
class H264BitstreamParser {
|
|
public:
|
|
enum Result {
|
|
kOk,
|
|
kInvalidStream,
|
|
kUnsupportedStream,
|
|
};
|
|
|
|
H264BitstreamParser();
|
|
virtual ~H264BitstreamParser();
|
|
|
|
// Parse an additional chunk of H264 bitstream.
|
|
void ParseBitstream(const uint8_t* bitstream, size_t length);
|
|
|
|
// Get the last extracted QP value from the parsed bitstream.
|
|
bool GetLastSliceQp(int* qp) const;
|
|
|
|
protected:
|
|
void ParseSlice(const uint8_t* slice, size_t length);
|
|
Result ParseNonParameterSetNalu(const uint8_t* source,
|
|
size_t source_length,
|
|
uint8_t nalu_type);
|
|
|
|
// SPS/PPS state, updated when parsing new SPS/PPS, used to parse slices.
|
|
absl::optional<SpsParser::SpsState> sps_;
|
|
absl::optional<PpsParser::PpsState> pps_;
|
|
|
|
// Last parsed slice QP.
|
|
absl::optional<int32_t> last_slice_qp_delta_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // COMMON_VIDEO_H264_H264_BITSTREAM_PARSER_H_
|