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

Side by Side Diff: ppapi/thunk/ppb_media_stream_video_track_thunk.cc

Issue 1412323002: ppapi: Support up to 32 subsamples in PP_EncryptedBlockInfo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 // From ppb_media_stream_video_track.idl modified Thu Sep 18 11:36:39 2014. 5 // From ppb_media_stream_video_track.idl modified Fri Jun 13 10:40:42 2014.
6 6
7 #include "ppapi/c/pp_completion_callback.h" 7 #include "ppapi/c/pp_completion_callback.h"
8 #include "ppapi/c/pp_errors.h" 8 #include "ppapi/c/pp_errors.h"
9 #include "ppapi/c/ppb_media_stream_video_track.h" 9 #include "ppapi/c/ppb_media_stream_video_track.h"
10 #include "ppapi/shared_impl/tracked_callback.h" 10 #include "ppapi/shared_impl/tracked_callback.h"
11 #include "ppapi/thunk/enter.h" 11 #include "ppapi/thunk/enter.h"
12 #include "ppapi/thunk/ppapi_thunk_export.h" 12 #include "ppapi/thunk/ppapi_thunk_export.h"
13 #include "ppapi/thunk/ppb_media_stream_video_track_api.h" 13 #include "ppapi/thunk/ppb_media_stream_video_track_api.h"
14 14
15 namespace ppapi { 15 namespace ppapi {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 &IsMediaStreamVideoTrack, 120 &IsMediaStreamVideoTrack,
121 &Configure, 121 &Configure,
122 &GetAttrib, 122 &GetAttrib,
123 &GetId, 123 &GetId,
124 &HasEnded, 124 &HasEnded,
125 &GetFrame, 125 &GetFrame,
126 &RecycleFrame, 126 &RecycleFrame,
127 &Close}; 127 &Close};
128 128
129 const PPB_MediaStreamVideoTrack_1_0 g_ppb_mediastreamvideotrack_thunk_1_0 = { 129 const PPB_MediaStreamVideoTrack_1_0 g_ppb_mediastreamvideotrack_thunk_1_0 = {
130 &Create, 130 &Create, &IsMediaStreamVideoTrack,
131 &IsMediaStreamVideoTrack, 131 &Configure, &GetAttrib,
132 &Configure, 132 &GetId, &HasEnded,
133 &GetAttrib, 133 &GetFrame, &RecycleFrame,
134 &GetId, 134 &Close, &GetEmptyFrame,
135 &HasEnded,
136 &GetFrame,
137 &RecycleFrame,
138 &Close,
139 &GetEmptyFrame,
140 &PutFrame}; 135 &PutFrame};
141 136
142 } // namespace 137 } // namespace
143 138
144 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_0_1* 139 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_0_1*
145 GetPPB_MediaStreamVideoTrack_0_1_Thunk() { 140 GetPPB_MediaStreamVideoTrack_0_1_Thunk() {
146 return &g_ppb_mediastreamvideotrack_thunk_0_1; 141 return &g_ppb_mediastreamvideotrack_thunk_0_1;
147 } 142 }
148 143
149 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_1_0* 144 PPAPI_THUNK_EXPORT const PPB_MediaStreamVideoTrack_1_0*
150 GetPPB_MediaStreamVideoTrack_1_0_Thunk() { 145 GetPPB_MediaStreamVideoTrack_1_0_Thunk() {
151 return &g_ppb_mediastreamvideotrack_thunk_1_0; 146 return &g_ppb_mediastreamvideotrack_thunk_1_0;
152 } 147 }
153 148
154 } // namespace thunk 149 } // namespace thunk
155 } // namespace ppapi 150 } // namespace ppapi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698