diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-29 06:53:57 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-29 06:53:57 +0000 |
commit | 3e21bd00219f2dd475f36cad70c7e8e5a6c90a4e (patch) | |
tree | a666f584af965358e59dbb99d51f4e1ede810f61 /media/video/picture.h | |
parent | 80afbdbf6432bae199da3ef53dc02de7160585cc (diff) | |
download | chromium_src-3e21bd00219f2dd475f36cad70c7e8e5a6c90a4e.zip chromium_src-3e21bd00219f2dd475f36cad70c7e8e5a6c90a4e.tar.gz chromium_src-3e21bd00219f2dd475f36cad70c7e8e5a6c90a4e.tar.bz2 |
Create media.dll / libmedia.so.
This is a re-attempt at landing http://codereview.chromium.org/7572040, now with a DEPS roll to pick up the changes made to ffmpeg by http://codereview.chromium.org/7778004/ so that media_unittests run properly on Linux.
TBR=fischman
Review URL: http://codereview.chromium.org/7775004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98600 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/video/picture.h')
-rw-r--r-- | media/video/picture.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/media/video/picture.h b/media/video/picture.h index ba52818..5d3b775 100644 --- a/media/video/picture.h +++ b/media/video/picture.h @@ -6,13 +6,14 @@ #define MEDIA_VIDEO_PICTURE_H_ #include "base/basictypes.h" +#include "media/base/media_export.h" #include "ui/gfx/size.h" namespace media { // A picture buffer that is composed of a GLES2 texture. // This is the media-namespace equivalent of PP_PictureBuffer_Dev. -class PictureBuffer { +class MEDIA_EXPORT PictureBuffer { public: PictureBuffer(int32 id, gfx::Size size, uint32 texture_id); @@ -41,7 +42,7 @@ class PictureBuffer { // A decoded picture frame. // This is the media-namespace equivalent of PP_Picture_Dev. -class Picture { +class MEDIA_EXPORT Picture { public: Picture(int32 picture_buffer_id, int32 bitstream_buffer_id); |