├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── README.md ├── bin ├── AndroidManifest.xml ├── classes.dex ├── classes │ └── com │ │ ├── lansoeditor │ │ └── demo │ │ │ ├── BuildConfig.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ └── R.class │ │ └── lansosdk │ │ ├── editorDemo │ │ ├── MainActivity$1.class │ │ ├── MainActivity$2.class │ │ ├── MainActivity$3.class │ │ ├── MainActivity$4.class │ │ ├── MainActivity.class │ │ ├── SdkHintActivity$1.class │ │ ├── SdkHintActivity$2.class │ │ ├── SdkHintActivity.class │ │ ├── StartActivity$1.class │ │ ├── StartActivity.class │ │ ├── VideoEditDemoActivity$1.class │ │ ├── VideoEditDemoActivity$2.class │ │ ├── VideoEditDemoActivity$3.class │ │ ├── VideoEditDemoActivity$4.class │ │ ├── VideoEditDemoActivity$SubAsyncTask.class │ │ ├── VideoEditDemoActivity.class │ │ ├── VideoPlayerActivity$1.class │ │ ├── VideoPlayerActivity$2.class │ │ ├── VideoPlayerActivity$3.class │ │ └── VideoPlayerActivity.class │ │ └── videoeditor │ │ ├── Atom.class │ │ ├── AudioEncodeDecode.class │ │ ├── LanSoEditor.class │ │ ├── MP4Header.class │ │ ├── MediaInfo.class │ │ ├── VideoEditor$EventHandler.class │ │ ├── VideoEditor.class │ │ ├── onVideoEditorProgressListener.class │ │ ├── player │ │ ├── CodecInfoKnowed.class │ │ ├── IMediaDataSource.class │ │ ├── IMediaPlayer$OnBufferingUpdateListener.class │ │ ├── IMediaPlayer$OnCompletionListener.class │ │ ├── IMediaPlayer$OnErrorListener.class │ │ ├── IMediaPlayer$OnInfoListener.class │ │ ├── IMediaPlayer$OnPreparedListener.class │ │ ├── IMediaPlayer$OnSeekCompleteListener.class │ │ ├── IMediaPlayer$OnVideoSizeChangedListener.class │ │ ├── IMediaPlayer.class │ │ ├── IRenderView$ISurfaceHolder.class │ │ ├── IRenderView.class │ │ ├── IVideoView.class │ │ ├── MeasureHelper.class │ │ ├── TextureRenderView.class │ │ ├── VPlayer$1.class │ │ ├── VPlayer$2.class │ │ ├── VPlayer$3.class │ │ ├── VPlayer$4.class │ │ ├── VPlayer$5.class │ │ ├── VPlayer$6.class │ │ ├── VPlayer.class │ │ ├── VideoPlayView$1.class │ │ ├── VideoPlayView$2.class │ │ ├── VideoPlayView$3.class │ │ ├── VideoPlayView$4.class │ │ ├── VideoPlayView$5.class │ │ ├── VideoPlayView$6.class │ │ ├── VideoPlayView$SurfaceCallback.class │ │ ├── VideoPlayView.class │ │ ├── VideoPlayer$DefaultMediaCodecSelector.class │ │ ├── VideoPlayer$EventHandler.class │ │ ├── VideoPlayer$OnControlMessageListener.class │ │ ├── VideoPlayer$OnMediaCodecSelectListener.class │ │ ├── VideoPlayer$OnNativeInvokeListener.class │ │ └── VideoPlayer.class │ │ └── utils │ │ ├── AndroidVersion.class │ │ ├── DLog.class │ │ ├── FileUtils.class │ │ ├── IRenderView.class │ │ ├── MeasureHelper.class │ │ ├── TextureRenderView.class │ │ └── snoCrashHandler.class ├── dexedLibs │ ├── android-support-v4-310d6a55214a32ba51ad8e052c8a4142.jar │ └── android-support-v4-d47386badd64428f8ff27377ac039762.jar ├── jarlist.cache ├── res │ └── crunch │ │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── right_arrow.png │ │ └── start.png │ │ ├── drawable-mdpi │ │ └── ic_launcher.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ └── drawable-xxhdpi │ │ └── ic_launcher.png ├── resources.ap_ └── ubuntu_LanSoEditor_common.apk ├── gen └── com │ └── lansoeditor │ └── demo │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── libs ├── android-support-v4.jar └── armeabi-v7a │ ├── libffmpegeditor.so │ ├── liblsdisplay.so │ └── liblsplayer.so ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_launcher.png │ ├── right_arrow.png │ └── start.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ └── start_background.xml ├── layout │ ├── activity_main.xml │ ├── activity_player.xml │ ├── playbox_hint_layout.xml │ ├── player_layout.xml │ ├── start_layout3.xml │ └── video_edit_demo_layout.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── lansosdk ├── editorDemo ├── MainActivity.java ├── SdkHintActivity.java ├── StartActivity.java ├── VideoEditDemoActivity.java └── VideoPlayerActivity.java └── videoeditor ├── AudioEncodeDecode.java ├── LanSoEditor.java ├── MP4Header.java ├── MediaInfo.java ├── VideoEditor.java ├── onVideoEditorProgressListener.java ├── player ├── CodecInfoKnowed.java ├── IMediaDataSource.java ├── IMediaPlayer.java ├── IRenderView.java ├── IVideoView.java ├── MeasureHelper.java ├── TextureRenderView.java ├── VPlayer.java ├── VideoPlayView.java └── VideoPlayer.java └── utils ├── AndroidVersion.java ├── DLog.java ├── FileUtils.java ├── IRenderView.java ├── MeasureHelper.java ├── TextureRenderView.java └── snoCrashHandler.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | ubuntu_LanSoEditor_common 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LanSoEditor_common ---android平台的视频编辑SDK 2 | 3 | ###当前版本是LanSoEditor-v1.3 4 | * 主要使用在音视频的: 裁剪,剪切,分离,合并,转换,拼接,水印,叠加,混合,转码等场合; 5 | * 6 | * 我们是针对android平台对ffmpeg做了硬件加速优化,经过多款手机的测试,优化性能大概提升4倍左右 7 | * 8 | * 我们在项目中提供了大约30个常用的方法并写了详细的说明注释,基本满足一般视频编辑的需求 9 | * 10 | * 我们另外提供了扩展接口,您完全可以根据强大的ffmpeg命令来扩展您需要的功能 11 | * 12 | * 此SDK采用低价收费授权,公司性质的合作,为了您项目更好的进行,欢迎和我们联系.谢谢! 13 | 14 | ###下载地址: 15 | * https://github.com/LanSoSdk/LanSoEditor_common 16 | 17 | ###联系方式: 18 | * QQ 1852600324 19 | * Email:support@lansongtech.com 20 | 21 | ###您可以直接下载APK来安装测试: 22 | [LanSoEditor_common.apk][id] 23 | [id]:http://files.cnblogs.com/files/guobaPlayer/LanSoEditor_common.apk 24 | 25 | ###本SDK的编解码有: 26 | * 软解码器H264 27 | * 硬件加速解码器lansoh264_dec 28 | * 软编码器libx264 29 | * 硬编码器lansoh264_enc 30 | * 音频mp3编码器libmp3lame 31 | * 音频aac编码器 faac 32 | 33 | ####我们有免费的,仅供个人视频爱好者使用的版本,欢迎您的使用 34 | * 下载地址 https://github.com/LanSoSdk/video_play_edit_sdk 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/lansoeditor/demo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansoeditor/demo/R.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/MainActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/MainActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/MainActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/MainActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/MainActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/MainActivity$4.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/MainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/SdkHintActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/SdkHintActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/SdkHintActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/SdkHintActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/SdkHintActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/SdkHintActivity.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/StartActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/StartActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/StartActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/StartActivity.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$4.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$SubAsyncTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity$SubAsyncTask.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoEditDemoActivity.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoPlayerActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoPlayerActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoPlayerActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoPlayerActivity$2.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoPlayerActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoPlayerActivity$3.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/editorDemo/VideoPlayerActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/editorDemo/VideoPlayerActivity.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/Atom.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/Atom.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/AudioEncodeDecode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/AudioEncodeDecode.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/LanSoEditor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/LanSoEditor.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/MP4Header.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/MP4Header.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/MediaInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/MediaInfo.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/VideoEditor$EventHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/VideoEditor$EventHandler.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/VideoEditor.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/VideoEditor.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/onVideoEditorProgressListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/onVideoEditorProgressListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/CodecInfoKnowed.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/CodecInfoKnowed.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaDataSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaDataSource.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnBufferingUpdateListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnBufferingUpdateListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnCompletionListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnCompletionListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnErrorListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnErrorListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnInfoListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnInfoListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnPreparedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnPreparedListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnSeekCompleteListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnSeekCompleteListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnVideoSizeChangedListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer$OnVideoSizeChangedListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IMediaPlayer.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IRenderView$ISurfaceHolder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IRenderView$ISurfaceHolder.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IRenderView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IRenderView.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/IVideoView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/IVideoView.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/MeasureHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/MeasureHelper.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/TextureRenderView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/TextureRenderView.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VPlayer$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VPlayer$1.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VPlayer$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VPlayer$2.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VPlayer$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VPlayer$3.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VPlayer$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VPlayer$4.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VPlayer$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VPlayer$5.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VPlayer$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VPlayer$6.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VPlayer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VPlayer.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$1.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$2.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$3.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$4.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$5.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$6.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$SurfaceCallback.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayView$SurfaceCallback.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayView.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$DefaultMediaCodecSelector.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$DefaultMediaCodecSelector.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$EventHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$EventHandler.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$OnControlMessageListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$OnControlMessageListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$OnMediaCodecSelectListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$OnMediaCodecSelectListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$OnNativeInvokeListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayer$OnNativeInvokeListener.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/player/VideoPlayer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/player/VideoPlayer.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/utils/AndroidVersion.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/utils/AndroidVersion.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/utils/DLog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/utils/DLog.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/utils/FileUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/utils/FileUtils.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/utils/IRenderView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/utils/IRenderView.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/utils/MeasureHelper.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/utils/MeasureHelper.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/utils/TextureRenderView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/utils/TextureRenderView.class -------------------------------------------------------------------------------- /bin/classes/com/lansosdk/videoeditor/utils/snoCrashHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/classes/com/lansosdk/videoeditor/utils/snoCrashHandler.class -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-310d6a55214a32ba51ad8e052c8a4142.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/dexedLibs/android-support-v4-310d6a55214a32ba51ad8e052c8a4142.jar -------------------------------------------------------------------------------- /bin/dexedLibs/android-support-v4-d47386badd64428f8ff27377ac039762.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/dexedLibs/android-support-v4-d47386badd64428f8ff27377ac039762.jar -------------------------------------------------------------------------------- /bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/res/crunch/drawable-hdpi/right_arrow.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-hdpi/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/res/crunch/drawable-hdpi/start.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/resources.ap_ -------------------------------------------------------------------------------- /bin/ubuntu_LanSoEditor_common.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/bin/ubuntu_LanSoEditor_common.apk -------------------------------------------------------------------------------- /gen/com/lansoeditor/demo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.lansoeditor.demo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/libs/android-support-v4.jar -------------------------------------------------------------------------------- /libs/armeabi-v7a/libffmpegeditor.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/libs/armeabi-v7a/libffmpegeditor.so -------------------------------------------------------------------------------- /libs/armeabi-v7a/liblsdisplay.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/libs/armeabi-v7a/liblsdisplay.so -------------------------------------------------------------------------------- /libs/armeabi-v7a/liblsplayer.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/libs/armeabi-v7a/liblsplayer.so -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-23 15 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/right_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/res/drawable-hdpi/right_arrow.png -------------------------------------------------------------------------------- /res/drawable-hdpi/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/res/drawable-hdpi/start.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seoppt/LanSoEditor_common/c839af959141a1e38b2d7ef815ed311004aa9be1/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/start_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 18 | 23 | 24 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 156 | 157 | 164 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | -------------------------------------------------------------------------------- /res/layout/activity_player.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 13 | 14 | 20 |