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

Side by Side Diff: media/video/capture/mac/coremedia_glue.h

Issue 518313003: Move Mac media glue code from media/video/capture/mac to media/base/mac (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sort header includes by path. Created 6 years, 3 months 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/video/capture/mac/avfoundation_glue.mm ('k') | media/video/capture/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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_VIDEO_CAPTURE_MAC_COREMEDIA_GLUE_H_
6 #define MEDIA_VIDEO_CAPTURE_MAC_COREMEDIA_GLUE_H_
7
8 #import <CoreVideo/CoreVideo.h>
9 #import <Foundation/Foundation.h>
10
11 #include "base/basictypes.h"
12 #include "media/base/media_export.h"
13
14 // 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 // CoreMedia via the class declared in this file, where the original naming has
17 // been kept as much as possible.
18 class MEDIA_EXPORT CoreMediaGlue {
19 public:
20 // Originally from CMTime.h
21 typedef int64_t CMTimeValue;
22 typedef int32_t CMTimeScale;
23 typedef int64_t CMTimeEpoch;
24 typedef uint32_t CMTimeFlags;
25 typedef struct {
26 CMTimeValue value;
27 CMTimeScale timescale;
28 CMTimeFlags flags;
29 CMTimeEpoch epoch;
30 } CMTime;
31
32 // Originally from CMFormatDescription.h.
33 typedef const struct opaqueCMFormatDescription* CMFormatDescriptionRef;
34 typedef CMFormatDescriptionRef CMVideoFormatDescriptionRef;
35 typedef struct {
36 int32_t width;
37 int32_t height;
38 } CMVideoDimensions;
39 enum {
40 kCMPixelFormat_422YpCbCr8_yuvs = 'yuvs',
41 };
42 enum {
43 kCMVideoCodecType_JPEG_OpenDML = 'dmb1',
44 };
45
46 // Originally from CMSampleBuffer.h.
47 typedef struct OpaqueCMSampleBuffer* CMSampleBufferRef;
48
49 // Originally from CMTime.h.
50 static CMTime CMTimeMake(int64_t value, int32_t timescale);
51
52 // Originally from CMSampleBuffer.h.
53 static CVImageBufferRef CMSampleBufferGetImageBuffer(
54 CMSampleBufferRef buffer);
55
56 // Originally from CMFormatDescription.h.
57 static FourCharCode CMFormatDescriptionGetMediaSubType(
58 CMFormatDescriptionRef desc);
59 static CMVideoDimensions CMVideoFormatDescriptionGetDimensions(
60 CMVideoFormatDescriptionRef videoDesc);
61
62 private:
63 DISALLOW_IMPLICIT_CONSTRUCTORS(CoreMediaGlue);
64 };
65
66 #endif // MEDIA_VIDEO_CAPTURE_MAC_COREMEDIA_GLUE_H_
OLDNEW
« no previous file with comments | « media/video/capture/mac/avfoundation_glue.mm ('k') | media/video/capture/mac/coremedia_glue.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698