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

Side by Side Diff: media/base/mac/coremedia_glue.h

Issue 1542013004: Switch to standard integer types in media/, take 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more stddef Created 5 years 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 unified diff | Download patch
« no previous file with comments | « media/base/mac/avfoundation_glue.mm ('k') | media/base/mac/coremedia_glue.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « media/base/mac/avfoundation_glue.mm ('k') | media/base/mac/coremedia_glue.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698