├── .gitignore ├── AndroidManifest.xml ├── AndroidPlayer-debug.apk ├── README.md ├── bootstrap.sh ├── jni ├── Android.mk ├── Application.mk ├── main │ ├── Android.mk │ ├── Application.mk │ ├── SDL_android_main.c │ ├── cmdutils.c │ ├── cmdutils.h │ ├── cmdutils_common_opts.h │ ├── ffplay2.c │ └── jni.c └── sdl2-disable-touch.patch ├── makefiles ├── Android.mk ├── Android_.mk └── Android_configure.mk ├── res ├── layout │ ├── gw.xml │ ├── main.xml │ └── simplerow.xml └── values │ └── strings.xml ├── settings.gradle └── src └── org └── libsdl └── app ├── GatewayClient.java ├── History.java ├── ListViewActivity.java └── SDLActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidPlayer-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/AndroidPlayer-debug.apk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/bootstrap.sh -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /jni/main/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/main/Android.mk -------------------------------------------------------------------------------- /jni/main/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := armeabi-v7a 2 | -------------------------------------------------------------------------------- /jni/main/SDL_android_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/main/SDL_android_main.c -------------------------------------------------------------------------------- /jni/main/cmdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/main/cmdutils.c -------------------------------------------------------------------------------- /jni/main/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/main/cmdutils.h -------------------------------------------------------------------------------- /jni/main/cmdutils_common_opts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/main/cmdutils_common_opts.h -------------------------------------------------------------------------------- /jni/main/ffplay2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/main/ffplay2.c -------------------------------------------------------------------------------- /jni/main/jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/main/jni.c -------------------------------------------------------------------------------- /jni/sdl2-disable-touch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/jni/sdl2-disable-touch.patch -------------------------------------------------------------------------------- /makefiles/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/makefiles/Android.mk -------------------------------------------------------------------------------- /makefiles/Android_.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/makefiles/Android_.mk -------------------------------------------------------------------------------- /makefiles/Android_configure.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/makefiles/Android_configure.mk -------------------------------------------------------------------------------- /res/layout/gw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/res/layout/gw.xml -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/layout/simplerow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/res/layout/simplerow.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':' 2 | -------------------------------------------------------------------------------- /src/org/libsdl/app/GatewayClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/src/org/libsdl/app/GatewayClient.java -------------------------------------------------------------------------------- /src/org/libsdl/app/History.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/src/org/libsdl/app/History.java -------------------------------------------------------------------------------- /src/org/libsdl/app/ListViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/src/org/libsdl/app/ListViewActivity.java -------------------------------------------------------------------------------- /src/org/libsdl/app/SDLActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeYangLiu/AndroidPlayer/HEAD/src/org/libsdl/app/SDLActivity.java --------------------------------------------------------------------------------