Skip to content

Commit 0fdc4d7

Browse files
committed
Initial commit
0 parents  commit 0fdc4d7

File tree

91 files changed

+4348
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+4348
-0
lines changed

.gitignore

+157
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
# Created by https://www.gitignore.io
2+
3+
### Java ###
4+
*.class
5+
6+
# Mobile Tools for Java (J2ME)
7+
.mtj.tmp/
8+
9+
# Package Files #
10+
*.jar
11+
*.war
12+
*.ear
13+
!gradle/wrapper/gradle-wrapper.jar
14+
15+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
16+
hs_err_pid*
17+
18+
19+
### Eclipse ###
20+
*.pydevproject
21+
.metadata
22+
.gradle
23+
bin/
24+
tmp/
25+
*.tmp
26+
*.bak
27+
*.swp
28+
*~.nib
29+
local.properties
30+
.settings/
31+
.loadpath
32+
33+
# External tool builders
34+
.externalToolBuilders/
35+
36+
# Locally stored "Eclipse launch configurations"
37+
*.launch
38+
39+
# CDT-specific
40+
.cproject
41+
42+
# PDT-specific
43+
.buildpath
44+
45+
# sbteclipse plugin
46+
.target
47+
48+
# TeXlipse plugin
49+
.texlipse
50+
51+
52+
### Android ###
53+
# Built application files
54+
*.apk
55+
*.ap_
56+
57+
# Files for the Dalvik VM
58+
*.dex
59+
60+
# Java class files
61+
*.class
62+
63+
# Generated files
64+
bin/
65+
gen/
66+
67+
# Gradle files
68+
.gradle/
69+
build/
70+
71+
# Local configuration file (sdk path, etc)
72+
local.properties
73+
74+
# Proguard folder generated by Eclipse
75+
proguard/
76+
77+
# Log Files
78+
*.log
79+
80+
81+
### Intellij ###
82+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
83+
84+
*.iml
85+
86+
## Directory-based project format:
87+
.idea/
88+
# if you remove the above rule, at least ignore the follwing:
89+
90+
# User-specific stuff:
91+
# .idea/workspace.xml
92+
# .idea/tasks.xml
93+
# .idea/dictionaries
94+
95+
# Sensitive or high-churn files:
96+
# .idea/dataSources.ids
97+
# .idea/dataSources.xml
98+
# .idea/sqlDataSources.xml
99+
# .idea/dynamic.xml
100+
# .idea/uiDesigner.xml
101+
102+
# Gradle:
103+
# .idea/gradle.xml
104+
# .idea/libraries
105+
106+
# Mongo Explorer plugin:
107+
# .idea/mongoSettings.xml
108+
109+
## File-based project format:
110+
*.ipr
111+
*.iws
112+
113+
## Plugin-specific files:
114+
115+
# IntelliJ
116+
out/
117+
118+
# mpeltonen/sbt-idea plugin
119+
.idea_modules/
120+
121+
# JIRA plugin
122+
atlassian-ide-plugin.xml
123+
124+
# Crashlytics plugin (for Android Studio and IntelliJ)
125+
com_crashlytics_export_strings.xml
126+
127+
128+
### OSX ###
129+
.DS_Store
130+
.AppleDouble
131+
.LSOverride
132+
133+
# Icon must end with two \r
134+
Icon
135+
136+
137+
# Thumbnails
138+
._*
139+
140+
# Files that might appear on external disk
141+
.Spotlight-V100
142+
.Trashes
143+
144+
# Directories potentially created on remote AFP share
145+
.AppleDB
146+
.AppleDesktop
147+
Network Trash Folder
148+
Temporary Items
149+
.apdisk
150+
151+
152+
### Linux ###
153+
*~
154+
155+
# KDE directory preferences
156+
.directory
157+
.gradle

