blob: 4f3c1eed0774301aeb586fc1258cbc53d87d7885 [file] [log] [blame]
James Zern5b756742013-06-17 22:58:40 -07001/*
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
James Zern5b756742013-06-17 22:58:40 -07003 *
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07004 * 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 Zern5b756742013-06-17 22:58:40 -070010 */
11#ifndef TEST_CLEAR_SYSTEM_STATE_H_
12#define TEST_CLEAR_SYSTEM_STATE_H_
13
Yaowu Xuf883b422016-08-30 14:01:10 -070014#include "./aom_config.h"
James Zern5b756742013-06-17 22:58:40 -070015#if ARCH_X86 || ARCH_X86_64
Yaowu Xuc27fc142016-08-22 16:08:15 -070016#include "aom_ports/x86.h"
James Zern5b756742013-06-17 22:58:40 -070017#endif
James Zern5b756742013-06-17 22:58:40 -070018
Yaowu Xuc27fc142016-08-22 16:08:15 -070019namespace libaom_test {
James Zern5b756742013-06-17 22:58:40 -070020
21// Reset system to a known state. This function should be used for all non-API
22// test cases.
23inline void ClearSystemState() {
24#if ARCH_X86 || ARCH_X86_64
Yaowu Xuf883b422016-08-30 14:01:10 -070025 aom_reset_mmx_state();
James Zern5b756742013-06-17 22:58:40 -070026#endif
27}
28
Yaowu Xuc27fc142016-08-22 16:08:15 -070029} // namespace libaom_test
James Zern5b756742013-06-17 22:58:40 -070030#endif // TEST_CLEAR_SYSTEM_STATE_H_