mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
a little script to turn the inside of a struct into a AVOption array
Originally committed as revision 4564 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
860a40c8a7
commit
5e61b9ecef
10
build_avopt
Executable file
10
build_avopt
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
sed 's/unsigned//g' |\
|
||||
sed 's/enum//g' |\
|
||||
egrep '^ *(int|float|double|AVRational|char *\*) *[a-zA-Z_0-9]* *;' |\
|
||||
sed 's/^ *\([^ ]*\)[ *]*\([^;]*\);.*$/{"\2", NULL, OFFSET(\2), FF_OPT_TYPE_\U\1, DEFAULT, \1_MIN, \1_MAX},/' |\
|
||||
sed 's/AVRATIONAL_M/INT_M/g'|\
|
||||
sed 's/TYPE_AVRATIONAL/TYPE_RATIONAL/g'|\
|
||||
sed 's/FLOAT_M/FLT_M/g'|\
|
||||
sed 's/FF_OPT_TYPE_CHAR/FF_OPT_TYPE_STRING/g'
|
||||
|
Loading…
Reference in New Issue
Block a user