James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 1 | /* |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 2 | * Copyright (c) 2016, Alliance for Open Media. All rights reserved |
James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 3 | * |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 4 | * This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | * was not distributed with this source code in the LICENSE file, you can |
| 7 | * obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | * Media Patent License 1.0 was not distributed with this source code in the |
| 9 | * PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 10 | */ |
| 11 | #ifndef TEST_CLEAR_SYSTEM_STATE_H_ |
| 12 | #define TEST_CLEAR_SYSTEM_STATE_H_ |
| 13 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 14 | #include "./aom_config.h" |
James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 15 | #if ARCH_X86 || ARCH_X86_64 |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 16 | #include "aom_ports/x86.h" |
James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 17 | #endif |
James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 18 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 19 | namespace libaom_test { |
James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 20 | |
| 21 | // Reset system to a known state. This function should be used for all non-API |
| 22 | // test cases. |
| 23 | inline void ClearSystemState() { |
| 24 | #if ARCH_X86 || ARCH_X86_64 |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 25 | aom_reset_mmx_state(); |
James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 26 | #endif |
| 27 | } |
| 28 | |
Yaowu Xu | c27fc14 | 2016-08-22 16:08:15 -0700 | [diff] [blame] | 29 | } // namespace libaom_test |
James Zern | 5b75674 | 2013-06-17 22:58:40 -0700 | [diff] [blame] | 30 | #endif // TEST_CLEAR_SYSTEM_STATE_H_ |