Backed out 3 changesets (bug 1790375) for causing wd failures on fetch_error.py....
[gecko.git] / third_party / aom / test / clear_system_state.h
blobd38ff5dd5152710a5dc19738d98569cc6dbf9614
1 /*
2 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
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.
11 #ifndef AOM_TEST_CLEAR_SYSTEM_STATE_H_
12 #define AOM_TEST_CLEAR_SYSTEM_STATE_H_
14 #include "config/aom_config.h"
16 #if ARCH_X86 || ARCH_X86_64
17 #include "aom_ports/x86.h"
18 #endif
20 namespace libaom_test {
22 // Reset system to a known state. This function should be used for all non-API
23 // test cases.
24 inline void ClearSystemState() {
25 #if ARCH_X86 || ARCH_X86_64
26 aom_reset_mmx_state();
27 #endif
30 } // namespace libaom_test
31 #endif // AOM_TEST_CLEAR_SYSTEM_STATE_H_