mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: ARM: use numeric ID for Tag_ABI_align_preserved segment: Pass the interrupt callback on to the chained AVFormatContext, too ARM: bswap: drop armcc version of av_bswap16() ARM: set Tag_ABI_align_preserved in all asm files Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
7e5496fc41
@ -22,8 +22,6 @@
|
||||
#include "config.h"
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
#if HAVE_ARMV5TE
|
||||
function ff_prefetch_arm, export=1
|
||||
subs r2, r2, #1
|
||||
|
@ -20,8 +20,6 @@
|
||||
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
.macro call_2x_pixels type, subp
|
||||
function ff_\type\()_pixels16\subp\()_armv6, export=1
|
||||
push {r0-r3, lr}
|
||||
|
@ -22,8 +22,6 @@
|
||||
#include "config.h"
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
function ff_clear_block_neon, export=1
|
||||
vmov.i16 q0, #0
|
||||
.rept 8
|
||||
|
@ -22,8 +22,6 @@
|
||||
#include "config.h"
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
function ff_float_to_int16_neon, export=1
|
||||
subs r2, r2, #8
|
||||
vld1.64 {d0-d1}, [r1,:128]!
|
||||
|
@ -20,8 +20,6 @@
|
||||
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
function ff_h264_idct_add_neon, export=1
|
||||
vld1.64 {d0-d3}, [r1,:128]
|
||||
|
||||
|
@ -21,7 +21,6 @@
|
||||
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
.fpu neon
|
||||
|
||||
function ff_scalarproduct_int16_neon, export=1
|
||||
|
@ -20,8 +20,6 @@
|
||||
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
.macro prerot dst, rt
|
||||
lsr r3, r6, #2 @ n4
|
||||
add \rt, r4, r6, lsr #1 @ revtab + n4
|
||||
|
@ -21,8 +21,6 @@
|
||||
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
#define ff_fft_calc_neon X(ff_fft_calc_neon)
|
||||
|
||||
function ff_imdct_half_neon, export=1
|
||||
|
@ -21,8 +21,6 @@
|
||||
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
function ff_rdft_calc_neon, export=1
|
||||
push {r4-r8,lr}
|
||||
|
||||
|
@ -20,8 +20,6 @@
|
||||
|
||||
#include "libavutil/arm/asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
function ff_synth_filter_float_neon, export=1
|
||||
push {r3-r11,lr}
|
||||
|
||||
|
@ -357,6 +357,7 @@ static int seg_write_header(AVFormatContext *s)
|
||||
goto fail;
|
||||
}
|
||||
|
||||
oc->interrupt_callback = s->interrupt_callback;
|
||||
seg->avf = oc;
|
||||
|
||||
oc->streams = s->streams;
|
||||
|
@ -52,14 +52,7 @@
|
||||
|
||||
.syntax unified
|
||||
T .thumb
|
||||
|
||||
.macro require8 val=1
|
||||
ELF .eabi_attribute 24, \val
|
||||
.endm
|
||||
|
||||
.macro preserve8 val=1
|
||||
ELF .eabi_attribute 25, \val
|
||||
.endm
|
||||
ELF .eabi_attribute 25, 1 @ Tag_ABI_align_preserved
|
||||
|
||||
.macro function name, export=0
|
||||
.set .Lpic_idx, 0
|
||||
|
@ -26,13 +26,6 @@
|
||||
#ifdef __ARMCC_VERSION
|
||||
|
||||
#if HAVE_ARMV6
|
||||
#define av_bswap16 av_bswap16
|
||||
static av_always_inline av_const unsigned av_bswap16(unsigned x)
|
||||
{
|
||||
__asm { rev16 x, x }
|
||||
return x;
|
||||
}
|
||||
|
||||
#define av_bswap32 av_bswap32
|
||||
static av_always_inline av_const uint32_t av_bswap32(uint32_t x)
|
||||
{
|
||||
|
@ -22,8 +22,6 @@
|
||||
#include "config.h"
|
||||
#include "asm.S"
|
||||
|
||||
preserve8
|
||||
|
||||
function ff_vector_fmul_neon, export=1
|
||||
subs r3, r3, #8
|
||||
vld1.32 {d0-d3}, [r1,:128]!
|
||||
|
Loading…
Reference in New Issue
Block a user