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

Unified Diff: media/gpu/vp9_decoder.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/vp8_decoder.cc ('k') | media/gpu/vp9_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/gpu/vp9_decoder.h
diff --git a/media/gpu/vp9_decoder.h b/media/gpu/vp9_decoder.h
index 20e869e87bf269fbdc2df65ac5c65e364b5f272d..b53f0a889d5f15dfb2cdea5f536a6d4e72e46464 100644
--- a/media/gpu/vp9_decoder.h
+++ b/media/gpu/vp9_decoder.h
@@ -59,8 +59,8 @@ class MEDIA_GPU_EXPORT VP9Decoder : public AcceleratedVideoDecoder {
// Return true when successful, false otherwise.
virtual bool SubmitDecode(
const scoped_refptr<VP9Picture>& pic,
- const media::Vp9Segmentation& seg,
- const media::Vp9LoopFilter& lf,
+ const Vp9Segmentation& seg,
+ const Vp9LoopFilter& lf,
const std::vector<scoped_refptr<VP9Picture>>& ref_pictures) = 0;
// Schedule output (display) of |pic|.
@@ -82,7 +82,7 @@ class MEDIA_GPU_EXPORT VP9Decoder : public AcceleratedVideoDecoder {
VP9Decoder(VP9Accelerator* accelerator);
~VP9Decoder() override;
- // media::AcceleratedVideoDecoder implementation.
+ // AcceleratedVideoDecoder implementation.
void SetStream(const uint8_t* ptr, size_t size) override;
bool Flush() override WARN_UNUSED_RESULT;
void Reset() override;
@@ -113,7 +113,7 @@ class MEDIA_GPU_EXPORT VP9Decoder : public AcceleratedVideoDecoder {
State state_;
// Current frame header to be used in decoding the next picture.
- std::unique_ptr<media::Vp9FrameHeader> curr_frame_hdr_;
+ std::unique_ptr<Vp9FrameHeader> curr_frame_hdr_;
// Reference frames currently in use.
std::vector<scoped_refptr<VP9Picture>> ref_frames_;
@@ -121,7 +121,7 @@ class MEDIA_GPU_EXPORT VP9Decoder : public AcceleratedVideoDecoder {
// Current coded resolution.
gfx::Size pic_size_;
- media::Vp9Parser parser_;
+ Vp9Parser parser_;
// VP9Accelerator instance owned by the client.
VP9Accelerator* accelerator_;
« no previous file with comments | « media/gpu/vp8_decoder.cc ('k') | media/gpu/vp9_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698