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

Side by Side Diff: webrtc/media/devices/gtkvideorenderer.cc

Issue 2517173004: Move VideoFrame and related declarations to webrtc/api/video. (Closed)
Patch Set: Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 // Implementation of GtkVideoRenderer 11 // Implementation of GtkVideoRenderer
12 12
13 #include "webrtc/api/video/video_frame.h"
14 #include "webrtc/common_video/include/video_frame_buffer.h"
13 #include "webrtc/media/devices/gtkvideorenderer.h" 15 #include "webrtc/media/devices/gtkvideorenderer.h"
14 #include "webrtc/video_frame.h"
15 16
16 #include <gdk/gdk.h> 17 #include <gdk/gdk.h>
17 #include <glib.h> 18 #include <glib.h>
18 #include <gtk/gtk.h> 19 #include <gtk/gtk.h>
19 20
20 #include "libyuv/convert_argb.h" 21 #include "libyuv/convert_argb.h"
21 22
22 namespace cricket { 23 namespace cricket {
23 24
24 class ScopedGdkLock { 25 class ScopedGdkLock {
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 } 152 }
152 153
153 if (!GTK_IS_WINDOW(window_) || !GTK_IS_DRAWING_AREA(draw_area_)) { 154 if (!GTK_IS_WINDOW(window_) || !GTK_IS_DRAWING_AREA(draw_area_)) {
154 return true; 155 return true;
155 } 156 }
156 157
157 return false; 158 return false;
158 } 159 }
159 160
160 } // namespace cricket 161 } // namespace cricket
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698