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

Unified Diff: media/gpu/v4l2_image_processor.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/v4l2_device.cc ('k') | media/gpu/v4l2_image_processor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/gpu/v4l2_image_processor.h
diff --git a/media/gpu/v4l2_image_processor.h b/media/gpu/v4l2_image_processor.h
index e448a4d8939e48c32c13a60b81cf303956333601..3e456b9c32158683e323854eaf268fae5f0485f2 100644
--- a/media/gpu/v4l2_image_processor.h
+++ b/media/gpu/v4l2_image_processor.h
@@ -38,8 +38,8 @@ class MEDIA_GPU_EXPORT V4L2ImageProcessor {
// input buffers and output buffers will be |num_buffers|. Provided |error_cb|
// will be called if an error occurs. Return true if the requested
// configuration is supported.
- bool Initialize(media::VideoPixelFormat input_format,
- media::VideoPixelFormat output_format,
+ bool Initialize(VideoPixelFormat input_format,
+ VideoPixelFormat output_format,
v4l2_memory input_memory_type,
gfx::Size input_visible_size,
gfx::Size input_allocated_size,
@@ -85,7 +85,7 @@ class MEDIA_GPU_EXPORT V4L2ImageProcessor {
// stored in |output_buffer_index| output buffer and notified via |cb|. The
// processor will drop all its references to |frame| after it finishes
// accessing it.
- void Process(const scoped_refptr<media::VideoFrame>& frame,
+ void Process(const scoped_refptr<VideoFrame>& frame,
int output_buffer_index,
const FrameReadyCB& cb);
@@ -99,7 +99,7 @@ class MEDIA_GPU_EXPORT V4L2ImageProcessor {
struct InputRecord {
InputRecord();
~InputRecord();
- scoped_refptr<media::VideoFrame> frame;
+ scoped_refptr<VideoFrame> frame;
bool at_device;
};
@@ -117,7 +117,7 @@ class MEDIA_GPU_EXPORT V4L2ImageProcessor {
struct JobRecord {
JobRecord();
~JobRecord();
- scoped_refptr<media::VideoFrame> frame;
+ scoped_refptr<VideoFrame> frame;
int output_buffer_index;
FrameReadyCB ready_cb;
};
@@ -158,8 +158,8 @@ class MEDIA_GPU_EXPORT V4L2ImageProcessor {
gfx::Size output_visible_size_;
gfx::Size output_allocated_size_;
- media::VideoPixelFormat input_format_;
- media::VideoPixelFormat output_format_;
+ VideoPixelFormat input_format_;
+ VideoPixelFormat output_format_;
v4l2_memory input_memory_type_;
uint32_t input_format_fourcc_;
uint32_t output_format_fourcc_;
« no previous file with comments | « media/gpu/v4l2_device.cc ('k') | media/gpu/v4l2_image_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698