/* * Copyright (c) 2016 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_PPS_PARSER_H_ #define COMMON_VIDEO_H264_PPS_PARSER_H_ #include <stddef.h> #include <stdint.h> #include "absl/types/optional.h" #include "api/array_view.h" namespace webrtc { // A class for parsing out picture parameter set (PPS) data from a H264 NALU. class PpsParser { … }; } // namespace webrtc #endif // COMMON_VIDEO_H264_PPS_PARSER_H_