Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
havlenapetr committed Jun 22, 2010
0 parents commit ae409fb
Show file tree
Hide file tree
Showing 3,305 changed files with 1,039,505 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
.DS_Store
._.DS_Store
20 changes: 20 additions & 0 deletions AndroidManifest.xml
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cz.havlena.ffmpeg.ui"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".FFMpegActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

</application>
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
</manifest>
2 changes: 2 additions & 0 deletions Application.mk
@@ -0,0 +1,2 @@
APP_PROJECT_PATH := $(call my-dir)
APP_MODULES := libavcodec libavformat libavutil libpostproc libswscale libfaac libffmpeg_jni
Binary file added jni/.DS_Store
Binary file not shown.
Binary file added jni/._.DS_Store
Binary file not shown.
Binary file added jni/._Android.mk
Binary file not shown.
26 changes: 26 additions & 0 deletions jni/Android.mk
@@ -0,0 +1,26 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_SRC_FILES := ffmpeg.c cmdutils.c

LOCAL_STATIC_LIBRARIES := libavcodec libavformat libavutil libpostproc libswscale

LOCAL_MODULE := ffmpeg

include $(BUILD_EXECUTABLE)

# build android native lib
include $(CLEAR_VARS)

LOCAL_SRC_FILES := android/android_media_ffmpeg.c cmdutils.c

LOCAL_LDLIBS := -llog
LOCAL_STATIC_LIBRARIES := libavcodec libavformat libavutil libpostproc libswscale

LOCAL_MODULE := libffmpeg_jni

include $(BUILD_SHARED_LIBRARY)

# build libs
include $(CLEAR_VARS)
include $(call all-makefiles-under,$(LOCAL_PATH))

0 comments on commit ae409fb

Please sign in to comment.