2018-01-19 03:59:58 +08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
|
|
#include "avutil.h"
|
|
|
|
|
|
|
|
|
|
// cpu_internal.c
|
|
|
|
|
int ff_get_cpu_flags_aarch64(void) { return 0; }
|
|
|
|
|
int ff_get_cpu_flags_arm(void) { return 0; }
|
|
|
|
|
int ff_get_cpu_flags_ppc(void) { return 0; }
|
|
|
|
|
|
|
|
|
|
// float_dsp.c
|
|
|
|
|
#include "float_dsp.h"
|
|
|
|
|
void ff_float_dsp_init_aarch64(AVFloatDSPContext *fdsp) {}
|
|
|
|
|
void ff_float_dsp_init_arm(AVFloatDSPContext *fdsp) {}
|
|
|
|
|
void ff_float_dsp_init_ppc(AVFloatDSPContext *fdsp, int strict) {}
|
|
|
|
|
void ff_float_dsp_init_mips(AVFloatDSPContext *fdsp) {}
|
|
|
|
|
|
2018-02-04 13:19:22 -06:00
|
|
|
int av_hwframe_get_buffer(struct AVBufferRef* hwframe_ref, struct AVFrame* frame, int flags) { return 0; }
|
2018-04-26 16:49:15 -05:00
|
|
|
|
|
|
|
|
// cpu.c
|
|
|
|
|
size_t ff_get_cpu_max_align_aarch64() { return 0; }
|
|
|
|
|
size_t ff_get_cpu_max_align_arm() { return 0; }
|
|
|
|
|
size_t ff_get_cpu_max_align_ppc() { return 0; }
|