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 2c0c249922fbede1092052719aa34606f157b671..34f003e38724f03e62fab3c285b3414b965be05d 100644 |
--- a/content/common/gpu/media/exynos_video_decode_accelerator.h |
+++ b/content/common/gpu/media/exynos_video_decode_accelerator.h |
@@ -151,7 +151,7 @@ class CONTENT_EXPORT ExynosVideoDecodeAccelerator : |
~GscInputRecord(); |
bool at_device; // held by device. |
int mfc_output; // MFC output buffer index to recycle when this input |
- // is complete |
+ // is complete. |
}; |
// Record for GSC output buffers. |
@@ -347,8 +347,6 @@ class CONTENT_EXPORT ExynosVideoDecodeAccelerator : |
// MFC input buffer state. |
bool mfc_input_streamon_; |
- // MFC input buffers, total. |
- int mfc_input_buffer_count_; |
// MFC input buffers enqueued to device. |
int mfc_input_buffer_queued_count_; |
// Input buffers ready to use, as a LIFO since we don't care about ordering. |
@@ -358,8 +356,6 @@ class CONTENT_EXPORT ExynosVideoDecodeAccelerator : |
// MFC output buffer state. |
bool mfc_output_streamon_; |
- // MFC output buffers, total. |
- int mfc_output_buffer_count_; |
// MFC output buffers enqueued to device. |
int mfc_output_buffer_queued_count_; |
// Output buffers ready to use, as a LIFO since we don't care about ordering. |
@@ -378,8 +374,6 @@ class CONTENT_EXPORT ExynosVideoDecodeAccelerator : |
// GSC input buffer state. |
bool gsc_input_streamon_; |
- // GSC input buffers, total. |
- int gsc_input_buffer_count_; |
// GSC input buffers enqueued to device. |
int gsc_input_buffer_queued_count_; |
// Input buffers ready to use, as a LIFO since we don't care about ordering. |
@@ -390,8 +384,6 @@ class CONTENT_EXPORT ExynosVideoDecodeAccelerator : |
// GSC output buffer state. |
bool gsc_output_streamon_; |
// GSC output buffers, total. |
Ami GONE FROM CHROMIUM
2013/01/31 00:30:08
lol looks like the wrong comment got nixed.
|
- int gsc_output_buffer_count_; |
- // GSC output buffers enqueued to device. |
int gsc_output_buffer_queued_count_; |
// Output buffers ready to use. We need a FIFO here. |
std::list<int> gsc_free_output_buffers_; |