mirror of
				https://git.ffmpeg.org/ffmpeg.git
				synced 2025-10-31 07:40:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
|     { "L", OPT_EXIT, {(void*)show_license}, "show license" },
 | |
|     { "h", OPT_EXIT, {(void*)show_help}, "show help" },
 | |
|     { "?", OPT_EXIT, {(void*)show_help}, "show help" },
 | |
|     { "help", OPT_EXIT, {(void*)show_help}, "show help" },
 | |
|     { "-help", OPT_EXIT, {(void*)show_help}, "show help" },
 | |
|     { "version", OPT_EXIT, {(void*)show_version}, "show version" },
 | |
|     { "formats"  , OPT_EXIT, {(void*)show_formats  }, "show available formats" },
 | |
|     { "codecs"   , OPT_EXIT, {(void*)show_codecs   }, "show available codecs" },
 | |
|     { "bsfs"     , OPT_EXIT, {(void*)show_bsfs     }, "show available bit stream filters" },
 | |
|     { "protocols", OPT_EXIT, {(void*)show_protocols}, "show available protocols" },
 | |
|     { "filters",   OPT_EXIT, {(void*)show_filters  }, "show available filters" },
 | |
|     { "pix_fmts" , OPT_EXIT, {(void*)show_pix_fmts }, "show available pixel formats" },
 | |
|     { "sample_fmts", OPT_EXIT, {.func_arg = show_sample_fmts }, "show available audio sample formats" },
 | |
|     { "loglevel", HAS_ARG, {(void*)opt_loglevel}, "set libav* logging level", "loglevel" },
 | |
|     { "v", HAS_ARG, {(void*)opt_loglevel}, "set libav* logging level", "loglevel" },
 | 