.travis.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: android
2+
android:
3+
update_sdk: true
4+
components:
5+
- platform-tools
6+
- tools
7+
8+
# The BuildTools version used by your project
9+
- build-tools-20.0.0
10+
11+
# The SDK version used to compile your project
12+
- android-16
13+
- android-L
14+
15+
- sys-img-x86-android-16
16+
- sys-img-armeabi-v7a-android-16
17+
18+
script:
19+
- ./runTests.sh || exit 1

FFmpegAndroid/.gitignore

+156
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,156 @@
1+
# Created by https://www.gitignore.io
2+
3+
### Java ###
4+
*.class
5+
6+
# Mobile Tools for Java (J2ME)
7+
.mtj.tmp/
8+
9+
# Package Files #
10+
*.jar
11+
*.war
12+
*.ear
13+
14+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
15+
hs_err_pid*
16+
17+
18+
### Eclipse ###
19+
*.pydevproject
20+
.metadata
21+
.gradle
22+
bin/
23+
tmp/
24+
*.tmp
25+
*.bak
26+
*.swp
27+
*~.nib
28+
local.properties
29+
.settings/
30+
.loadpath
31+
32+
# External tool builders
33+
.externalToolBuilders/
34+
35+
# Locally stored "Eclipse launch configurations"
36+
*.launch
37+
38+
# CDT-specific
39+
.cproject
40+
41+
# PDT-specific
42+
.buildpath
43+
44+
# sbteclipse plugin
45+
.target
46+
47+
# TeXlipse plugin
48+
.texlipse
49+
50+
51+
### Android ###
52+
# Built application files
53+
*.apk
54+
*.ap_
55+
56+
# Files for the Dalvik VM
57+
*.dex
58+
59+
# Java class files
60+
*.class
61+
62+
# Generated files
63+
bin/
64+
gen/
65+
66+
# Gradle files
67+
.gradle/
68+
build/
69+
70+
# Local configuration file (sdk path, etc)
71+
local.properties
72+
73+
# Proguard folder generated by Eclipse
74+
proguard/
75+
76+
# Log Files
77+
*.log
78+
79+
80+
### Intellij ###
81+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
82+
83+
/*.iml
84+
85+
## Directory-based project format:
86+
.idea/
87+
# if you remove the above rule, at least ignore the follwing:
88+
89+
# User-specific stuff:
90+
# .idea/workspace.xml
91+
# .idea/tasks.xml
92+
# .idea/dictionaries
93+
94+
# Sensitive or high-churn files:
95+
# .idea/dataSources.ids
96+
# .idea/dataSources.xml
97+
# .idea/sqlDataSources.xml
98+
# .idea/dynamic.xml
99+
# .idea/uiDesigner.xml
100+
101+
# Gradle:
102+
# .idea/gradle.xml
103+
# .idea/libraries
104+
105+
# Mongo Explorer plugin:
106+
# .idea/mongoSettings.xml
107+
108+
## File-based project format:
109+
*.ipr
110+
*.iws
111+
112+
## Plugin-specific files:
113+
114+
# IntelliJ
115+
out/
116+
117+
# mpeltonen/sbt-idea plugin
118+
.idea_modules/
119+
120+
# JIRA plugin
121+
atlassian-ide-plugin.xml
122+
123+
# Crashlytics plugin (for Android Studio and IntelliJ)
124+
com_crashlytics_export_strings.xml
125+
126+
127+
### OSX ###
128+
.DS_Store
129+
.AppleDouble
130+
.LSOverride
131+
132+
# Icon must end with two \r
133+
Icon
134+
135+
136+
# Thumbnails
137+
._*
138+
139+
# Files that might appear on external disk
140+
.Spotlight-V100
141+
.Trashes
142+
143+
# Directories potentially created on remote AFP share
144+
.AppleDB
145+
.AppleDesktop
146+
Network Trash Folder
147+
Temporary Items
148+
.apdisk
149+
150+
151+
### Linux ###
152+
*~
153+
154+
# KDE directory preferences
155+
.directory
156+
.gradle
17.6 MB
Binary file not shown.

FFmpegAndroid/assets/x86/ffmpeg

20.9 MB
Binary file not shown.

0 commit comments

Comments
 (0)