| 
									
										
										
										
											2011-04-27 18:34:10 +02:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:00:36 +08:00
										 |  |  |  * x86 PNG optimizations. | 
					
						
							|  |  |  |  * Copyright (c) 2008 Loren Merrit <lorenm@u.washington.edu> | 
					
						
							| 
									
										
										
										
											2011-04-27 18:34:10 +02:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:21:55 +08:00
										 |  |  | #include "libavutil/common.h"
 | 
					
						
							| 
									
										
										
										
											2011-04-27 18:34:10 +02:00
										 |  |  | #include "libavutil/cpu.h"
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:00:36 +08:00
										 |  |  | #include "libavcodec/pngdsp.h"
 | 
					
						
							| 
									
										
										
										
											2011-04-27 18:34:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:21:55 +08:00
										 |  |  | void ff_add_png_paeth_prediction_mmx2 (uint8_t *dst, uint8_t *src, | 
					
						
							|  |  |  |                                        uint8_t *top, int w, int bpp); | 
					
						
							|  |  |  | void ff_add_png_paeth_prediction_ssse3(uint8_t *dst, uint8_t *src, | 
					
						
							|  |  |  |                                        uint8_t *top, int w, int bpp); | 
					
						
							|  |  |  | void ff_add_bytes_l2_mmx (uint8_t *dst, uint8_t *src1, | 
					
						
							|  |  |  |                           uint8_t *src2, int w); | 
					
						
							| 
									
										
										
										
											2012-01-27 23:23:05 +08:00
										 |  |  | void ff_add_bytes_l2_sse2(uint8_t *dst, uint8_t *src1, | 
					
						
							|  |  |  |                           uint8_t *src2, int w); | 
					
						
							| 
									
										
										
										
											2011-04-27 18:34:10 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:00:36 +08:00
										 |  |  | void ff_pngdsp_init_x86(PNGDSPContext *dsp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-01-27 23:21:55 +08:00
										 |  |  | #if HAVE_YASM
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:00:36 +08:00
										 |  |  |     int flags = av_get_cpu_flags(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:23:05 +08:00
										 |  |  | #if ARCH_X86_32
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:00:36 +08:00
										 |  |  |     if (flags & AV_CPU_FLAG_MMX) | 
					
						
							| 
									
										
										
										
											2012-01-27 23:21:55 +08:00
										 |  |  |         dsp->add_bytes_l2         = ff_add_bytes_l2_mmx; | 
					
						
							| 
									
										
										
										
											2012-01-27 23:23:05 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2012-01-27 23:00:36 +08:00
										 |  |  |     if (flags & AV_CPU_FLAG_MMX2) | 
					
						
							| 
									
										
										
										
											2012-01-27 23:21:55 +08:00
										 |  |  |         dsp->add_paeth_prediction = ff_add_png_paeth_prediction_mmx2; | 
					
						
							| 
									
										
										
										
											2012-01-27 23:23:05 +08:00
										 |  |  |     if (flags & AV_CPU_FLAG_SSE2) | 
					
						
							|  |  |  |         dsp->add_bytes_l2         = ff_add_bytes_l2_sse2; | 
					
						
							| 
									
										
										
										
											2012-01-27 23:21:55 +08:00
										 |  |  |     if (flags & AV_CPU_FLAG_SSSE3) | 
					
						
							|  |  |  |         dsp->add_paeth_prediction = ff_add_png_paeth_prediction_ssse3; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-04-27 18:34:10 +02:00
										 |  |  | } |