mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 04:26:37 +08:00 
			
		
		
		
	 cee98aadb1
			
		
	
	cee98aadb1
	
	
	
		
			
			Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			14 lines
		
	
	
		
			183 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			183 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| SRC_PATH="${1}"
 | |
| DOXYFILE="${2}"
 | |
| DOXYGEN="${3}"
 | |
| 
 | |
| shift 3
 | |
| 
 | |
| $DOXYGEN - <<EOF
 | |
| @INCLUDE        = ${DOXYFILE}
 | |
| INPUT           = $@
 | |
| EXAMPLE_PATH    = ${SRC_PATH}/doc/examples
 | |
| EOF
 |