You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-25 14:23:15 +02:00
12 lines
124 B
Bash
12 lines
124 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
SRC_PATH="${1}"
|
||
|
DOXYFILE="${2}"
|
||
|
|
||
|
shift 2
|
||
|
|
||
|
doxygen - <<EOF
|
||
|
@INCLUDE = ${DOXYFILE}
|
||
|
INPUT = $@
|
||
|
EOF
|