2012-08-09 00:47:36 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2011 The WebM project authors. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license
|
|
|
|
* that can be found in the LICENSE file in the root of the source
|
|
|
|
* tree. An additional intellectual property rights grant can be found
|
|
|
|
* in the file PATENTS. All contributing project authors may
|
|
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
|
|
*/
|
2013-09-30 04:29:58 +02:00
|
|
|
#include "./vpx_config.h"
|
2012-08-09 00:47:36 +02:00
|
|
|
#define RTCD_C
|
2013-09-30 04:29:58 +02:00
|
|
|
#include "./vp9_rtcd.h"
|
2012-11-09 02:09:30 +01:00
|
|
|
#include "vpx_ports/vpx_once.h"
|
2012-10-10 21:30:16 +02:00
|
|
|
|
2013-02-27 00:52:05 +01:00
|
|
|
void vp9_rtcd() {
|
2014-12-19 00:50:46 +01:00
|
|
|
// TODO(JBB): Remove this once, by insuring that both the encoder and
|
|
|
|
// decoder setup functions are protected by once();
|
2012-10-10 21:30:16 +02:00
|
|
|
once(setup_rtcd_internal);
|
2012-08-09 00:47:36 +02:00
|
|
|
}
|