Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
eb7505e4
Commit
eb7505e4
authored
Jun 04, 2011
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove some unused scripts from tools/.
parent
a8d44f9d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
43 deletions
+0
-43
build_avopt
tools/build_avopt
+0
-9
clean-diff
tools/clean-diff
+0
-11
jauche_sortierer.sh
tools/jauche_sortierer.sh
+0
-21
unwrap-diff
tools/unwrap-diff
+0
-2
No files found.
tools/build_avopt
deleted
100755 → 0
View file @
a8d44f9d
#!/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'
tools/clean-diff
deleted
100755 → 0
View file @
a8d44f9d
#!/bin/sh
sed
'/^+[^+]/!s/ /TaBBaT/g'
|
\
expand
-t
$(
seq
-s
, 9 8 200
)
|
\
sed
's/TaBBaT/ /g'
|
\
sed
'/^+[^+]/s/ * $//'
|
\
tr
-d
'\015'
|
\
tr
'\n'
''
|
\
sed
's/\(@@[^@]*@@[^@]*\)/\n\1/g'
|
\
egrep
-v
'@@[^@]*@@(( [^]*)|([+-][[:space:]]*)|(-[[:space:]]*([^]*)\+[[:space:]]*\5))*$'
|
\
tr
-d
'\n'
|
\
tr
''
'\n'
tools/jauche_sortierer.sh
deleted
100755 → 0
View file @
a8d44f9d
#!/bin/sh
#GPL
#TODO
#add pixelformat/sampleformat into the path of the codecs
FFP
=
../ffprobe
TMP
=
$(
mktemp
)
||
exit
1
TARGET
=
$1
shift
for
v
do
BASE
=
$(
basename
$v
)
echo
$v
| egrep
-i
'(public|private)'
>
/dev/null
&&
echo
Warning
$v
may be private
$FFP
$v
2>
$TMP
FORM
=
$((
grep
'Input #0, '
-
m1
$TMP
||
echo
'Input #0, unknown'
)
|
sed
's/Input #0, \([a-zA-Z0-9_]*\).*/\1/'
)
mkdir
-
p
$TARGET
/
container/
$FORM
ln
-
s
$v
$TARGET
/
container/
$FORM
/
$BASE
eval
$(
grep
'Stream #0\.[^:]*: [a-zA-Z0-9][^:]*: [a-zA-Z0-9]'
$TMP
|
sed
's#[^:]*: \([a-zA-Z0-9]*\)[^:]*: \([a-zA-Z0-9]*\).*#mkdir -p '
$TARGET
'/\1/\2 ; ln -s '
$v
' '
$TARGET
'/\1/\2/'
$BASE
' ; #'
)
done
rm
$TMP
tools/unwrap-diff
deleted
100755 → 0
View file @
a8d44f9d
#!/bin/sh
tr
'\n'
'\001'
|
sed
's/\x01\x01/\x01 \x01/g'
|
sed
's/\x01\([^-+ @]\)/ \1/g'
|
tr
'\001'
'\n'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment