motion-test: do not use getopt()
It is not available on all systems and using argc/argv directly actually makes the code simpler. Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
		
							parent
							
								
									5427df0186
								
							
						
					
					
						commit
						82f82ccfc8
					
				@ -119,16 +119,10 @@ int main(int argc, char **argv)
 | 
			
		||||
    int flags[2] = { AV_CPU_FLAG_MMX, AV_CPU_FLAG_MMX2 };
 | 
			
		||||
    int flags_size = HAVE_MMX2 ? 2 : 1;
 | 
			
		||||
 | 
			
		||||
    for(;;) {
 | 
			
		||||
        c = getopt(argc, argv, "h");
 | 
			
		||||
        if (c == -1)
 | 
			
		||||
            break;
 | 
			
		||||
        switch(c) {
 | 
			
		||||
        case 'h':
 | 
			
		||||
    if (argc > 1) {
 | 
			
		||||
        help();
 | 
			
		||||
        return 1;
 | 
			
		||||
    }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    printf("Libav motion test\n");
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user