Cast: Logging estimates clock difference based on packets
[chromium-blink-merge.git] / media / formats / mp4 / avc.h
blob1740b8fc92c7c7a2ac4a560b3827d31a770d7b6d
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef MEDIA_FORMATS_MP4_AVC_H_
6 #define MEDIA_FORMATS_MP4_AVC_H_
8 #include <vector>
10 #include "base/basictypes.h"
11 #include "media/base/media_export.h"
13 namespace media {
15 struct SubsampleEntry;
17 namespace mp4 {
19 struct AVCDecoderConfigurationRecord;
21 class MEDIA_EXPORT AVC {
22 public:
23 static bool ConvertFrameToAnnexB(int length_size, std::vector<uint8>* buffer);
25 // Inserts the SPS & PPS data from |avc_config| into |buffer|.
26 // |buffer| is expected to contain AnnexB conformant data.
27 // |subsamples| contains the SubsampleEntry info if |buffer| contains
28 // encrypted data.
29 // Returns true if the param sets were successfully inserted.
30 static bool InsertParamSetsAnnexB(
31 const AVCDecoderConfigurationRecord& avc_config,
32 std::vector<uint8>* buffer,
33 std::vector<SubsampleEntry>* subsamples);
35 static bool ConvertConfigToAnnexB(
36 const AVCDecoderConfigurationRecord& avc_config,
37 std::vector<uint8>* buffer,
38 std::vector<SubsampleEntry>* subsamples);
40 // Verifies that the contents of |buffer| conform to
41 // Section 7.4.1.2.3 of ISO/IEC 14496-10.
42 // |subsamples| contains the information about what parts of the buffer are
43 // encrypted and which parts are clear.
44 // Returns true if |buffer| contains conformant Annex B data
45 // TODO(acolwell): Remove the std::vector version when we can use,
46 // C++11's std::vector<T>::data() method.
47 static bool IsValidAnnexB(const std::vector<uint8>& buffer,
48 const std::vector<SubsampleEntry>& subsamples);
49 static bool IsValidAnnexB(const uint8* buffer, size_t size,
50 const std::vector<SubsampleEntry>& subsamples);
53 } // namespace mp4
54 } // namespace media
56 #endif // MEDIA_FORMATS_MP4_AVC_H_