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

Unified Diff: media/gpu/dxva_picture_buffer_win.h

Issue 2061823003: media: Drop "media::" in media/gpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: work around clang format by adding an empty line Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « media/gpu/avda_state_provider.h ('k') | media/gpu/dxva_picture_buffer_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/gpu/dxva_picture_buffer_win.h
diff --git a/media/gpu/dxva_picture_buffer_win.h b/media/gpu/dxva_picture_buffer_win.h
index 59a35d595f4e0387a1506e9dc8970d1f3631e9b3..83814756dfb5d30dd4cfa26bba6eb505995e1701 100644
--- a/media/gpu/dxva_picture_buffer_win.h
+++ b/media/gpu/dxva_picture_buffer_win.h
@@ -29,7 +29,7 @@ class DXVAPictureBuffer {
public:
static linked_ptr<DXVAPictureBuffer> Create(
const DXVAVideoDecodeAccelerator& decoder,
- const media::PictureBuffer& buffer,
+ const PictureBuffer& buffer,
EGLConfig egl_config);
virtual ~DXVAPictureBuffer();
@@ -62,10 +62,10 @@ class DXVAPictureBuffer {
virtual bool BindSampleToTexture(base::win::ScopedComPtr<IMFSample> sample);
protected:
- explicit DXVAPictureBuffer(const media::PictureBuffer& buffer);
+ explicit DXVAPictureBuffer(const PictureBuffer& buffer);
bool available_;
- media::PictureBuffer picture_buffer_;
+ PictureBuffer picture_buffer_;
DISALLOW_COPY_AND_ASSIGN(DXVAPictureBuffer);
};
@@ -73,7 +73,7 @@ class DXVAPictureBuffer {
// Copies the video result into an RGBA EGL pbuffer.
class PbufferPictureBuffer : public DXVAPictureBuffer {
public:
- explicit PbufferPictureBuffer(const media::PictureBuffer& buffer);
+ explicit PbufferPictureBuffer(const PictureBuffer& buffer);
~PbufferPictureBuffer() override;
bool Initialize(const DXVAVideoDecodeAccelerator& decoder,
@@ -130,7 +130,7 @@ class PbufferPictureBuffer : public DXVAPictureBuffer {
// Shares the decoded texture with ANGLE without copying by using an EGL stream.
class EGLStreamPictureBuffer : public DXVAPictureBuffer {
public:
- explicit EGLStreamPictureBuffer(const media::PictureBuffer& buffer);
+ explicit EGLStreamPictureBuffer(const PictureBuffer& buffer);
~EGLStreamPictureBuffer() override;
bool Initialize();
« no previous file with comments | « media/gpu/avda_state_provider.h ('k') | media/gpu/dxva_picture_buffer_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698