mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 04:26:37 +08:00 
			
		
		
		
	 4095fa9038
			
		
	
	4095fa9038
	
	
	
		
			
			* qatar/master: dnxhddec: optimise dnxhd_decode_dct_block() rtp: remove disabled code eac3enc: use different numbers of blocks per frame to allow higher bitrates dnxhd: add regression test for 10-bit dnxhd: 10-bit support dsputil: update per-arch init funcs for non-h264 high bit depth dsputil: template get_pixels() for different bit depths dsputil: create 16/32-bit dctcoef versions of some functions jfdctint: add 10-bit version mov: add clcp type track as Subtitle stream. mpeg4: add Mpeg4 Profiles names. mpeg4: decode Level Profile for MPEG4 Part 2. ffprobe: display bitstream level. imgconvert: remove unused glue and xglue macros Conflicts: libavcodec/dsputil_template.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			60 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * VC3/DNxHD SIMD functions
 | |
|  * Copyright (c) 2007 Baptiste Coudurier <baptiste dot coudurier at smartjog dot com>
 | |
|  *
 | |
|  * VC-3 encoder funded by the British Broadcasting Corporation
 | |
|  *
 | |
|  * 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 "libavutil/x86_cpu.h"
 | |
| #include "libavcodec/dnxhdenc.h"
 | |
| 
 | |
| static void get_pixels_8x4_sym_sse2(DCTELEM *block, const uint8_t *pixels, int line_size)
 | |
| {
 | |
|     __asm__ volatile(
 | |
|         "pxor %%xmm5,      %%xmm5       \n\t"
 | |
|         "movq (%0),        %%xmm0       \n\t"
 | |
|         "add  %2,          %0           \n\t"
 | |
|         "movq (%0),        %%xmm1       \n\t"
 | |
|         "movq (%0, %2),    %%xmm2       \n\t"
 | |
|         "movq (%0, %2,2),  %%xmm3       \n\t"
 | |
|         "punpcklbw %%xmm5, %%xmm0       \n\t"
 | |
|         "punpcklbw %%xmm5, %%xmm1       \n\t"
 | |
|         "punpcklbw %%xmm5, %%xmm2       \n\t"
 | |
|         "punpcklbw %%xmm5, %%xmm3       \n\t"
 | |
|         "movdqa %%xmm0,      (%1)       \n\t"
 | |
|         "movdqa %%xmm1,    16(%1)       \n\t"
 | |
|         "movdqa %%xmm2,    32(%1)       \n\t"
 | |
|         "movdqa %%xmm3,    48(%1)       \n\t"
 | |
|         "movdqa %%xmm3 ,   64(%1)       \n\t"
 | |
|         "movdqa %%xmm2 ,   80(%1)       \n\t"
 | |
|         "movdqa %%xmm1 ,   96(%1)       \n\t"
 | |
|         "movdqa %%xmm0,   112(%1)       \n\t"
 | |
|         : "+r" (pixels)
 | |
|         : "r" (block), "r" ((x86_reg)line_size)
 | |
|     );
 | |
| }
 | |
| 
 | |
| void ff_dnxhd_init_mmx(DNXHDEncContext *ctx)
 | |
| {
 | |
|     if (av_get_cpu_flags() & AV_CPU_FLAG_SSE2) {
 | |
|         if (ctx->cid_table->bit_depth == 8)
 | |
|             ctx->get_pixels_8x4_sym = get_pixels_8x4_sym_sse2;
 | |
|     }
 | |
| }
 |