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

Unified Diff: content/common/gpu/media/exynos_video_decode_accelerator.h

Issue 119153002: Move H264Parser and H264BitReader to media/filters. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add test-25fps.h264 to isolate Created 7 years 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
Index: content/common/gpu/media/exynos_video_decode_accelerator.h
diff --git a/content/common/gpu/media/exynos_video_decode_accelerator.h b/content/common/gpu/media/exynos_video_decode_accelerator.h
index 52ae989aa91888824cf5780dcd41d39f3519d057..4723f1ffebc904b27c294c0760156051de502c55 100644
--- a/content/common/gpu/media/exynos_video_decode_accelerator.h
+++ b/content/common/gpu/media/exynos_video_decode_accelerator.h
@@ -25,11 +25,13 @@
namespace base {
class MessageLoopProxy;
-}
+} // namespace base
-namespace content {
+namespace media {
class H264Parser;
+} // namespace media
+namespace content {
// This class handles Exynos video acceleration directly through the V4L2
// device exported by the Multi Format Codec hardware block.
//
@@ -349,7 +351,7 @@ class CONTENT_EXPORT ExynosVideoDecodeAccelerator
std::queue<linked_ptr<BitstreamBufferRef> > decoder_input_queue_;
// For H264 decode, hardware requires that we send it frame-sized chunks.
// We'll need to parse the stream.
- scoped_ptr<content::H264Parser> decoder_h264_parser_;
+ scoped_ptr<media::H264Parser> decoder_h264_parser_;
// Set if the decoder has a pending incomplete frame in an input buffer.
bool decoder_partial_frame_pending_;
« no previous file with comments | « no previous file | content/common/gpu/media/exynos_video_decode_accelerator.cc » ('j') | media/filters/h264_bit_reader_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698