Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(836)

Unified Diff: webrtc/common_video/h264/h264_bitstream_parser.h

Issue 2430353004: Revert of Move bitstream parser to more appropriate directory. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/common_video/BUILD.gn ('k') | webrtc/common_video/h264/h264_bitstream_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_video/h264/h264_bitstream_parser.h
diff --git a/webrtc/common_video/h264/h264_bitstream_parser.h b/webrtc/common_video/h264/h264_bitstream_parser.h
deleted file mode 100644
index 0b84e4023417c67e226aad74f90ac237ae82066b..0000000000000000000000000000000000000000
--- a/webrtc/common_video/h264/h264_bitstream_parser.h
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
- * 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_COMMON_VIDEO_H264_H264_BITSTREAM_PARSER_H_
-#define WEBRTC_COMMON_VIDEO_H264_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_COMMON_VIDEO_H264_H264_BITSTREAM_PARSER_H_
« no previous file with comments | « webrtc/common_video/BUILD.gn ('k') | webrtc/common_video/h264/h264_bitstream_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698