| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_BASE_MAC_COREMEDIA_GLUE_H_ | 5 #ifndef MEDIA_BASE_MAC_COREMEDIA_GLUE_H_ |
| 6 #define MEDIA_BASE_MAC_COREMEDIA_GLUE_H_ | 6 #define MEDIA_BASE_MAC_COREMEDIA_GLUE_H_ |
| 7 | 7 |
| 8 #include <CoreVideo/CoreVideo.h> | 8 #include <CoreVideo/CoreVideo.h> |
| 9 #include <stddef.h> |
| 9 #include <stdint.h> | 10 #include <stdint.h> |
| 10 | 11 |
| 11 #include "base/macros.h" | 12 #include "base/macros.h" |
| 12 #include "media/base/media_export.h" | 13 #include "media/base/media_export.h" |
| 13 | 14 |
| 14 // CoreMedia API is only introduced in Mac OS X > 10.6, the (potential) linking | 15 // CoreMedia API is only introduced in Mac OS X > 10.6, the (potential) linking |
| 15 // with it has to happen in runtime. If it succeeds, subsequent clients can use | 16 // with it has to happen in runtime. If it succeeds, subsequent clients can use |
| 16 // CoreMedia via the class declared in this file, where the original naming has | 17 // CoreMedia via the class declared in this file, where the original naming has |
| 17 // been kept as much as possible. | 18 // been kept as much as possible. |
| 18 class MEDIA_EXPORT CoreMediaGlue { | 19 class MEDIA_EXPORT CoreMediaGlue { |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 size_t* parameterSetSizeOut, | 111 size_t* parameterSetSizeOut, |
| 111 size_t* parameterSetCountOut, | 112 size_t* parameterSetCountOut, |
| 112 int* NALUnitHeaderLengthOut) | 113 int* NALUnitHeaderLengthOut) |
| 113 /*__OSX_AVAILABLE_STARTING(__MAC_10_9,__IPHONE_7_0)*/; | 114 /*__OSX_AVAILABLE_STARTING(__MAC_10_9,__IPHONE_7_0)*/; |
| 114 | 115 |
| 115 private: | 116 private: |
| 116 DISALLOW_IMPLICIT_CONSTRUCTORS(CoreMediaGlue); | 117 DISALLOW_IMPLICIT_CONSTRUCTORS(CoreMediaGlue); |
| 117 }; | 118 }; |
| 118 | 119 |
| 119 #endif // MEDIA_BASE_MAC_COREMEDIA_GLUE_H_ | 120 #endif // MEDIA_BASE_MAC_COREMEDIA_GLUE_H_ |
| OLD | NEW |