mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
For #1685: Cross build RTC with FFmpeg
This commit is contained in:
parent
1c75a270b3
commit
1e9de0e191
267 changed files with 12603 additions and 1451 deletions
7
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/Makefile
vendored
Normal file
7
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/Makefile
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
OBJS += arm/audio_convert_init.o \
|
||||
arm/resample_init.o
|
||||
|
||||
OBJS-$(CONFIG_NEON_CLOBBER_TEST) += arm/neontest.o
|
||||
|
||||
NEON-OBJS += arm/audio_convert_neon.o \
|
||||
arm/resample_neon.o
|
29
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/asm-offsets.h
vendored
Normal file
29
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/asm-offsets.h
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
* FFmpeg is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* FFmpeg is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with FFmpeg; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#ifndef AVRESAMPLE_ARM_ASM_OFFSETS_H
|
||||
#define AVRESAMPLE_ARM_ASM_OFFSETS_H
|
||||
|
||||
/* struct ResampleContext */
|
||||
#define FILTER_BANK 0x08
|
||||
#define FILTER_LENGTH 0x0c
|
||||
#define SRC_INCR 0x20
|
||||
#define PHASE_SHIFT 0x28
|
||||
#define PHASE_MASK (PHASE_SHIFT + 0x04)
|
||||
|
||||
#endif /* AVRESAMPLE_ARM_ASM_OFFSETS_H */
|
49
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/audio_convert_init.c
vendored
Normal file
49
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/audio_convert_init.c
vendored
Normal file
|
@ -0,0 +1,49 @@
|
|||
/*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
* FFmpeg is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* FFmpeg is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with FFmpeg; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "config.h"
|
||||
#include "libavutil/attributes.h"
|
||||
#include "libavutil/cpu.h"
|
||||
#include "libavutil/arm/cpu.h"
|
||||
#include "libavutil/samplefmt.h"
|
||||
#include "libavresample/audio_convert.h"
|
||||
|
||||
void ff_conv_flt_to_s16_neon(int16_t *dst, const float *src, int len);
|
||||
void ff_conv_fltp_to_s16_neon(int16_t *dst, float *const *src,
|
||||
int len, int channels);
|
||||
void ff_conv_fltp_to_s16_2ch_neon(int16_t *dst, float *const *src,
|
||||
int len, int channels);
|
||||
|
||||
av_cold void ff_audio_convert_init_arm(AudioConvert *ac)
|
||||
{
|
||||
int cpu_flags = av_get_cpu_flags();
|
||||
|
||||
if (have_neon(cpu_flags)) {
|
||||
ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT,
|
||||
0, 16, 8, "NEON",
|
||||
ff_conv_flt_to_s16_neon);
|
||||
ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLTP,
|
||||
0, 16, 8, "NEON",
|
||||
ff_conv_fltp_to_s16_neon);
|
||||
ff_audio_convert_set_func(ac, AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLTP,
|
||||
2, 16, 8, "NEON",
|
||||
ff_conv_fltp_to_s16_2ch_neon);
|
||||
}
|
||||
}
|
31
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/neontest.c
vendored
Normal file
31
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/neontest.c
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
/*
|
||||
* check NEON registers for clobbers
|
||||
* Copyright (c) 2013 Martin Storsjo
|
||||
*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
* FFmpeg is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* FFmpeg is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with FFmpeg; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "libavresample/avresample.h"
|
||||
#include "libavutil/arm/neontest.h"
|
||||
|
||||
wrap(avresample_convert(AVAudioResampleContext *avr, uint8_t **output,
|
||||
int out_plane_size, int out_samples, uint8_t **input,
|
||||
int in_plane_size, int in_samples))
|
||||
{
|
||||
testneonclobbers(avresample_convert, avr, output, out_plane_size,
|
||||
out_samples, input, in_plane_size, in_samples);
|
||||
}
|
74
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/resample_init.c
vendored
Normal file
74
trunk/3rdparty/ffmpeg-4-fit/libavresample/arm/arm/resample_init.c
vendored
Normal file
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
* Copyright (c) 2014 Peter Meerwald <pmeerw@pmeerw.net>
|
||||
*
|
||||
* This file is part of FFmpeg.
|
||||
*
|
||||
* FFmpeg is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* FFmpeg is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with FFmpeg; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "libavutil/cpu.h"
|
||||
#include "libavutil/arm/cpu.h"
|
||||
#include "libavutil/internal.h"
|
||||
#include "libavutil/samplefmt.h"
|
||||
|
||||
#include "libavresample/resample.h"
|
||||
|
||||
#include "asm-offsets.h"
|
||||
|
||||
AV_CHECK_OFFSET(struct ResampleContext, filter_bank, FILTER_BANK);
|
||||
AV_CHECK_OFFSET(struct ResampleContext, filter_length, FILTER_LENGTH);
|
||||
AV_CHECK_OFFSET(struct ResampleContext, src_incr, SRC_INCR);
|
||||
AV_CHECK_OFFSET(struct ResampleContext, phase_shift, PHASE_SHIFT);
|
||||
AV_CHECK_OFFSET(struct ResampleContext, phase_mask, PHASE_MASK);
|
||||
|
||||
void ff_resample_one_flt_neon(struct ResampleContext *c, void *dst0,
|
||||
int dst_index, const void *src0,
|
||||
unsigned int index, int frac);
|
||||
void ff_resample_one_s16_neon(struct ResampleContext *c, void *dst0,
|
||||
int dst_index, const void *src0,
|
||||
unsigned int index, int frac);
|
||||
void ff_resample_one_s32_neon(struct ResampleContext *c, void *dst0,
|
||||
int dst_index, const void *src0,
|
||||
unsigned int index, int frac);
|
||||
|
||||
void ff_resample_linear_flt_neon(struct ResampleContext *c, void *dst0,
|
||||
int dst_index, const void *src0,
|
||||
unsigned int index, int frac);
|
||||
|
||||
av_cold void ff_audio_resample_init_arm(ResampleContext *c,
|
||||
enum AVSampleFormat sample_fmt)
|
||||
{
|
||||
int cpu_flags = av_get_cpu_flags();
|
||||
if (have_neon(cpu_flags)) {
|
||||
switch (sample_fmt) {
|
||||
case AV_SAMPLE_FMT_FLTP:
|
||||
if (c->linear)
|
||||
c->resample_one = ff_resample_linear_flt_neon;
|
||||
else
|
||||
c->resample_one = ff_resample_one_flt_neon;
|
||||
break;
|
||||
case AV_SAMPLE_FMT_S16P:
|
||||
if (!c->linear)
|
||||
c->resample_one = ff_resample_one_s16_neon;
|
||||
break;
|
||||
case AV_SAMPLE_FMT_S32P:
|
||||
if (!c->linear)
|
||||
c->resample_one = ff_resample_one_s32_neon;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue