Chromium Code Reviews| Index: webrtc/modules/video_coding/h264_sprop_parameter_sets.h | 
| diff --git a/webrtc/modules/video_coding/h264_sprop_parameter_sets.h b/webrtc/modules/video_coding/h264_sprop_parameter_sets.h | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..a713de192b24a6093204576edcd8c07087878d95 | 
| --- /dev/null | 
| +++ b/webrtc/modules/video_coding/h264_sprop_parameter_sets.h | 
| @@ -0,0 +1,35 @@ | 
| +/* | 
| + * 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 WEBRTC_MODULES_VIDEO_CODING_H264_SPROP_PARAMETER_SETS_H_ | 
| +#define WEBRTC_MODULES_VIDEO_CODING_H264_SPROP_PARAMETER_SETS_H_ | 
| + | 
| +#include <string> | 
| +#include <vector> | 
| + | 
| +#include "webrtc/base/base64.h" | 
| 
 
sprang_webrtc
2016/12/08 10:08:38
Include this only in the implementation file inste
 
johan
2016/12/08 11:14:37
Acknowledged.
 
 | 
| +#include "webrtc/base/common.h" | 
| + | 
| +namespace webrtc { | 
| + | 
| +class H264SpropParameterSets { | 
| + public: | 
| + bool DecodeSprop(const std::string& sprop); | 
| + const std::vector<uint8_t>& sps_nalu() { return sps_; } | 
| + const std::vector<uint8_t>& pps_nalu() { return pps_; } | 
| + | 
| + private: | 
| + std::vector<uint8_t> sps_; | 
| + std::vector<uint8_t> pps_; | 
| 
 
sprang_webrtc
2016/12/08 10:08:38
Might want to add RTC_DISALLOW_COPY_AND_ASSIGN(H26
 
johan
2016/12/08 11:14:37
Acknowledged.
 
 | 
| +}; | 
| + | 
| +} // namespace webrtc | 
| + | 
| +#endif // WEBRTC_MODULES_VIDEO_CODING_H264_SPROP_PARAMETER_SETS_H_ |