| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/at_exit.h" | 5 #include "base/at_exit.h" |
| 6 #include "base/bind.h" | 6 #include "base/bind.h" |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/files/memory_mapped_file.h" | 9 #include "base/files/memory_mapped_file.h" |
| 10 #include "base/memory/scoped_vector.h" | 10 #include "base/memory/scoped_vector.h" |
| 11 #include "base/process/process.h" | 11 #include "base/process/process.h" |
| 12 #include "base/safe_numerics.h" | 12 #include "base/safe_numerics.h" |
| 13 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
| 14 #include "base/strings/string_split.h" | 14 #include "base/strings/string_split.h" |
| 15 #include "content/common/gpu/media/exynos_video_encode_accelerator.h" | 15 #include "content/common/gpu/media/exynos_video_encode_accelerator.h" |
| 16 #include "content/common/gpu/media/h264_parser.h" | 16 #include "content/common/gpu/media/h264_parser.h" |
| 17 #include "content/common/gpu/media/video_accelerator_unittest_helpers.h" | 17 #include "content/common/gpu/media/video_accelerator_unittest_helpers.h" |
| 18 #include "media/base/bind_to_loop.h" | 18 #include "media/base/bind_to_current_loop.h" |
| 19 #include "media/base/bitstream_buffer.h" | 19 #include "media/base/bitstream_buffer.h" |
| 20 #include "media/video/video_encode_accelerator.h" | 20 #include "media/video/video_encode_accelerator.h" |
| 21 #include "testing/gtest/include/gtest/gtest.h" | 21 #include "testing/gtest/include/gtest/gtest.h" |
| 22 | 22 |
| 23 using media::VideoEncodeAccelerator; | 23 using media::VideoEncodeAccelerator; |
| 24 | 24 |
| 25 namespace content { | 25 namespace content { |
| 26 namespace { | 26 namespace { |
| 27 | 27 |
| 28 // Arbitrarily chosen to add some depth to the pipeline. | 28 // Arbitrarily chosen to add some depth to the pipeline. |
| (...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 } | 592 } |
| 593 if (it->first == "v" || it->first == "vmodule") | 593 if (it->first == "v" || it->first == "vmodule") |
| 594 continue; | 594 continue; |
| 595 LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second; | 595 LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second; |
| 596 } | 596 } |
| 597 | 597 |
| 598 base::ShadowingAtExitManager at_exit_manager; | 598 base::ShadowingAtExitManager at_exit_manager; |
| 599 | 599 |
| 600 return RUN_ALL_TESTS(); | 600 return RUN_ALL_TESTS(); |
| 601 } | 601 } |
| OLD | NEW |