blob: a77a4d2541c71b34c5e250e037e9c7ec3cbb9d80 [file] [log] [blame]
Yaowu Xuc27fc142016-08-22 16:08:15 -07001/*
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002 * Copyright (c) 2016, Alliance for Open Media. All rights reserved
Yaowu Xuc27fc142016-08-22 16:08:15 -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.
Yaowu Xuc27fc142016-08-22 16:08:15 -070010 */
Tom Finegan60e653d2018-05-22 11:34:58 -070011#include "config/aom_config.h"
12
Yaowu Xuc27fc142016-08-22 16:08:15 -070013#define RTCD_C
Tom Finegan44702c82018-05-22 13:00:39 -070014#include "config/av1_rtcd.h"
15
Yaowu Xuf883b422016-08-30 14:01:10 -070016#include "aom_ports/aom_once.h"
Yaowu Xuc27fc142016-08-22 16:08:15 -070017
Yaowu Xuf883b422016-08-30 14:01:10 -070018void av1_rtcd() {
Wan-Teh Chang5396c552018-06-29 10:33:50 -070019 // TODO(JBB): Remove this aom_once, by insuring that both the encoder and
20 // decoder setup functions are protected by aom_once();
21 aom_once(setup_rtcd_internal);
Yaowu Xuc27fc142016-08-22 16:08:15 -070022}