mirror of https://git.ffmpeg.org/ffmpeg.git
Merge remote-tracking branch 'qatar/master'
* qatar/master: ARM: ac3dsp: optimised update_bap_counts() mpegaudiodec: Fix av_dlog() invocation. h264/10bit: add HAVE_ALIGNED_STACK checks. Update 8-bit H.264 IDCT function names to reflect bit-depth. Add IDCT functions for 10-bit H.264. mpegaudioenc: Fix broken av_dlog statement. Employ correct printf format specifiers, mostly in debug output. ARM: fix MUL64 inline asm for pre-armv6 Conflicts: libavcodec/mpegaudioenc.c libavformat/ape.c libavformat/mxfdec.c libavformat/r3d.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
cd8cb54990
|
@ -1,4 +1,5 @@
|
|||
OBJS-$(CONFIG_AC3DSP) += arm/ac3dsp_init_arm.o \
|
||||
arm/ac3dsp_arm.o
|
||||
|
||||
OBJS-$(CONFIG_DCA_DECODER) += arm/dcadsp_init_arm.o \
|
||||
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
/*
|
||||
* Copyright (c) 2011 Mans Rullgard <mans@mansr.com>
|
||||
*
|
||||
* This file is part of Libav.
|
||||
*
|
||||
* Libav 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.
|
||||
*
|
||||
* Libav 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 Libav; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "asm.S"
|
||||
|
||||
function ff_ac3_update_bap_counts_arm, export=1
|
||||
push {lr}
|
||||
ldrb lr, [r1], #1
|
||||
1:
|
||||
lsl r3, lr, #1
|
||||
ldrh r12, [r0, r3]
|
||||
subs r2, r2, #1
|
||||
ldrbgt lr, [r1], #1
|
||||
add r12, r12, #1
|
||||
strh r12, [r0, r3]
|
||||
bgt 1b
|
||||
pop {pc}
|
||||
endfunc
|
|
@ -35,10 +35,12 @@ void ff_ac3_bit_alloc_calc_bap_armv6(int16_t *mask, int16_t *psd,
|
|||
int snr_offset, int floor,
|
||||
const uint8_t *bap_tab, uint8_t *bap);
|
||||
|
||||
int ff_ac3_compute_mantissa_size_arm(int cnt[5], uint8_t *bap, int nb_coefs);
|
||||
void ff_ac3_update_bap_counts_arm(uint16_t mant_cnt[16], uint8_t *bap, int len);
|
||||
|
||||
av_cold void ff_ac3dsp_init_arm(AC3DSPContext *c, int bit_exact)
|
||||
{
|
||||
c->update_bap_counts = ff_ac3_update_bap_counts_arm;
|
||||
|
||||
if (HAVE_ARMV6) {
|
||||
c->bit_alloc_calc_bap = ff_ac3_bit_alloc_calc_bap_armv6;
|
||||
}
|
||||
|
|
|
@ -41,6 +41,8 @@ static inline av_const int MULL(int a, int b, unsigned shift)
|
|||
}
|
||||
|
||||
#define MULH MULH
|
||||
#define MUL64 MUL64
|
||||
|
||||
#if HAVE_ARMV6
|
||||
static inline av_const int MULH(int a, int b)
|
||||
{
|
||||
|
@ -48,6 +50,13 @@ static inline av_const int MULH(int a, int b)
|
|||
__asm__ ("smmul %0, %1, %2" : "=r"(r) : "r"(a), "r"(b));
|
||||
return r;
|
||||
}
|
||||
|
||||
static inline av_const int64_t MUL64(int a, int b)
|
||||
{
|
||||
int64_t x;
|
||||
__asm__ ("smull %Q0, %R0, %1, %2" : "=r"(x) : "r"(a), "r"(b));
|
||||
return x;
|
||||
}
|
||||
#else
|
||||
static inline av_const int MULH(int a, int b)
|
||||
{
|
||||
|
@ -55,15 +64,14 @@ static inline av_const int MULH(int a, int b)
|
|||
__asm__ ("smull %0, %1, %2, %3" : "=&r"(lo), "=&r"(hi) : "r"(b), "r"(a));
|
||||
return hi;
|
||||
}
|
||||
#endif
|
||||
|
||||
static inline av_const int64_t MUL64(int a, int b)
|
||||
{
|
||||
int64_t x;
|
||||
__asm__ ("smull %Q0, %R0, %1, %2" : "=r"(x) : "r"(a), "r"(b));
|
||||
__asm__ ("smull %Q0, %R0, %1, %2" : "=&r"(x) : "r"(a), "r"(b));
|
||||
return x;
|
||||
}
|
||||
#define MUL64 MUL64
|
||||
#endif
|
||||
|
||||
static inline av_const int64_t MAC64(int64_t d, int a, int b)
|
||||
{
|
||||
|
|
|
@ -66,7 +66,6 @@ typedef struct H264DSPContext{
|
|||
void (*h264_idct_dc_add)(uint8_t *dst/*align 4*/, DCTELEM *block/*align 16*/, int stride);
|
||||
void (*h264_idct8_dc_add)(uint8_t *dst/*align 8*/, DCTELEM *block/*align 16*/, int stride);
|
||||
|
||||
void (*h264_dct)(DCTELEM block[4][4]);
|
||||
void (*h264_idct_add16)(uint8_t *dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]);
|
||||
void (*h264_idct8_add4)(uint8_t *dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]);
|
||||
void (*h264_idct_add8)(uint8_t **dst/*align 16*/, const int *blockoffset, DCTELEM *block/*align 16*/, int stride, const uint8_t nnzc[6*8]);
|
||||
|
|
|
@ -406,8 +406,9 @@ static av_cold int decode_init(AVCodecContext * avctx)
|
|||
k = i & 1;
|
||||
is_table_lsf[j][k ^ 1][i] = FIXR(f);
|
||||
is_table_lsf[j][k][i] = FIXR(1.0);
|
||||
av_dlog(avctx, "is_table_lsf %d %d: %x %x\n",
|
||||
i, j, is_table_lsf[j][0][i], is_table_lsf[j][1][i]);
|
||||
av_dlog(avctx, "is_table_lsf %d %d: %f %f\n",
|
||||
i, j, (float) is_table_lsf[j][0][i],
|
||||
(float) is_table_lsf[j][1][i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -548,13 +548,11 @@ static void compute_bit_allocation(MpegAudioContext *s,
|
|||
}
|
||||
}
|
||||
}
|
||||
#if 0
|
||||
printf("current=%d max=%d max_sb=%d alloc=%d\n",
|
||||
current_frame_size, max_frame_size, max_sb,
|
||||
bit_alloc[max_sb]);
|
||||
#endif
|
||||
if (max_sb < 0)
|
||||
break;
|
||||
av_dlog(NULL, "current=%d max=%d max_sb=%d max_ch=%d alloc=%d\n",
|
||||
current_frame_size, max_frame_size, max_sb, max_ch,
|
||||
bit_alloc[max_ch][max_sb]);
|
||||
|
||||
/* find alloc table entry (XXX: not optimal, should use
|
||||
pointer table) */
|
||||
|
|
|
@ -12,8 +12,9 @@ YASM-OBJS-$(CONFIG_FFT) += x86/fft_mmx.o \
|
|||
MMX-OBJS-$(CONFIG_H264DSP) += x86/h264dsp_mmx.o
|
||||
YASM-OBJS-$(CONFIG_H264DSP) += x86/h264_deblock.o \
|
||||
x86/h264_deblock_10bit.o \
|
||||
x86/h264_weight.o \
|
||||
x86/h264_idct.o \
|
||||
x86/h264_idct_10bit.o \
|
||||
x86/h264_weight.o \
|
||||
|
||||
YASM-OBJS-$(CONFIG_H264PRED) += x86/h264_intrapred.o
|
||||
MMX-OBJS-$(CONFIG_H264PRED) += x86/h264_intrapred_init.o
|
||||
|
|
|
@ -73,7 +73,7 @@ SECTION .text
|
|||
|
||||
INIT_MMX
|
||||
; ff_h264_idct_add_mmx(uint8_t *dst, int16_t *block, int stride)
|
||||
cglobal h264_idct_add_mmx, 3, 3, 0
|
||||
cglobal h264_idct_add_8_mmx, 3, 3, 0
|
||||
IDCT4_ADD r0, r1, r2
|
||||
RET
|
||||
|
||||
|
@ -125,7 +125,7 @@ cglobal h264_idct_add_mmx, 3, 3, 0
|
|||
SUMSUB_BA w, 0, 4
|
||||
SUMSUB_BA w, 3, 2
|
||||
SUMSUB_BA w, 1, 5
|
||||
SWAP 7, 6, 4, 5, 2, 3, 1, 0 ; 70315246 -> 01234567
|
||||
SWAP 7, 6, 4, 5, 2, 3, 1, 0 ; 70315246 -> 01234567
|
||||
%endmacro
|
||||
|
||||
%macro IDCT8_1D_FULL 1
|
||||
|
@ -177,7 +177,7 @@ cglobal h264_idct_add_mmx, 3, 3, 0
|
|||
|
||||
INIT_MMX
|
||||
; ff_h264_idct8_add_mmx(uint8_t *dst, int16_t *block, int stride)
|
||||
cglobal h264_idct8_add_mmx, 3, 4, 0
|
||||
cglobal h264_idct8_add_8_mmx, 3, 4, 0
|
||||
%assign pad 128+4-(stack_offset&7)
|
||||
SUB rsp, pad
|
||||
|
||||
|
@ -237,7 +237,7 @@ cglobal h264_idct8_add_mmx, 3, 4, 0
|
|||
|
||||
INIT_XMM
|
||||
; ff_h264_idct8_add_sse2(uint8_t *dst, int16_t *block, int stride)
|
||||
cglobal h264_idct8_add_sse2, 3, 4, 10
|
||||
cglobal h264_idct8_add_8_sse2, 3, 4, 10
|
||||
IDCT8_ADD_SSE r0, r1, r2, r3
|
||||
RET
|
||||
|
||||
|
@ -261,7 +261,7 @@ cglobal h264_idct8_add_sse2, 3, 4, 10
|
|||
packuswb m1, m1
|
||||
%endmacro
|
||||
|
||||
%macro DC_ADD_MMX2_OP 3-4
|
||||
%macro DC_ADD_MMX2_OP 4
|
||||
%1 m2, [%2 ]
|
||||
%1 m3, [%2+%3 ]
|
||||
%1 m4, [%2+%3*2]
|
||||
|
@ -282,13 +282,13 @@ cglobal h264_idct8_add_sse2, 3, 4, 10
|
|||
|
||||
INIT_MMX
|
||||
; ff_h264_idct_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride)
|
||||
cglobal h264_idct_dc_add_mmx2, 3, 3, 0
|
||||
cglobal h264_idct_dc_add_8_mmx2, 3, 3, 0
|
||||
DC_ADD_MMX2_INIT r1, r2
|
||||
DC_ADD_MMX2_OP movh, r0, r2, r1
|
||||
RET
|
||||
|
||||
; ff_h264_idct8_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride)
|
||||
cglobal h264_idct8_dc_add_mmx2, 3, 3, 0
|
||||
cglobal h264_idct8_dc_add_8_mmx2, 3, 3, 0
|
||||
DC_ADD_MMX2_INIT r1, r2
|
||||
DC_ADD_MMX2_OP mova, r0, r2, r1
|
||||
lea r0, [r0+r2*4]
|
||||
|
@ -297,7 +297,7 @@ cglobal h264_idct8_dc_add_mmx2, 3, 3, 0
|
|||
|
||||
; ff_h264_idct_add16_mmx(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add16_mmx, 5, 7, 0
|
||||
cglobal h264_idct_add16_8_mmx, 5, 7, 0
|
||||
xor r5, r5
|
||||
%ifdef PIC
|
||||
lea r11, [scan8_mem]
|
||||
|
@ -319,7 +319,7 @@ cglobal h264_idct_add16_mmx, 5, 7, 0
|
|||
|
||||
; ff_h264_idct8_add4_mmx(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct8_add4_mmx, 5, 7, 0
|
||||
cglobal h264_idct8_add4_8_mmx, 5, 7, 0
|
||||
%assign pad 128+4-(stack_offset&7)
|
||||
SUB rsp, pad
|
||||
|
||||
|
@ -351,7 +351,7 @@ cglobal h264_idct8_add4_mmx, 5, 7, 0
|
|||
|
||||
; ff_h264_idct_add16_mmx2(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add16_mmx2, 5, 7, 0
|
||||
cglobal h264_idct_add16_8_mmx2, 5, 7, 0
|
||||
xor r5, r5
|
||||
%ifdef PIC
|
||||
lea r11, [scan8_mem]
|
||||
|
@ -398,7 +398,7 @@ cglobal h264_idct_add16_mmx2, 5, 7, 0
|
|||
|
||||
; ff_h264_idct_add16intra_mmx(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add16intra_mmx, 5, 7, 0
|
||||
cglobal h264_idct_add16intra_8_mmx, 5, 7, 0
|
||||
xor r5, r5
|
||||
%ifdef PIC
|
||||
lea r11, [scan8_mem]
|
||||
|
@ -421,7 +421,7 @@ cglobal h264_idct_add16intra_mmx, 5, 7, 0
|
|||
|
||||
; ff_h264_idct_add16intra_mmx2(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add16intra_mmx2, 5, 7, 0
|
||||
cglobal h264_idct_add16intra_8_mmx2, 5, 7, 0
|
||||
xor r5, r5
|
||||
%ifdef PIC
|
||||
lea r11, [scan8_mem]
|
||||
|
@ -466,7 +466,7 @@ cglobal h264_idct_add16intra_mmx2, 5, 7, 0
|
|||
|
||||
; ff_h264_idct8_add4_mmx2(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct8_add4_mmx2, 5, 7, 0
|
||||
cglobal h264_idct8_add4_8_mmx2, 5, 7, 0
|
||||
%assign pad 128+4-(stack_offset&7)
|
||||
SUB rsp, pad
|
||||
|
||||
|
@ -529,7 +529,7 @@ cglobal h264_idct8_add4_mmx2, 5, 7, 0
|
|||
INIT_XMM
|
||||
; ff_h264_idct8_add4_sse2(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct8_add4_sse2, 5, 7, 10
|
||||
cglobal h264_idct8_add4_8_sse2, 5, 7, 10
|
||||
xor r5, r5
|
||||
%ifdef PIC
|
||||
lea r11, [scan8_mem]
|
||||
|
@ -607,7 +607,7 @@ h264_idct_add8_mmx_plane:
|
|||
|
||||
; ff_h264_idct_add8_mmx(uint8_t **dest, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add8_mmx, 5, 7, 0
|
||||
cglobal h264_idct_add8_8_mmx, 5, 7, 0
|
||||
mov r5, 16
|
||||
add r2, 512
|
||||
%ifdef PIC
|
||||
|
@ -668,7 +668,7 @@ h264_idct_add8_mmx2_plane
|
|||
|
||||
; ff_h264_idct_add8_mmx2(uint8_t **dest, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add8_mmx2, 5, 7, 0
|
||||
cglobal h264_idct_add8_8_mmx2, 5, 7, 0
|
||||
mov r5, 16
|
||||
add r2, 512
|
||||
%ifdef ARCH_X86_64
|
||||
|
@ -744,7 +744,7 @@ x264_add8x4_idct_sse2:
|
|||
|
||||
; ff_h264_idct_add16_sse2(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add16_sse2, 5, 5, 8
|
||||
cglobal h264_idct_add16_8_sse2, 5, 5, 8
|
||||
%ifdef ARCH_X86_64
|
||||
mov r10, r0
|
||||
%endif
|
||||
|
@ -791,7 +791,7 @@ cglobal h264_idct_add16_sse2, 5, 5, 8
|
|||
|
||||
; ff_h264_idct_add16intra_sse2(uint8_t *dst, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add16intra_sse2, 5, 7, 8
|
||||
cglobal h264_idct_add16intra_8_sse2, 5, 7, 8
|
||||
%ifdef ARCH_X86_64
|
||||
mov r10, r0
|
||||
%endif
|
||||
|
@ -840,7 +840,7 @@ cglobal h264_idct_add16intra_sse2, 5, 7, 8
|
|||
|
||||
; ff_h264_idct_add8_sse2(uint8_t **dest, const int *block_offset,
|
||||
; DCTELEM *block, int stride, const uint8_t nnzc[6*8])
|
||||
cglobal h264_idct_add8_sse2, 5, 7, 8
|
||||
cglobal h264_idct_add8_8_sse2, 5, 7, 8
|
||||
add r2, 512
|
||||
%ifdef ARCH_X86_64
|
||||
mov r10, r0
|
||||
|
|
|
@ -0,0 +1,570 @@
|
|||
;*****************************************************************************
|
||||
;* MMX/SSE2/AVX-optimized 10-bit H.264 iDCT code
|
||||
;*****************************************************************************
|
||||
;* Copyright (C) 2005-2011 x264 project
|
||||
;*
|
||||
;* Authors: Daniel Kang <daniel.d.kang@gmail.com>
|
||||
;*
|
||||
;* This file is part of Libav.
|
||||
;*
|
||||
;* Libav 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.
|
||||
;*
|
||||
;* Libav 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 Libav; if not, write to the Free Software
|
||||
;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
;******************************************************************************
|
||||
|
||||
%include "x86inc.asm"
|
||||
%include "x86util.asm"
|
||||
|
||||
SECTION_RODATA
|
||||
|
||||
pw_pixel_max: times 8 dw ((1 << 10)-1)
|
||||
pd_32: times 4 dd 32
|
||||
scan8_mem: db 4+1*8, 5+1*8, 4+2*8, 5+2*8
|
||||
db 6+1*8, 7+1*8, 6+2*8, 7+2*8
|
||||
db 4+3*8, 5+3*8, 4+4*8, 5+4*8
|
||||
db 6+3*8, 7+3*8, 6+4*8, 7+4*8
|
||||
db 1+1*8, 2+1*8
|
||||
db 1+2*8, 2+2*8
|
||||
db 1+4*8, 2+4*8
|
||||
db 1+5*8, 2+5*8
|
||||
|
||||
%ifdef PIC
|
||||
%define scan8 r11
|
||||
%else
|
||||
%define scan8 scan8_mem
|
||||
%endif
|
||||
|
||||
SECTION .text
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; void h264_idct_add(pixel *dst, dctcoef *block, int stride)
|
||||
;-----------------------------------------------------------------------------
|
||||
%macro STORE_DIFFx2 6
|
||||
psrad %1, 6
|
||||
psrad %2, 6
|
||||
packssdw %1, %2
|
||||
movq %3, [%5]
|
||||
movhps %3, [%5+%6]
|
||||
paddsw %1, %3
|
||||
CLIPW %1, %4, [pw_pixel_max]
|
||||
movq [%5], %1
|
||||
movhps [%5+%6], %1
|
||||
%endmacro
|
||||
|
||||
%macro STORE_DIFF16 5
|
||||
psrad %1, 6
|
||||
psrad %2, 6
|
||||
packssdw %1, %2
|
||||
paddsw %1, [%5]
|
||||
CLIPW %1, %3, %4
|
||||
mova [%5], %1
|
||||
%endmacro
|
||||
|
||||
;dst, in, stride
|
||||
%macro IDCT4_ADD_10 3
|
||||
mova m0, [%2+ 0]
|
||||
mova m1, [%2+16]
|
||||
mova m2, [%2+32]
|
||||
mova m3, [%2+48]
|
||||
IDCT4_1D d,0,1,2,3,4,5
|
||||
TRANSPOSE4x4D 0,1,2,3,4
|
||||
paddd m0, [pd_32]
|
||||
IDCT4_1D d,0,1,2,3,4,5
|
||||
pxor m5, m5
|
||||
STORE_DIFFx2 m0, m1, m4, m5, %1, %3
|
||||
lea %1, [%1+%3*2]
|
||||
STORE_DIFFx2 m2, m3, m4, m5, %1, %3
|
||||
%endmacro
|
||||
|
||||
%macro IDCT_ADD_10 1
|
||||
cglobal h264_idct_add_10_%1, 3,3
|
||||
IDCT4_ADD_10 r0, r1, r2
|
||||
RET
|
||||
%endmacro
|
||||
|
||||
INIT_XMM
|
||||
IDCT_ADD_10 sse2
|
||||
%ifdef HAVE_AVX
|
||||
INIT_AVX
|
||||
IDCT_ADD_10 avx
|
||||
%endif
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; h264_idct_add16(pixel *dst, const int *block_offset, dctcoef *block, int stride, const uint8_t nnzc[6*8])
|
||||
;-----------------------------------------------------------------------------
|
||||
;;;;;;; NO FATE SAMPLES TRIGGER THIS
|
||||
%macro ADD4x4IDCT 1
|
||||
add4x4_idct_%1:
|
||||
add r5, r0
|
||||
mova m0, [r2+ 0]
|
||||
mova m1, [r2+16]
|
||||
mova m2, [r2+32]
|
||||
mova m3, [r2+48]
|
||||
IDCT4_1D d,0,1,2,3,4,5
|
||||
TRANSPOSE4x4D 0,1,2,3,4
|
||||
paddd m0, [pd_32]
|
||||
IDCT4_1D d,0,1,2,3,4,5
|
||||
pxor m5, m5
|
||||
STORE_DIFFx2 m0, m1, m4, m5, r5, r3
|
||||
lea r5, [r5+r3*2]
|
||||
STORE_DIFFx2 m2, m3, m4, m5, r5, r3
|
||||
ret
|
||||
%endmacro
|
||||
|
||||
INIT_XMM
|
||||
ALIGN 16
|
||||
ADD4x4IDCT sse2
|
||||
%ifdef HAVE_AVX
|
||||
INIT_AVX
|
||||
ALIGN 16
|
||||
ADD4x4IDCT avx
|
||||
%endif
|
||||
|
||||
%macro ADD16_OP 3
|
||||
cmp byte [r4+%3], 0
|
||||
jz .skipblock%2
|
||||
mov r5d, dword [r1+%2*4]
|
||||
call add4x4_idct_%1
|
||||
.skipblock%2:
|
||||
%if %2<15
|
||||
add r2, 64
|
||||
%endif
|
||||
%endmacro
|
||||
|
||||
%macro IDCT_ADD16_10 1
|
||||
cglobal h264_idct_add16_10_%1, 5,6
|
||||
ADD16_OP %1, 0, 4+1*8
|
||||
ADD16_OP %1, 1, 5+1*8
|
||||
ADD16_OP %1, 2, 4+2*8
|
||||
ADD16_OP %1, 3, 5+2*8
|
||||
ADD16_OP %1, 4, 6+1*8
|
||||
ADD16_OP %1, 5, 7+1*8
|
||||
ADD16_OP %1, 6, 6+2*8
|
||||
ADD16_OP %1, 7, 7+2*8
|
||||
ADD16_OP %1, 8, 4+3*8
|
||||
ADD16_OP %1, 9, 5+3*8
|
||||
ADD16_OP %1, 10, 4+4*8
|
||||
ADD16_OP %1, 11, 5+4*8
|
||||
ADD16_OP %1, 12, 6+3*8
|
||||
ADD16_OP %1, 13, 7+3*8
|
||||
ADD16_OP %1, 14, 6+4*8
|
||||
ADD16_OP %1, 15, 7+4*8
|
||||
RET
|
||||
%endmacro
|
||||
|
||||
INIT_XMM
|
||||
IDCT_ADD16_10 sse2
|
||||
%ifdef HAVE_AVX
|
||||
INIT_AVX
|
||||
IDCT_ADD16_10 avx
|
||||
%endif
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; void h264_idct_dc_add(pixel *dst, dctcoef *block, int stride)
|
||||
;-----------------------------------------------------------------------------
|
||||
%macro IDCT_DC_ADD_OP_10 3
|
||||
pxor m5, m5
|
||||
%if avx_enabled
|
||||
paddw m1, m0, [%1+0 ]
|
||||
paddw m2, m0, [%1+%2 ]
|
||||
paddw m3, m0, [%1+%2*2]
|
||||
paddw m4, m0, [%1+%3 ]
|
||||
%else
|
||||
mova m1, [%1+0 ]
|
||||
mova m2, [%1+%2 ]
|
||||
mova m3, [%1+%2*2]
|
||||
mova m4, [%1+%3 ]
|
||||
paddw m1, m0
|
||||
paddw m2, m0
|
||||
paddw m3, m0
|
||||
paddw m4, m0
|
||||
%endif
|
||||
CLIPW m1, m5, m6
|
||||
CLIPW m2, m5, m6
|
||||
CLIPW m3, m5, m6
|
||||
CLIPW m4, m5, m6
|
||||
mova [%1+0 ], m1
|
||||
mova [%1+%2 ], m2
|
||||
mova [%1+%2*2], m3
|
||||
mova [%1+%3 ], m4
|
||||
%endmacro
|
||||
|
||||
INIT_MMX
|
||||
cglobal h264_idct_dc_add_10_mmx2,3,3
|
||||
movd m0, dword [r1]
|
||||
paddd m0, [pd_32]
|
||||
psrad m0, 6
|
||||
lea r1, [r2*3]
|
||||
pshufw m0, m0, 0
|
||||
mova m6, [pw_pixel_max]
|
||||
IDCT_DC_ADD_OP_10 r0, r2, r1
|
||||
RET
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; void h264_idct8_dc_add(pixel *dst, dctcoef *block, int stride)
|
||||
;-----------------------------------------------------------------------------
|
||||
%macro IDCT8_DC_ADD 1
|
||||
cglobal h264_idct8_dc_add_10_%1,3,3,7
|
||||
mov r1d, dword [r1]
|
||||
add r1, 32
|
||||
sar r1, 6
|
||||
movd m0, r1d
|
||||
lea r1, [r2*3]
|
||||
SPLATW m0, m0, 0
|
||||
mova m6, [pw_pixel_max]
|
||||
IDCT_DC_ADD_OP_10 r0, r2, r1
|
||||
lea r0, [r0+r2*4]
|
||||
IDCT_DC_ADD_OP_10 r0, r2, r1
|
||||
RET
|
||||
%endmacro
|
||||
|
||||
INIT_XMM
|
||||
IDCT8_DC_ADD sse2
|
||||
%ifdef HAVE_AVX
|
||||
INIT_AVX
|
||||
IDCT8_DC_ADD avx
|
||||
%endif
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; h264_idct_add16intra(pixel *dst, const int *block_offset, dctcoef *block, int stride, const uint8_t nnzc[6*8])
|
||||
;-----------------------------------------------------------------------------
|
||||
%macro AC 2
|
||||
.ac%2
|
||||
mov r5d, dword [r1+(%2+0)*4]
|
||||
call add4x4_idct_%1
|
||||
mov r5d, dword [r1+(%2+1)*4]
|
||||
add r2, 64
|
||||
call add4x4_idct_%1
|
||||
add r2, 64
|
||||
jmp .skipadd%2
|
||||
%endmacro
|
||||
|
||||
%macro ADD16_OP_INTRA 3
|
||||
cmp word [r4+%3], 0
|
||||
jnz .ac%2
|
||||
mov r6d, dword [r2+ 0]
|
||||
or r6d, dword [r2+64]
|
||||
jz .skipblock%2
|
||||
mov r5d, dword [r1+(%2+0)*4]
|
||||
call idct_dc_add_%1
|
||||
.skipblock%2:
|
||||
%if %2<15
|
||||
add r2, 128
|
||||
%endif
|
||||
.skipadd%2:
|
||||
%endmacro
|
||||
|
||||
%macro IDCT_ADD16INTRA_10 1
|
||||
idct_dc_add_%1:
|
||||
add r5, r0
|
||||
movq m0, [r2+ 0]
|
||||
movhps m0, [r2+64]
|
||||
paddd m0, [pd_32]
|
||||
psrad m0, 6
|
||||
pshufhw m0, m0, 0
|
||||
pshuflw m0, m0, 0
|
||||
lea r6, [r3*3]
|
||||
mova m6, [pw_pixel_max]
|
||||
IDCT_DC_ADD_OP_10 r5, r3, r6
|
||||
ret
|
||||
|
||||
cglobal h264_idct_add16intra_10_%1,5,7,8
|
||||
ADD16_OP_INTRA %1, 0, 4+1*8
|
||||
ADD16_OP_INTRA %1, 2, 4+2*8
|
||||
ADD16_OP_INTRA %1, 4, 6+1*8
|
||||
ADD16_OP_INTRA %1, 6, 6+2*8
|
||||
ADD16_OP_INTRA %1, 8, 4+3*8
|
||||
ADD16_OP_INTRA %1, 10, 4+4*8
|
||||
ADD16_OP_INTRA %1, 12, 6+3*8
|
||||
ADD16_OP_INTRA %1, 14, 6+4*8
|
||||
RET
|
||||
%assign i 14
|
||||
%rep 8
|
||||
AC %1, i
|
||||
%assign i i-2
|
||||
%endrep
|
||||
%endmacro
|
||||
|
||||
INIT_XMM
|
||||
IDCT_ADD16INTRA_10 sse2
|
||||
%ifdef HAVE_AVX
|
||||
INIT_AVX
|
||||
IDCT_ADD16INTRA_10 avx
|
||||
%endif
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; h264_idct_add8(pixel **dst, const int *block_offset, dctcoef *block, int stride, const uint8_t nnzc[6*8])
|
||||
;-----------------------------------------------------------------------------
|
||||
%macro IDCT_ADD8 1
|
||||
cglobal h264_idct_add8_10_%1,5,7
|
||||
mov r5, 16
|
||||
add r2, 1024
|
||||
%ifdef PIC
|
||||
lea r11, [scan8_mem]
|
||||
%endif
|
||||
%ifdef ARCH_X86_64
|
||||
mov r10, r0
|
||||
%endif
|
||||
.nextblock:
|
||||
movzx r6, byte [scan8+r5]
|
||||
movzx r6, byte [r4+r6]
|
||||
or r6d, dword [r2]
|
||||
test r6, r6
|
||||
jz .skipblock
|
||||
%ifdef ARCH_X86_64
|
||||
mov r0d, dword [r1+r5*4]
|
||||
add r0, [r10]
|
||||
%else
|
||||
mov r0, r0m
|
||||
mov r0, [r0]
|
||||
add r0, dword [r1+r5*4]
|
||||
%endif
|
||||
IDCT4_ADD_10 r0, r2, r3
|
||||
.skipblock:
|
||||
inc r5
|
||||
add r2, 64
|
||||
test r5, 3
|
||||
jnz .nextblock
|
||||
%ifdef ARCH_X86_64
|
||||
add r10, gprsize
|
||||
%else
|
||||
add r0mp, gprsize
|
||||
%endif
|
||||
test r5, 4
|
||||
jnz .nextblock
|
||||
REP_RET
|
||||
%endmacro ; IDCT_ADD8
|
||||
|
||||
INIT_XMM
|
||||
IDCT_ADD8 sse2
|
||||
%ifdef HAVE_AVX
|
||||
INIT_AVX
|
||||
IDCT_ADD8 avx
|
||||
%endif
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; void h264_idct8_add(pixel *dst, dctcoef *block, int stride)
|
||||
;-----------------------------------------------------------------------------
|
||||
%macro IDCT8_1D 2
|
||||
SWAP 0, 1
|
||||
psrad m4, m5, 1
|
||||
psrad m1, m0, 1
|
||||
paddd m4, m5
|
||||
paddd m1, m0
|
||||
paddd m4, m7
|
||||
paddd m1, m5
|
||||
psubd m4, m0
|
||||
paddd m1, m3
|
||||
|
||||
psubd m0, m3
|
||||
psubd m5, m3
|
||||
paddd m0, m7
|
||||
psubd m5, m7
|
||||
psrad m3, 1
|
||||
psrad m7, 1
|
||||
psubd m0, m3
|
||||
psubd m5, m7
|
||||
|
||||
SWAP 1, 7
|
||||
psrad m1, m7, 2
|
||||
psrad m3, m4, 2
|
||||
paddd m3, m0
|
||||
psrad m0, 2
|
||||
paddd m1, m5
|
||||
psrad m5, 2
|
||||
psubd m0, m4
|
||||
psubd m7, m5
|
||||
|
||||
SWAP 5, 6
|
||||
psrad m4, m2, 1
|
||||
psrad m6, m5, 1
|
||||
psubd m4, m5
|
||||
paddd m6, m2
|
||||
|
||||
mova m2, %1
|
||||
mova m5, %2
|
||||
SUMSUB_BA d, 5, 2
|
||||
SUMSUB_BA d, 6, 5
|
||||
SUMSUB_BA d, 4, 2
|
||||
SUMSUB_BA d, 7, 6
|
||||
SUMSUB_BA d, 0, 4
|
||||
SUMSUB_BA d, 3, 2
|
||||
SUMSUB_BA d, 1, 5
|
||||
SWAP 7, 6, 4, 5, 2, 3, 1, 0 ; 70315246 -> 01234567
|
||||
%endmacro
|
||||
|
||||
%macro IDCT8_1D_FULL 1
|
||||
mova m7, [%1+112*2]
|
||||
mova m6, [%1+ 96*2]
|
||||
mova m5, [%1+ 80*2]
|
||||
mova m3, [%1+ 48*2]
|
||||
mova m2, [%1+ 32*2]
|
||||
mova m1, [%1+ 16*2]
|
||||
IDCT8_1D [%1], [%1+ 64*2]
|
||||
%endmacro
|
||||
|
||||
; %1=int16_t *block, %2=int16_t *dstblock
|
||||
%macro IDCT8_ADD_SSE_START 2
|
||||
IDCT8_1D_FULL %1
|
||||
%ifdef ARCH_X86_64
|
||||
TRANSPOSE4x4D 0,1,2,3,8
|
||||
mova [%2 ], m0
|
||||
TRANSPOSE4x4D 4,5,6,7,8
|
||||
mova [%2+8*2], m4
|
||||
%else
|
||||
mova [%1], m7
|
||||
TRANSPOSE4x4D 0,1,2,3,7
|
||||
mova m7, [%1]
|
||||
mova [%2 ], m0
|
||||
mova [%2+16*2], m1
|
||||
mova [%2+32*2], m2
|
||||
mova [%2+48*2], m3
|
||||
TRANSPOSE4x4D 4,5,6,7,3
|
||||
mova [%2+ 8*2], m4
|
||||
mova [%2+24*2], m5
|
||||
mova [%2+40*2], m6
|
||||
mova [%2+56*2], m7
|
||||
%endif
|
||||
%endmacro
|
||||
|
||||
; %1=uint8_t *dst, %2=int16_t *block, %3=int stride
|
||||
%macro IDCT8_ADD_SSE_END 3
|
||||
IDCT8_1D_FULL %2
|
||||
mova [%2 ], m6
|
||||
mova [%2+16*2], m7
|
||||
|
||||
pxor m7, m7
|
||||
STORE_DIFFx2 m0, m1, m6, m7, %1, %3
|
||||
lea %1, [%1+%3*2]
|
||||
STORE_DIFFx2 m2, m3, m6, m7, %1, %3
|
||||
mova m0, [%2 ]
|
||||
mova m1, [%2+16*2]
|
||||
lea %1, [%1+%3*2]
|
||||
STORE_DIFFx2 m4, m5, m6, m7, %1, %3
|
||||
lea %1, [%1+%3*2]
|
||||
STORE_DIFFx2 m0, m1, m6, m7, %1, %3
|
||||
%endmacro
|
||||
|
||||
%macro IDCT8_ADD 1
|
||||
cglobal h264_idct8_add_10_%1, 3,4,16
|
||||
%ifndef UNIX64
|
||||
%assign pad 16-gprsize-(stack_offset&15)
|
||||
sub rsp, pad
|
||||
call h264_idct8_add1_10_%1
|
||||
add rsp, pad
|
||||
RET
|
||||
%endif
|
||||
|
||||
ALIGN 16
|
||||
; TODO: does not need to use stack
|
||||
h264_idct8_add1_10_%1:
|
||||
%assign pad 256+16-gprsize
|
||||
sub rsp, pad
|
||||
add dword [r1], 32
|
||||
|
||||
%ifdef ARCH_X86_64
|
||||
IDCT8_ADD_SSE_START r1, rsp
|
||||
SWAP 1, 9
|
||||
SWAP 2, 10
|
||||
SWAP 3, 11
|
||||
SWAP 5, 13
|
||||
SWAP 6, 14
|
||||
SWAP 7, 15
|
||||
IDCT8_ADD_SSE_START r1+16, rsp+128
|
||||
PERMUTE 1,9, 2,10, 3,11, 5,1, 6,2, 7,3, 9,13, 10,14, 11,15, 13,5, 14,6, 15,7
|
||||
IDCT8_1D [rsp], [rsp+128]
|
||||
SWAP 0, 8
|
||||
SWAP 1, 9
|
||||
SWAP 2, 10
|
||||
SWAP 3, 11
|
||||
SWAP 4, 12
|
||||
SWAP 5, 13
|
||||
SWAP 6, 14
|
||||
SWAP 7, 15
|
||||
IDCT8_1D [rsp+16], [rsp+144]
|
||||
psrad m8, 6
|
||||
psrad m0, 6
|
||||
packssdw m8, m0
|
||||
paddsw m8, [r0]
|
||||
pxor m0, m0
|
||||
CLIPW m8, m0, [pw_pixel_max]
|
||||
mova [r0], m8
|
||||
mova m8, [pw_pixel_max]
|
||||
STORE_DIFF16 m9, m1, m0, m8, r0+r2
|
||||
lea r0, [r0+r2*2]
|
||||
STORE_DIFF16 m10, m2, m0, m8, r0
|
||||
STORE_DIFF16 m11, m3, m0, m8, r0+r2
|
||||
lea r0, [r0+r2*2]
|
||||
STORE_DIFF16 m12, m4, m0, m8, r0
|
||||
STORE_DIFF16 m13, m5, m0, m8, r0+r2
|
||||
lea r0, [r0+r2*2]
|
||||
STORE_DIFF16 m14, m6, m0, m8, r0
|
||||
STORE_DIFF16 m15, m7, m0, m8, r0+r2
|
||||
%else
|
||||
IDCT8_ADD_SSE_START r1, rsp
|
||||
IDCT8_ADD_SSE_START r1+16, rsp+128
|
||||
lea r3, [r0+8]
|
||||
IDCT8_ADD_SSE_END r0, rsp, r2
|
||||
IDCT8_ADD_SSE_END r3, rsp+16, r2
|
||||
%endif ; ARCH_X86_64
|
||||
|
||||
add rsp, pad
|
||||
ret
|
||||
%endmacro
|
||||
|
||||
INIT_XMM
|
||||
IDCT8_ADD sse2
|
||||
%ifdef HAVE_AVX
|
||||
INIT_AVX
|
||||
IDCT8_ADD avx
|
||||
%endif
|
||||
|
||||
;-----------------------------------------------------------------------------
|
||||
; h264_idct8_add4(pixel **dst, const int *block_offset, dctcoef *block, int stride, const uint8_t nnzc[6*8])
|
||||
;-----------------------------------------------------------------------------
|
||||
;;;;;;; NO FATE SAMPLES TRIGGER THIS
|
||||
%macro IDCT8_ADD4_OP 3
|
||||
cmp byte [r4+%3], 0
|
||||
jz .skipblock%2
|
||||
mov r0d, dword [r6+%2*4]
|
||||
add r0, r5
|
||||
call h264_idct8_add1_10_%1
|
||||
.skipblock%2:
|
||||
%if %2<12
|
||||
add r1, 256
|
||||
%endif
|
||||
%endmacro
|
||||
|
||||
%macro IDCT8_ADD4 1
|
||||
cglobal h264_idct8_add4_10_%1, 0,7,16
|
||||
%assign pad 16-gprsize-(stack_offset&15)
|
||||
SUB rsp, pad
|
||||
mov r5, r0mp
|
||||
mov r6, r1mp
|
||||
mov r1, r2mp
|
||||
mov r2d, r3m
|
||||
movifnidn r4, r4mp
|
||||
IDCT8_ADD4_OP %1, 0, 4+1*8
|
||||
IDCT8_ADD4_OP %1, 4, 6+1*8
|
||||
IDCT8_ADD4_OP %1, 8, 4+3*8
|
||||
IDCT8_ADD4_OP %1, 12, 6+3*8
|
||||
ADD rsp, pad
|
||||
RET
|
||||
%endmacro ; IDCT8_ADD4
|
||||
|
||||
INIT_XMM
|
||||
IDCT8_ADD4 sse2
|
||||
%ifdef HAVE_AVX
|
||||
INIT_AVX
|
||||
IDCT8_ADD4 avx
|
||||
%endif
|
|
@ -27,38 +27,61 @@ DECLARE_ALIGNED(8, static const uint64_t, ff_pb_3_1 ) = 0x0103010301030103ULL;
|
|||
|
||||
/***********************************/
|
||||
/* IDCT */
|
||||
#define IDCT_ADD_FUNC(NUM, DEPTH, OPT) \
|
||||
void ff_h264_idct ## NUM ## _add_ ## DEPTH ## _ ## OPT (uint8_t *dst, int16_t *block, int stride);
|
||||
|
||||
void ff_h264_idct_add_mmx (uint8_t *dst, int16_t *block, int stride);
|
||||
void ff_h264_idct8_add_mmx (uint8_t *dst, int16_t *block, int stride);
|
||||
void ff_h264_idct8_add_sse2 (uint8_t *dst, int16_t *block, int stride);
|
||||
void ff_h264_idct_dc_add_mmx2 (uint8_t *dst, int16_t *block, int stride);
|
||||
void ff_h264_idct8_dc_add_mmx2(uint8_t *dst, int16_t *block, int stride);
|
||||
IDCT_ADD_FUNC(, 8, mmx)
|
||||
IDCT_ADD_FUNC(, 10, sse2)
|
||||
IDCT_ADD_FUNC(_dc, 8, mmx2)
|
||||
IDCT_ADD_FUNC(_dc, 10, mmx2)
|
||||
IDCT_ADD_FUNC(8_dc, 8, mmx2)
|
||||
IDCT_ADD_FUNC(8_dc, 10, sse2)
|
||||
IDCT_ADD_FUNC(8, 8, mmx)
|
||||
IDCT_ADD_FUNC(8, 8, sse2)
|
||||
IDCT_ADD_FUNC(8, 10, sse2)
|
||||
#if HAVE_AVX
|
||||
IDCT_ADD_FUNC(, 10, avx)
|
||||
IDCT_ADD_FUNC(8_dc, 10, avx)
|
||||
IDCT_ADD_FUNC(8, 10, avx)
|
||||
#endif
|
||||
|
||||
void ff_h264_idct_add16_mmx (uint8_t *dst, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct8_add4_mmx (uint8_t *dst, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct_add16_mmx2 (uint8_t *dst, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct_add16intra_mmx (uint8_t *dst, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct_add16intra_mmx2(uint8_t *dst, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct8_add4_mmx2 (uint8_t *dst, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct8_add4_sse2 (uint8_t *dst, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct_add8_mmx (uint8_t **dest, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct_add8_mmx2 (uint8_t **dest, const int *block_offset,
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
|
||||
void ff_h264_idct_add16_sse2 (uint8_t *dst, const int *block_offset, DCTELEM *block,
|
||||
int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct_add16intra_sse2(uint8_t *dst, const int *block_offset, DCTELEM *block,
|
||||
int stride, const uint8_t nnzc[6*8]);
|
||||
void ff_h264_idct_add8_sse2 (uint8_t **dest, const int *block_offset, DCTELEM *block,
|
||||
int stride, const uint8_t nnzc[6*8]);
|
||||
#define IDCT_ADD_REP_FUNC(NUM, REP, DEPTH, OPT) \
|
||||
void ff_h264_idct ## NUM ## _add ## REP ## _ ## DEPTH ## _ ## OPT \
|
||||
(uint8_t *dst, const int *block_offset, \
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
|
||||
IDCT_ADD_REP_FUNC(8, 4, 8, mmx)
|
||||
IDCT_ADD_REP_FUNC(8, 4, 8, mmx2)
|
||||
IDCT_ADD_REP_FUNC(8, 4, 8, sse2)
|
||||
IDCT_ADD_REP_FUNC(8, 4, 10, sse2)
|
||||
IDCT_ADD_REP_FUNC(8, 4, 10, avx)
|
||||
IDCT_ADD_REP_FUNC(, 16, 8, mmx)
|
||||
IDCT_ADD_REP_FUNC(, 16, 8, mmx2)
|
||||
IDCT_ADD_REP_FUNC(, 16, 8, sse2)
|
||||
IDCT_ADD_REP_FUNC(, 16, 10, sse2)
|
||||
IDCT_ADD_REP_FUNC(, 16intra, 8, mmx)
|
||||
IDCT_ADD_REP_FUNC(, 16intra, 8, mmx2)
|
||||
IDCT_ADD_REP_FUNC(, 16intra, 8, sse2)
|
||||
IDCT_ADD_REP_FUNC(, 16intra, 10, sse2)
|
||||
#if HAVE_AVX
|
||||
IDCT_ADD_REP_FUNC(, 16, 10, avx)
|
||||
IDCT_ADD_REP_FUNC(, 16intra, 10, avx)
|
||||
#endif
|
||||
|
||||
|
||||
#define IDCT_ADD_REP_FUNC2(NUM, REP, DEPTH, OPT) \
|
||||
void ff_h264_idct ## NUM ## _add ## REP ## _ ## DEPTH ## _ ## OPT \
|
||||
(uint8_t **dst, const int *block_offset, \
|
||||
DCTELEM *block, int stride, const uint8_t nnzc[6*8]);
|
||||
IDCT_ADD_REP_FUNC2(, 8, 8, mmx)
|
||||
IDCT_ADD_REP_FUNC2(, 8, 8, mmx2)
|
||||
IDCT_ADD_REP_FUNC2(, 8, 8, sse2)
|
||||
IDCT_ADD_REP_FUNC2(, 8, 10, sse2)
|
||||
#if HAVE_AVX
|
||||
IDCT_ADD_REP_FUNC2(, 8, 10, avx)
|
||||
#endif
|
||||
|
||||
void ff_h264_luma_dc_dequant_idct_mmx (DCTELEM *output, DCTELEM *input, int qmul);
|
||||
void ff_h264_luma_dc_dequant_idct_sse2(DCTELEM *output, DCTELEM *input, int qmul);
|
||||
|
||||
|
@ -313,24 +336,24 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth)
|
|||
}
|
||||
#if HAVE_YASM
|
||||
if (mm_flags & AV_CPU_FLAG_MMX) {
|
||||
c->h264_idct_dc_add=
|
||||
c->h264_idct_add= ff_h264_idct_add_mmx;
|
||||
c->h264_idct8_dc_add=
|
||||
c->h264_idct8_add= ff_h264_idct8_add_mmx;
|
||||
c->h264_idct_dc_add =
|
||||
c->h264_idct_add = ff_h264_idct_add_8_mmx;
|
||||
c->h264_idct8_dc_add =
|
||||
c->h264_idct8_add = ff_h264_idct8_add_8_mmx;
|
||||
|
||||
c->h264_idct_add16 = ff_h264_idct_add16_mmx;
|
||||
c->h264_idct8_add4 = ff_h264_idct8_add4_mmx;
|
||||
c->h264_idct_add8 = ff_h264_idct_add8_mmx;
|
||||
c->h264_idct_add16intra= ff_h264_idct_add16intra_mmx;
|
||||
c->h264_idct_add16 = ff_h264_idct_add16_8_mmx;
|
||||
c->h264_idct8_add4 = ff_h264_idct8_add4_8_mmx;
|
||||
c->h264_idct_add8 = ff_h264_idct_add8_8_mmx;
|
||||
c->h264_idct_add16intra = ff_h264_idct_add16intra_8_mmx;
|
||||
c->h264_luma_dc_dequant_idct= ff_h264_luma_dc_dequant_idct_mmx;
|
||||
|
||||
if (mm_flags & AV_CPU_FLAG_MMX2) {
|
||||
c->h264_idct_dc_add= ff_h264_idct_dc_add_mmx2;
|
||||
c->h264_idct8_dc_add= ff_h264_idct8_dc_add_mmx2;
|
||||
c->h264_idct_add16 = ff_h264_idct_add16_mmx2;
|
||||
c->h264_idct8_add4 = ff_h264_idct8_add4_mmx2;
|
||||
c->h264_idct_add8 = ff_h264_idct_add8_mmx2;
|
||||
c->h264_idct_add16intra= ff_h264_idct_add16intra_mmx2;
|
||||
c->h264_idct_dc_add = ff_h264_idct_dc_add_8_mmx2;
|
||||
c->h264_idct8_dc_add = ff_h264_idct8_dc_add_8_mmx2;
|
||||
c->h264_idct_add16 = ff_h264_idct_add16_8_mmx2;
|
||||
c->h264_idct8_add4 = ff_h264_idct8_add4_8_mmx2;
|
||||
c->h264_idct_add8 = ff_h264_idct_add8_8_mmx2;
|
||||
c->h264_idct_add16intra= ff_h264_idct_add16intra_8_mmx2;
|
||||
|
||||
c->h264_v_loop_filter_chroma= ff_deblock_v_chroma_8_mmxext;
|
||||
c->h264_h_loop_filter_chroma= ff_deblock_h_chroma_8_mmxext;
|
||||
|
@ -361,8 +384,12 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth)
|
|||
c->biweight_h264_pixels_tab[7]= ff_h264_biweight_4x2_mmx2;
|
||||
|
||||
if (mm_flags&AV_CPU_FLAG_SSE2) {
|
||||
c->h264_idct8_add = ff_h264_idct8_add_sse2;
|
||||
c->h264_idct8_add4= ff_h264_idct8_add4_sse2;
|
||||
c->h264_idct8_add = ff_h264_idct8_add_8_sse2;
|
||||
|
||||
c->h264_idct_add16 = ff_h264_idct_add16_8_sse2;
|
||||
c->h264_idct8_add4 = ff_h264_idct8_add4_8_sse2;
|
||||
c->h264_idct_add8 = ff_h264_idct_add8_8_sse2;
|
||||
c->h264_idct_add16intra = ff_h264_idct_add16intra_8_sse2;
|
||||
c->h264_luma_dc_dequant_idct= ff_h264_luma_dc_dequant_idct_sse2;
|
||||
|
||||
c->weight_h264_pixels_tab[0]= ff_h264_weight_16x16_sse2;
|
||||
|
@ -383,10 +410,6 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth)
|
|||
c->h264_v_loop_filter_luma_intra = ff_deblock_v_luma_intra_8_sse2;
|
||||
c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_8_sse2;
|
||||
#endif
|
||||
|
||||
c->h264_idct_add16 = ff_h264_idct_add16_sse2;
|
||||
c->h264_idct_add8 = ff_h264_idct_add8_sse2;
|
||||
c->h264_idct_add16intra = ff_h264_idct_add16intra_sse2;
|
||||
}
|
||||
if (mm_flags&AV_CPU_FLAG_SSSE3) {
|
||||
c->biweight_h264_pixels_tab[0]= ff_h264_biweight_16x16_ssse3;
|
||||
|
@ -418,7 +441,19 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth)
|
|||
c->h264_v_loop_filter_luma_intra = ff_deblock_v_luma_intra_10_mmxext;
|
||||
c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_10_mmxext;
|
||||
#endif
|
||||
c->h264_idct_dc_add= ff_h264_idct_dc_add_10_mmx2;
|
||||
if (mm_flags&AV_CPU_FLAG_SSE2) {
|
||||
c->h264_idct_add = ff_h264_idct_add_10_sse2;
|
||||
c->h264_idct8_dc_add = ff_h264_idct8_dc_add_10_sse2;
|
||||
|
||||
c->h264_idct_add16 = ff_h264_idct_add16_10_sse2;
|
||||
c->h264_idct_add8 = ff_h264_idct_add8_10_sse2;
|
||||
c->h264_idct_add16intra= ff_h264_idct_add16intra_10_sse2;
|
||||
#if HAVE_ALIGNED_STACK
|
||||
c->h264_idct8_add = ff_h264_idct8_add_10_sse2;
|
||||
c->h264_idct8_add4 = ff_h264_idct8_add4_10_sse2;
|
||||
#endif
|
||||
|
||||
c->h264_v_loop_filter_chroma= ff_deblock_v_chroma_10_sse2;
|
||||
c->h264_v_loop_filter_chroma_intra= ff_deblock_v_chroma_intra_10_sse2;
|
||||
#if HAVE_ALIGNED_STACK
|
||||
|
@ -428,7 +463,20 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth)
|
|||
c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_10_sse2;
|
||||
#endif
|
||||
}
|
||||
#if HAVE_AVX
|
||||
if (mm_flags&AV_CPU_FLAG_AVX) {
|
||||
c->h264_idct_dc_add =
|
||||
c->h264_idct_add = ff_h264_idct_add_10_avx;
|
||||
c->h264_idct8_dc_add = ff_h264_idct8_dc_add_10_avx;
|
||||
|
||||
c->h264_idct_add16 = ff_h264_idct_add16_10_avx;
|
||||
c->h264_idct_add8 = ff_h264_idct_add8_10_avx;
|
||||
c->h264_idct_add16intra= ff_h264_idct_add16intra_10_avx;
|
||||
#if HAVE_ALIGNED_STACK
|
||||
c->h264_idct8_add = ff_h264_idct8_add_10_avx;
|
||||
c->h264_idct8_add4 = ff_h264_idct8_add4_10_avx;
|
||||
#endif
|
||||
|
||||
c->h264_v_loop_filter_chroma= ff_deblock_v_chroma_10_avx;
|
||||
c->h264_v_loop_filter_chroma_intra= ff_deblock_v_chroma_intra_10_avx;
|
||||
#if HAVE_ALIGNED_STACK
|
||||
|
@ -438,6 +486,7 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth)
|
|||
c->h264_h_loop_filter_luma_intra = ff_deblock_h_luma_intra_10_avx;
|
||||
#endif
|
||||
}
|
||||
#endif /* HAVE_AVX */
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -153,7 +153,7 @@ static int movie_init(AVFilterContext *ctx)
|
|||
movie->w = movie->codec_ctx->width;
|
||||
movie->h = movie->codec_ctx->height;
|
||||
|
||||
av_log(ctx, AV_LOG_INFO, "seek_point:%lld format_name:%s file_name:%s stream_index:%d\n",
|
||||
av_log(ctx, AV_LOG_INFO, "seek_point:%"PRIi64" format_name:%s file_name:%s stream_index:%d\n",
|
||||
movie->seek_point, movie->format_name, movie->file_name,
|
||||
movie->stream_index);
|
||||
|
||||
|
|
|
@ -101,14 +101,14 @@ static void ape_dumpinfo(AVFormatContext * s, APEContext * ape_ctx)
|
|||
|
||||
av_log(s, AV_LOG_DEBUG, "Descriptor Block:\n\n");
|
||||
av_log(s, AV_LOG_DEBUG, "magic = \"%c%c%c%c\"\n", ape_ctx->magic[0], ape_ctx->magic[1], ape_ctx->magic[2], ape_ctx->magic[3]);
|
||||
av_log(s, AV_LOG_DEBUG, "fileversion = %d\n", ape_ctx->fileversion);
|
||||
av_log(s, AV_LOG_DEBUG, "descriptorlength = %d\n", ape_ctx->descriptorlength);
|
||||
av_log(s, AV_LOG_DEBUG, "headerlength = %d\n", ape_ctx->headerlength);
|
||||
av_log(s, AV_LOG_DEBUG, "seektablelength = %d\n", ape_ctx->seektablelength);
|
||||
av_log(s, AV_LOG_DEBUG, "wavheaderlength = %d\n", ape_ctx->wavheaderlength);
|
||||
av_log(s, AV_LOG_DEBUG, "audiodatalength = %d\n", ape_ctx->audiodatalength);
|
||||
av_log(s, AV_LOG_DEBUG, "audiodatalength_high = %d\n", ape_ctx->audiodatalength_high);
|
||||
av_log(s, AV_LOG_DEBUG, "wavtaillength = %d\n", ape_ctx->wavtaillength);
|
||||
av_log(s, AV_LOG_DEBUG, "fileversion = %"PRId16"\n", ape_ctx->fileversion);
|
||||
av_log(s, AV_LOG_DEBUG, "descriptorlength = %"PRIu32"\n", ape_ctx->descriptorlength);
|
||||
av_log(s, AV_LOG_DEBUG, "headerlength = %"PRIu32"\n", ape_ctx->headerlength);
|
||||
av_log(s, AV_LOG_DEBUG, "seektablelength = %"PRIu32"\n", ape_ctx->seektablelength);
|
||||
av_log(s, AV_LOG_DEBUG, "wavheaderlength = %"PRIu32"\n", ape_ctx->wavheaderlength);
|
||||
av_log(s, AV_LOG_DEBUG, "audiodatalength = %"PRIu32"\n", ape_ctx->audiodatalength);
|
||||
av_log(s, AV_LOG_DEBUG, "audiodatalength_high = %"PRIu32"\n", ape_ctx->audiodatalength_high);
|
||||
av_log(s, AV_LOG_DEBUG, "wavtaillength = %"PRIu32"\n", ape_ctx->wavtaillength);
|
||||
av_log(s, AV_LOG_DEBUG, "md5 = ");
|
||||
for (i = 0; i < 16; i++)
|
||||
av_log(s, AV_LOG_DEBUG, "%02x", ape_ctx->md5[i]);
|
||||
|
@ -116,14 +116,14 @@ static void ape_dumpinfo(AVFormatContext * s, APEContext * ape_ctx)
|
|||
|
||||
av_log(s, AV_LOG_DEBUG, "\nHeader Block:\n\n");
|
||||
|
||||
av_log(s, AV_LOG_DEBUG, "compressiontype = %d\n", ape_ctx->compressiontype);
|
||||
av_log(s, AV_LOG_DEBUG, "formatflags = %d\n", ape_ctx->formatflags);
|
||||
av_log(s, AV_LOG_DEBUG, "blocksperframe = %d\n", ape_ctx->blocksperframe);
|
||||
av_log(s, AV_LOG_DEBUG, "finalframeblocks = %d\n", ape_ctx->finalframeblocks);
|
||||
av_log(s, AV_LOG_DEBUG, "totalframes = %d\n", ape_ctx->totalframes);
|
||||
av_log(s, AV_LOG_DEBUG, "bps = %d\n", ape_ctx->bps);
|
||||
av_log(s, AV_LOG_DEBUG, "channels = %d\n", ape_ctx->channels);
|
||||
av_log(s, AV_LOG_DEBUG, "samplerate = %d\n", ape_ctx->samplerate);
|
||||
av_log(s, AV_LOG_DEBUG, "compressiontype = %"PRIu16"\n", ape_ctx->compressiontype);
|
||||
av_log(s, AV_LOG_DEBUG, "formatflags = %"PRIu16"\n", ape_ctx->formatflags);
|
||||
av_log(s, AV_LOG_DEBUG, "blocksperframe = %"PRIu32"\n", ape_ctx->blocksperframe);
|
||||
av_log(s, AV_LOG_DEBUG, "finalframeblocks = %"PRIu32"\n", ape_ctx->finalframeblocks);
|
||||
av_log(s, AV_LOG_DEBUG, "totalframes = %"PRIu32"\n", ape_ctx->totalframes);
|
||||
av_log(s, AV_LOG_DEBUG, "bps = %"PRIu16"\n", ape_ctx->bps);
|
||||
av_log(s, AV_LOG_DEBUG, "channels = %"PRIu16"\n", ape_ctx->channels);
|
||||
av_log(s, AV_LOG_DEBUG, "samplerate = %"PRIu32"\n", ape_ctx->samplerate);
|
||||
|
||||
av_log(s, AV_LOG_DEBUG, "\nSeektable\n\n");
|
||||
if ((ape_ctx->seektablelength / sizeof(uint32_t)) != ape_ctx->totalframes) {
|
||||
|
@ -140,12 +140,14 @@ static void ape_dumpinfo(AVFormatContext * s, APEContext * ape_ctx)
|
|||
|
||||
av_log(s, AV_LOG_DEBUG, "\nFrames\n\n");
|
||||
for (i = 0; i < ape_ctx->totalframes; i++)
|
||||
av_log(s, AV_LOG_DEBUG, "%8d %8lld %8d (%d samples)\n", i, ape_ctx->frames[i].pos, ape_ctx->frames[i].size, ape_ctx->frames[i].nblocks);
|
||||
av_log(s, AV_LOG_DEBUG, "%8d %8"PRId64" %8d (%d samples)\n", i,
|
||||
ape_ctx->frames[i].pos, ape_ctx->frames[i].size,
|
||||
ape_ctx->frames[i].nblocks);
|
||||
|
||||
av_log(s, AV_LOG_DEBUG, "\nCalculated information:\n\n");
|
||||
av_log(s, AV_LOG_DEBUG, "junklength = %d\n", ape_ctx->junklength);
|
||||
av_log(s, AV_LOG_DEBUG, "firstframe = %d\n", ape_ctx->firstframe);
|
||||
av_log(s, AV_LOG_DEBUG, "totalsamples = %d\n", ape_ctx->totalsamples);
|
||||
av_log(s, AV_LOG_DEBUG, "junklength = %"PRIu32"\n", ape_ctx->junklength);
|
||||
av_log(s, AV_LOG_DEBUG, "firstframe = %"PRIu32"\n", ape_ctx->firstframe);
|
||||
av_log(s, AV_LOG_DEBUG, "totalsamples = %"PRIu32"\n", ape_ctx->totalsamples);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -169,7 +171,8 @@ static int ape_read_header(AVFormatContext * s, AVFormatParameters * ap)
|
|||
ape->fileversion = avio_rl16(pb);
|
||||
|
||||
if (ape->fileversion < APE_MIN_VERSION || ape->fileversion > APE_MAX_VERSION) {
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported file version - %d.%02d\n", ape->fileversion / 1000, (ape->fileversion % 1000) / 10);
|
||||
av_log(s, AV_LOG_ERROR, "Unsupported file version - %"PRId16".%02"PRId16"\n",
|
||||
ape->fileversion / 1000, (ape->fileversion % 1000) / 10);
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -247,11 +250,12 @@ static int ape_read_header(AVFormatContext * s, AVFormatParameters * ap)
|
|||
return AVERROR(EINVAL);
|
||||
}
|
||||
if(ape->totalframes > UINT_MAX / sizeof(APEFrame)){
|
||||
av_log(s, AV_LOG_ERROR, "Too many frames: %d\n", ape->totalframes);
|
||||
av_log(s, AV_LOG_ERROR, "Too many frames: %"PRIu32"\n",
|
||||
ape->totalframes);
|
||||
return -1;
|
||||
}
|
||||
if (ape->seektablelength && (ape->seektablelength / sizeof(*ape->seektable)) < ape->totalframes) {
|
||||
av_log(s, AV_LOG_ERROR, "Number of seek entries is less than number of frames: %zd vs. %d\n",
|
||||
av_log(s, AV_LOG_ERROR, "Number of seek entries is less than number of frames: %ld vs. %"PRIu32"\n",
|
||||
ape->seektablelength / sizeof(*ape->seektable), ape->totalframes);
|
||||
return AVERROR_INVALIDDATA;
|
||||
}
|
||||
|
@ -301,7 +305,9 @@ static int ape_read_header(AVFormatContext * s, AVFormatParameters * ap)
|
|||
avio_seek(pb, 0, SEEK_SET);
|
||||
}
|
||||
|
||||
av_log(s, AV_LOG_DEBUG, "Decoding file - v%d.%02d, compression level %d\n", ape->fileversion / 1000, (ape->fileversion % 1000) / 10, ape->compressiontype);
|
||||
av_log(s, AV_LOG_DEBUG, "Decoding file - v%d.%02d, compression level %"PRIu16"\n",
|
||||
ape->fileversion / 1000, (ape->fileversion % 1000) / 10,
|
||||
ape->compressiontype);
|
||||
|
||||
/* now we are ready: build format streams */
|
||||
st = av_new_stream(s, 0);
|
||||
|
|
|
@ -522,8 +522,8 @@ static int mxf_read_index_table_segment(void *arg, AVIOContext *pb, int tag, int
|
|||
case 0x3F06: av_dlog(NULL, "IndexSID %d\n", avio_rb32(pb)); break;
|
||||
case 0x3F07: av_dlog(NULL, "BodySID %d\n", avio_rb32(pb)); break;
|
||||
case 0x3F0B: av_dlog(NULL, "IndexEditRate %d/%d\n", avio_rb32(pb), avio_rb32(pb)); break;
|
||||
case 0x3F0C: av_dlog(NULL, "IndexStartPosition %"PRId64"\n", avio_rb64(pb)); break;
|
||||
case 0x3F0D: av_dlog(NULL, "IndexDuration %"PRId64"\n", avio_rb64(pb)); break;
|
||||
case 0x3F0C: av_dlog(NULL, "IndexStartPosition %"PRIu64"\n", avio_rb64(pb)); break;
|
||||
case 0x3F0D: av_dlog(NULL, "IndexDuration %"PRIu64"\n", avio_rb64(pb)); break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
@ -920,7 +920,7 @@ static int mxf_read_header(AVFormatContext *s, AVFormatParameters *ap)
|
|||
if (klv_read_packet(&klv, s->pb) < 0)
|
||||
return -1;
|
||||
PRINT_KEY(s, "read header", klv.key);
|
||||
av_dlog(s, "size %"PRId64" offset %#"PRIx64"\n", klv.length, klv.offset);
|
||||
av_dlog(s, "size %"PRIu64" offset %#"PRIx64"\n", klv.length, klv.offset);
|
||||
if (IS_KLV_KEY(klv.key, mxf_encrypted_triplet_key) ||
|
||||
IS_KLV_KEY(klv.key, mxf_essence_element_key)) {
|
||||
/* FIXME avoid seek */
|
||||
|
|
|
@ -43,7 +43,7 @@ static int read_atom(AVFormatContext *s, Atom *atom)
|
|||
if (atom->size < 8)
|
||||
return -1;
|
||||
atom->tag = avio_rl32(s->pb);
|
||||
av_dlog(s, "atom %d %.4s offset %#"PRIx64"\n",
|
||||
av_dlog(s, "atom %u %.4s offset %#"PRIx64"\n",
|
||||
atom->size, (char*)&atom->tag, atom->offset);
|
||||
return atom->size;
|
||||
}
|
||||
|
@ -356,7 +356,8 @@ static int r3d_seek(AVFormatContext *s, int stream_index, int64_t sample_time, i
|
|||
|
||||
frame_num = sample_time*st->codec->time_base.den/
|
||||
((int64_t)st->codec->time_base.num*st->time_base.den);
|
||||
av_dlog(s, "seek frame num %d timestamp %"PRId64"\n", frame_num, sample_time);
|
||||
av_dlog(s, "seek frame num %d timestamp %"PRId64"\n",
|
||||
frame_num, sample_time);
|
||||
|
||||
if (frame_num < r3d->video_offsets_count) {
|
||||
avio_seek(s->pb, r3d->video_offsets_count, SEEK_SET);
|
||||
|
|
Loading…
Reference in New Issue