mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 20:42:49 +08:00 
			
		
		
		
	 721be99371
			
		
	
	721be99371
	
	
	
		
			
			* qatar/master: cosmetics: fix some then/than typos doxygen: Include libavcodec and libavformat examples into the documentation avutil: elaborate documentation for av_get_random_seed Add support for aac streams in mp4/mov without extradata. aes: whitespace cosmetics adler32: whitespace cosmetics swscale: fix another yuv range conversion overflow in 16bit scaling. Fix cpu flags test program opt-test: Add missing braces to silence compiler warnings. build: Eliminate obsolete test targets. udp: Fix a compilation warning swscale: Unbreak build with --enable-small base64: add fate test aes: improve test program and add fate test adler32: make test program more useful and add fate test swscale: fix yuv range correction when using 16-bit scaling. aacenc: Make chan_map const correct Conflicts: Makefile doc/examples/muxing-example.c libavformat/udp.c libavutil/random_seed.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * 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 "cpu.h"
 | |
| #include "config.h"
 | |
| 
 | |
| static int flags, checked;
 | |
| 
 | |
| void av_force_cpu_flags(int arg){
 | |
|     flags   = arg;
 | |
|     checked = 1;
 | |
| }
 | |
| 
 | |
| int av_get_cpu_flags(void)
 | |
| {
 | |
|     if (checked)
 | |
|         return flags;
 | |
| 
 | |
|     if (ARCH_ARM) flags = ff_get_cpu_flags_arm();
 | |
|     if (ARCH_PPC) flags = ff_get_cpu_flags_ppc();
 | |
|     if (ARCH_X86) flags = ff_get_cpu_flags_x86();
 | |
| 
 | |
|     checked = 1;
 | |
|     return flags;
 | |
| }
 | |
| 
 | |
| #ifdef TEST
 | |
| 
 | |
| #undef printf
 | |
| #include <stdio.h>
 | |
| 
 | |
| static const struct {
 | |
|     int flag;
 | |
|     const char *name;
 | |
| } cpu_flag_tab[] = {
 | |
| #if   ARCH_ARM
 | |
|     { AV_CPU_FLAG_IWMMXT,    "iwmmxt"     },
 | |
| #elif ARCH_PPC
 | |
|     { AV_CPU_FLAG_ALTIVEC,   "altivec"    },
 | |
| #elif ARCH_X86
 | |
|     { AV_CPU_FLAG_MMX,       "mmx"        },
 | |
|     { AV_CPU_FLAG_MMX2,      "mmx2"       },
 | |
|     { AV_CPU_FLAG_SSE,       "sse"        },
 | |
|     { AV_CPU_FLAG_SSE2,      "sse2"       },
 | |
|     { AV_CPU_FLAG_SSE2SLOW,  "sse2(slow)" },
 | |
|     { AV_CPU_FLAG_SSE3,      "sse3"       },
 | |
|     { AV_CPU_FLAG_SSE3SLOW,  "sse3(slow)" },
 | |
|     { AV_CPU_FLAG_SSSE3,     "ssse3"      },
 | |
|     { AV_CPU_FLAG_ATOM,      "atom"       },
 | |
|     { AV_CPU_FLAG_SSE4,      "sse4.1"     },
 | |
|     { AV_CPU_FLAG_SSE42,     "sse4.2"     },
 | |
|     { AV_CPU_FLAG_AVX,       "avx"        },
 | |
|     { AV_CPU_FLAG_3DNOW,     "3dnow"      },
 | |
|     { AV_CPU_FLAG_3DNOWEXT,  "3dnowext"   },
 | |
| #endif
 | |
|     { 0 }
 | |
| };
 | |
| 
 | |
| int main(void)
 | |
| {
 | |
|     int cpu_flags = av_get_cpu_flags();
 | |
|     int i;
 | |
| 
 | |
|     printf("cpu_flags = 0x%08X\n", cpu_flags);
 | |
|     printf("cpu_flags =");
 | |
|     for (i = 0; cpu_flag_tab[i].flag; i++)
 | |
|         if (cpu_flags & cpu_flag_tab[i].flag)
 | |
|             printf(" %s", cpu_flag_tab[i].name);
 | |
|     printf("\n");
 | |
| 
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| #endif
 |