Reason for revert: Breaks internal project Original issue's description: > Move current bitstream parser to more appropriate directory. > > This CL groups together the code that has to do with parsing H264 bitstreams. > This code logically belongs together, and having it in the same directory not > only simplifies things from a project structure perspective, but also makes it > easier to refactor out common parts incrementally. > An added benefit is that this simplifies modular compilation, where for example > one would like a build of WebRTC without the H264 codec-specific parts. > > BUG=webrtc:6338 > > Committed: https://crrev.com/cc6817e9ce4a5ffc73efb660cf0368afbc7d9a4f > Cr-Commit-Position: refs/heads/master@{#14684} TBR=magjed@webrtc.org,stefan@webrtc.org # Skipping CQ checks because original CL landed less than 1 days ago. NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=webrtc:6338 Review-Url: https://codereview.webrtc.org/2430353004 Cr-Commit-Position: refs/heads/master@{#14685}
60 lines
2.0 KiB
C++
60 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 WEBRTC_MODULES_VIDEO_CODING_UTILITY_H264_BITSTREAM_PARSER_H_
|
|
#define WEBRTC_MODULES_VIDEO_CODING_UTILITY_H264_BITSTREAM_PARSER_H_
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "webrtc/base/optional.h"
|
|
#include "webrtc/common_video/h264/pps_parser.h"
|
|
#include "webrtc/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:
|
|
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);
|
|
bool 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.
|
|
rtc::Optional<SpsParser::SpsState> sps_;
|
|
rtc::Optional<PpsParser::PpsState> pps_;
|
|
|
|
// Last parsed slice QP.
|
|
rtc::Optional<int32_t> last_slice_qp_delta_;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // WEBRTC_MODULES_VIDEO_CODING_UTILITY_H264_BITSTREAM_PARSER_H_
|