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

Side by Side Diff: content/renderer/media/external_renderer.h

Issue 7193001: Move rtc_video_decoder* from media/filter/ to content/renderer/media/. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/media/rtc_video_decoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 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 CONTENT_RENDERER_MEDIA_EXTERNAL_RENDERER_H_
6 #define CONTENT_RENDERER_MEDIA_EXTERNAL_RENDERER_H_
7
8 // TODO(ronghuawu) ExternalRenderer should be replaced by
9 // cricket::VideoRenderer from libjingle
10 class ExternalRenderer {
11 public:
12 virtual int FrameSizeChange(unsigned int width,
13 unsigned int height,
14 unsigned int number_of_streams) = 0;
15 virtual int DeliverFrame(unsigned char* buffer, int buffer_size) = 0;
16
17 protected:
18 virtual ~ExternalRenderer() {}
19 };
20
21 #endif // CONTENT_RENDERER_MEDIA_EXTERNAL_RENDERER_H_
OLDNEW
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/media/rtc_video_decoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698