├── .classpath ├── .cproject ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── AndroidVideo.iml ├── assets └── e4fun │ ├── caches │ ├── 006038C2D1DAEBFA26FC59102F4EF220.png │ ├── E0C521D353952559DAC35FE172B389AD.png │ └── F6FDE122FA24E6A4DF5A10F9A41DF4AC.png │ ├── effects │ ├── 457A69B2AC53F0FE7E19965B74169232 │ │ ├── baozha.mp3 │ │ ├── baozha.plist │ │ ├── baozha.pvr.ccz │ │ └── effect.plist │ ├── E16CF7CE249C579A1336731026708CF3 │ │ ├── bingdong.mp3 │ │ ├── bingdong.plist │ │ ├── bingdong.pvr.ccz │ │ └── effect.plist │ └── F37A49E9451271022B69684C672F1676 │ │ ├── effect.plist │ │ ├── start1.plist │ │ ├── start2.plist │ │ ├── start3.plist │ │ └── start4.plist │ ├── filters │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── https │ └── http_content.txt │ └── icons │ ├── icon_effect_delete.png │ ├── icon_effect_rotate.png │ └── icon_effect_scale.png ├── bin ├── AndroidManifest.xml └── classes │ ├── android-support-v4.jar │ ├── android │ └── xml │ │ └── plist │ │ ├── BaseXMLParser.class │ │ ├── PListXMLBase64.class │ │ ├── PListXMLConstants.class │ │ ├── PListXMLHandler$PListParserListener.class │ │ ├── PListXMLHandler$ParseMode.class │ │ ├── PListXMLHandler.class │ │ ├── PListXMLParser.class │ │ ├── PListXMLStringer.class │ │ └── domain │ │ ├── Array.class │ │ ├── Data.class │ │ ├── Date.class │ │ ├── Dict.class │ │ ├── False.class │ │ ├── IPListSimpleObject.class │ │ ├── Integer.class │ │ ├── PList.class │ │ ├── PListObject.class │ │ ├── PListObjectType.class │ │ ├── Real.class │ │ ├── String.class │ │ └── True.class │ ├── com │ └── android │ │ ├── nxhttp │ │ ├── NXHttpFormRequest$NXHttpFormField.class │ │ ├── NXHttpFormRequest.class │ │ ├── NXHttpQueue.class │ │ ├── NXHttpQueueListener.class │ │ ├── NXHttpRequest.class │ │ └── NXHttpRequestListener.class │ │ ├── nxsdk │ │ └── NXWorker.class │ │ ├── nxui │ │ ├── NXPageRoot.class │ │ ├── NXPageStack.class │ │ ├── NXPageView$1.class │ │ └── NXPageView.class │ │ └── video │ │ ├── AppMainActivity.class │ │ ├── BuildConfig.class │ │ ├── R$attr.class │ │ ├── R$dimen.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R.class │ │ ├── camera │ │ ├── EFCameraView$EFCameraViewListener.class │ │ └── EFCameraView.class │ │ ├── https │ │ ├── EFDownloadManager$EFDownloadListener.class │ │ ├── EFDownloadManager$EFDownloadMission.class │ │ ├── EFDownloadManager.class │ │ ├── EFEffectsManager$EFEffectDownMission.class │ │ ├── EFEffectsManager$EFEffectsListener.class │ │ ├── EFEffectsManager.class │ │ ├── EFRequestsManager$EFRequest.class │ │ ├── EFRequestsManager$EFRequestsListener.class │ │ └── EFRequestsManager.class │ │ ├── page │ │ ├── EFEditorPageView.class │ │ ├── EFEffectPageView$EFEffectPageListener.class │ │ ├── EFEffectPageView.class │ │ ├── EFRecordPageView.class │ │ ├── effects │ │ │ ├── EFEffectDataStructs$EFEffectDataItem.class │ │ │ └── EFEffectDataStructs.class │ │ └── widget │ │ │ ├── EFEffectFilmView.class │ │ │ ├── EFEffectItemView.class │ │ │ ├── EFEffectListView.class │ │ │ ├── EFEffectOnlineView$EffectItemListener.class │ │ │ └── EFEffectOnlineView.class │ │ ├── tools │ │ ├── E4FunTool$1CpuFilter.class │ │ ├── E4FunTool.class │ │ ├── EFBitmapManager.class │ │ ├── EFJsonBuilder.class │ │ ├── EFJsonParser.class │ │ └── EFPlistParser.class │ │ ├── views │ │ ├── EFBlinkView.class │ │ ├── EFImageButton$EFButtonStatus.class │ │ ├── EFImageButton.class │ │ ├── EFImageView.class │ │ ├── EFListView$EFListDataSource.class │ │ ├── EFListView.class │ │ ├── EFPageView$1.class │ │ ├── EFPageView.class │ │ ├── EFPopTextView.class │ │ ├── EFProgressView.class │ │ ├── EFSliderView.class │ │ ├── EFSurfaceView.class │ │ └── EFTextButton.class │ │ └── worker │ │ ├── EFEditorWorker$EFEditorWorkerProgress.class │ │ ├── EFEditorWorker$EFExtractWorkerProgress.class │ │ ├── EFEditorWorker$EFPlayerWorkerProgress.class │ │ ├── EFEditorWorker$EFRenderWorkerProgress.class │ │ ├── EFEditorWorker.class │ │ ├── EFRecordWorker$EFBuildrWorkerProgress.class │ │ ├── EFRecordWorker$EFRecordWorkerProgress.class │ │ └── EFRecordWorker.class │ └── commons-httpclient-3.1.jar ├── doc └── 特效组合结构JSON.txt ├── gen └── com │ └── android │ └── video │ ├── BuildConfig.java │ └── R.java ├── ic_launcher-web.png ├── jars ├── android-support-v4.jar └── commons-httpclient-3.1.jar ├── jni ├── ALGTHM │ ├── ALGTHM.mk │ ├── EFALGSaliency.cpp │ ├── EFALGSaliency.h │ ├── EFALGTracker.cpp │ └── EFALGTracker.h ├── Android.mk ├── Application.mk ├── COCOS2DX │ ├── CCCamera.cpp │ ├── CCCamera.h │ ├── CCConfiguration.cpp │ ├── CCConfiguration.h │ ├── CCDirector.cpp │ ├── CCDirector.h │ ├── CCScheduler.cpp │ ├── CCScheduler.h │ ├── COCOS2DX.mk │ ├── actions │ │ ├── CCAction.cpp │ │ ├── CCAction.h │ │ ├── CCActionCamera.cpp │ │ ├── CCActionCamera.h │ │ ├── CCActionCatmullRom.cpp │ │ ├── CCActionCatmullRom.h │ │ ├── CCActionEase.cpp │ │ ├── CCActionEase.h │ │ ├── CCActionGrid.cpp │ │ ├── CCActionGrid.h │ │ ├── CCActionGrid3D.cpp │ │ ├── CCActionGrid3D.h │ │ ├── CCActionInstant.cpp │ │ ├── CCActionInstant.h │ │ ├── CCActionInterval.cpp │ │ ├── CCActionInterval.h │ │ ├── CCActionManager.cpp │ │ ├── CCActionManager.h │ │ ├── CCActionPageTurn3D.cpp │ │ ├── CCActionPageTurn3D.h │ │ ├── CCActionProgressTimer.cpp │ │ ├── CCActionProgressTimer.h │ │ ├── CCActionTiledGrid.cpp │ │ ├── CCActionTiledGrid.h │ │ ├── CCActionTween.cpp │ │ └── CCActionTween.h │ ├── base_nodes │ │ ├── CCAtlasNode.cpp │ │ ├── CCAtlasNode.h │ │ ├── CCGLBufferedNode.cpp │ │ ├── CCGLBufferedNode.h │ │ ├── CCNode.cpp │ │ └── CCNode.h │ ├── cocoa │ │ ├── CCAffineTransform.cpp │ │ ├── CCAffineTransform.h │ │ ├── CCArray.cpp │ │ ├── CCArray.h │ │ ├── CCAutoreleasePool.cpp │ │ ├── CCAutoreleasePool.h │ │ ├── CCBool.h │ │ ├── CCDataVisitor.cpp │ │ ├── CCDataVisitor.h │ │ ├── CCDictionary.cpp │ │ ├── CCDictionary.h │ │ ├── CCDouble.h │ │ ├── CCFloat.h │ │ ├── CCGeometry.cpp │ │ ├── CCGeometry.h │ │ ├── CCInteger.h │ │ ├── CCNS.cpp │ │ ├── CCNS.h │ │ ├── CCNumber.h │ │ ├── CCObject.cpp │ │ ├── CCObject.h │ │ ├── CCSet.cpp │ │ ├── CCSet.h │ │ ├── CCString.cpp │ │ ├── CCString.h │ │ ├── CCZone.cpp │ │ └── CCZone.h │ ├── cocos2d.cpp │ ├── draw_nodes │ │ ├── CCDrawNode.cpp │ │ ├── CCDrawNode.h │ │ ├── CCDrawingPrimitives.cpp │ │ └── CCDrawingPrimitives.h │ ├── effects │ │ ├── CCGrabber.cpp │ │ ├── CCGrabber.h │ │ ├── CCGrid.cpp │ │ └── CCGrid.h │ ├── include │ │ ├── CCEventType.h │ │ ├── CCProtocols.h │ │ ├── ccConfig.h │ │ ├── ccMacros.h │ │ ├── ccTypeInfo.h │ │ ├── ccTypes.h │ │ └── cocos2d.h │ ├── kazmath │ │ ├── include │ │ │ └── kazmath │ │ │ │ ├── GL │ │ │ │ ├── mat4stack.h │ │ │ │ └── matrix.h │ │ │ │ ├── aabb.h │ │ │ │ ├── kazmath.h │ │ │ │ ├── mat3.h │ │ │ │ ├── mat4.h │ │ │ │ ├── neon_matrix_impl.h │ │ │ │ ├── plane.h │ │ │ │ ├── quaternion.h │ │ │ │ ├── ray2.h │ │ │ │ ├── utility.h │ │ │ │ ├── vec2.h │ │ │ │ ├── vec3.h │ │ │ │ └── vec4.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── GL │ │ │ ├── mat4stack.c │ │ │ └── matrix.c │ │ │ ├── aabb.c │ │ │ ├── mat3.c │ │ │ ├── mat4.c │ │ │ ├── neon_matrix_impl.c │ │ │ ├── plane.c │ │ │ ├── quaternion.c │ │ │ ├── ray2.c │ │ │ ├── utility.c │ │ │ ├── vec2.c │ │ │ ├── vec3.c │ │ │ └── vec4.c │ ├── keypad_dispatcher │ │ ├── CCKeypadDelegate.cpp │ │ ├── CCKeypadDelegate.h │ │ ├── CCKeypadDispatcher.cpp │ │ └── CCKeypadDispatcher.h │ ├── label_nodes │ │ ├── CCLabelAtlas.cpp │ │ ├── CCLabelAtlas.h │ │ ├── CCLabelBMFont.cpp │ │ ├── CCLabelBMFont.h │ │ ├── CCLabelTTF.cpp │ │ └── CCLabelTTF.h │ ├── menu_nodes │ │ ├── CCMenu.cpp │ │ ├── CCMenu.h │ │ ├── CCMenuItem.cpp │ │ └── CCMenuItem.h │ ├── misc_nodes │ │ ├── CCClippingNode.cpp │ │ ├── CCClippingNode.h │ │ ├── CCMotionStreak.cpp │ │ ├── CCMotionStreak.h │ │ ├── CCProgressTimer.cpp │ │ ├── CCProgressTimer.h │ │ ├── CCRenderTexture.cpp │ │ └── CCRenderTexture.h │ ├── particle_nodes │ │ ├── CCParticleBatchNode.cpp │ │ ├── CCParticleBatchNode.h │ │ ├── CCParticleExamples.cpp │ │ ├── CCParticleExamples.h │ │ ├── CCParticleSystem.cpp │ │ ├── CCParticleSystem.h │ │ ├── CCParticleSystemQuad.cpp │ │ ├── CCParticleSystemQuad.h │ │ └── firePngData.h │ ├── platform │ │ ├── CCAccelerometerDelegate.h │ │ ├── CCApplicationProtocol.h │ │ ├── CCCommon.h │ │ ├── CCDevice.h │ │ ├── CCEGLViewProtocol.cpp │ │ ├── CCEGLViewProtocol.h │ │ ├── CCFileUtils.cpp │ │ ├── CCFileUtils.h │ │ ├── CCImage.h │ │ ├── CCImageCommon.hpp │ │ ├── CCPlatformConfig.h │ │ ├── CCPlatformMacros.h │ │ ├── CCSAXParser.cpp │ │ ├── CCSAXParser.h │ │ ├── CCThread.cpp │ │ ├── CCThread.h │ │ ├── android │ │ │ ├── CCAccelerometer.cpp │ │ │ ├── CCAccelerometer.h │ │ │ ├── CCApplication.cpp │ │ │ ├── CCApplication.h │ │ │ ├── CCCommon.cpp │ │ │ ├── CCDevice.cpp │ │ │ ├── CCEGLView.cpp │ │ │ ├── CCEGLView.h │ │ │ ├── CCFileUtilsAndroid.cpp │ │ │ ├── CCFileUtilsAndroid.h │ │ │ ├── CCGL.h │ │ │ ├── CCImage.cpp │ │ │ ├── CCPlatformDefine.h │ │ │ └── CCStdC.h │ │ ├── platform.cpp │ │ └── platform.h │ ├── scene_node │ │ ├── CCLayer.cpp │ │ ├── CCLayer.h │ │ ├── CCScene.cpp │ │ └── CCScene.h │ ├── script_support │ │ ├── CCScriptSupport.cpp │ │ └── CCScriptSupport.h │ ├── shaders │ │ ├── CCGLProgram.cpp │ │ ├── CCGLProgram.h │ │ ├── CCShaderCache.cpp │ │ ├── CCShaderCache.h │ │ ├── ccGLStateCache.cpp │ │ ├── ccGLStateCache.h │ │ ├── ccShaderEx_SwitchMask_frag.h │ │ ├── ccShader_PositionColorLengthTexture_frag.h │ │ ├── ccShader_PositionColorLengthTexture_vert.h │ │ ├── ccShader_PositionColor_frag.h │ │ ├── ccShader_PositionColor_vert.h │ │ ├── ccShader_PositionTextureA8Color_frag.h │ │ ├── ccShader_PositionTextureA8Color_vert.h │ │ ├── ccShader_PositionTextureColorAlphaTest_frag.h │ │ ├── ccShader_PositionTextureColorNV12_frag.h │ │ ├── ccShader_PositionTextureColorNV12_vert.h │ │ ├── ccShader_PositionTextureColorNV21_frag.h │ │ ├── ccShader_PositionTextureColorNV21_vert.h │ │ ├── ccShader_PositionTextureColor_frag.h │ │ ├── ccShader_PositionTextureColor_vert.h │ │ ├── ccShader_PositionTexture_frag.h │ │ ├── ccShader_PositionTexture_uColor_frag.h │ │ ├── ccShader_PositionTexture_uColor_vert.h │ │ ├── ccShader_PositionTexture_vert.h │ │ ├── ccShader_Position_uColor_frag.h │ │ ├── ccShader_Position_uColor_vert.h │ │ ├── ccShaders.cpp │ │ └── ccShaders.h │ ├── sprite_nodes │ │ ├── CCAnimation.cpp │ │ ├── CCAnimation.h │ │ ├── CCAnimationCache.cpp │ │ ├── CCAnimationCache.h │ │ ├── CCSprite.cpp │ │ ├── CCSprite.h │ │ ├── CCSpriteBatchNode.cpp │ │ ├── CCSpriteBatchNode.h │ │ ├── CCSpriteFrame.cpp │ │ ├── CCSpriteFrame.h │ │ ├── CCSpriteFrameCache.cpp │ │ └── CCSpriteFrameCache.h │ ├── support │ │ ├── CCNotificationCenter.cpp │ │ ├── CCNotificationCenter.h │ │ ├── CCPointExtension.cpp │ │ ├── CCPointExtension.h │ │ ├── CCProfiling.cpp │ │ ├── CCProfiling.h │ │ ├── CCVertex.cpp │ │ ├── CCVertex.h │ │ ├── TransformUtils.cpp │ │ ├── TransformUtils.h │ │ ├── base64.cpp │ │ ├── base64.h │ │ ├── ccUTF8.cpp │ │ ├── ccUTF8.h │ │ ├── ccUtils.cpp │ │ ├── ccUtils.h │ │ ├── component │ │ │ ├── CCComponent.cpp │ │ │ ├── CCComponent.h │ │ │ ├── CCComponentContainer.cpp │ │ │ └── CCComponentContainer.h │ │ ├── data_support │ │ │ ├── ccCArray.cpp │ │ │ ├── ccCArray.h │ │ │ ├── uthash.h │ │ │ └── utlist.h │ │ ├── image_support │ │ │ ├── TGAlib.cpp │ │ │ └── TGAlib.h │ │ ├── tinyxml2 │ │ │ ├── tinyxml2.cpp │ │ │ └── tinyxml2.h │ │ └── zip_support │ │ │ ├── ZipUtils.cpp │ │ │ ├── ZipUtils.h │ │ │ ├── ioapi.cpp │ │ │ ├── ioapi.h │ │ │ ├── unzip.cpp │ │ │ └── unzip.h │ ├── text_input_node │ │ ├── CCIMEDelegate.h │ │ ├── CCIMEDispatcher.cpp │ │ ├── CCIMEDispatcher.h │ │ ├── CCTextFieldTTF.cpp │ │ └── CCTextFieldTTF.h │ ├── textures │ │ ├── CCTexture2D.cpp │ │ ├── CCTexture2D.h │ │ ├── CCTextureAtlas.cpp │ │ ├── CCTextureAtlas.h │ │ ├── CCTextureCache.cpp │ │ ├── CCTextureCache.h │ │ ├── CCTextureETC.cpp │ │ ├── CCTextureETC.h │ │ ├── CCTexturePVR.cpp │ │ └── CCTexturePVR.h │ ├── tilemap_parallax_nodes │ │ ├── CCParallaxNode.cpp │ │ ├── CCParallaxNode.h │ │ ├── CCTMXLayer.cpp │ │ ├── CCTMXLayer.h │ │ ├── CCTMXObjectGroup.cpp │ │ ├── CCTMXObjectGroup.h │ │ ├── CCTMXTiledMap.cpp │ │ ├── CCTMXTiledMap.h │ │ ├── CCTMXXMLParser.cpp │ │ ├── CCTMXXMLParser.h │ │ ├── CCTileMapAtlas.cpp │ │ └── CCTileMapAtlas.h │ └── touch_dispatcher │ │ ├── CCTouch.cpp │ │ ├── CCTouch.h │ │ ├── CCTouchDelegateProtocol.h │ │ ├── CCTouchDispatcher.cpp │ │ ├── CCTouchDispatcher.h │ │ ├── CCTouchHandler.cpp │ │ └── CCTouchHandler.h ├── LEAKER │ ├── LEAKER.mk │ ├── leaker.cpp │ └── leaker.h ├── LIBJSON │ ├── LIBJSON.mk │ ├── include │ │ └── json │ │ │ ├── assertions.h │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── json_tool.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ ├── version.h │ │ │ └── writer.h │ └── src │ │ ├── json_reader.cpp │ │ ├── json_value.cpp │ │ ├── json_valueiterator.hpp │ │ └── json_writer.cpp ├── LIBRARY │ ├── curl │ │ ├── include │ │ │ └── curl │ │ │ │ ├── curl.h │ │ │ │ ├── curlbuild.h │ │ │ │ ├── curlrules.h │ │ │ │ ├── curlver.h │ │ │ │ ├── easy.h │ │ │ │ ├── mprintf.h │ │ │ │ ├── multi.h │ │ │ │ ├── stdcheaders.h │ │ │ │ ├── typecheck-gcc.h │ │ │ │ └── types.h │ │ └── lib │ │ │ ├── armeabi-v7a │ │ │ └── libcurl.a │ │ │ ├── armeabi │ │ │ └── libcurl.a │ │ │ └── x86 │ │ │ └── libcurl.a │ ├── fdkaac │ │ ├── include │ │ │ └── fdk-aac │ │ │ │ ├── FDK_audio.h │ │ │ │ ├── aacdecoder_lib.h │ │ │ │ ├── aacenc_lib.h │ │ │ │ ├── genericStds.h │ │ │ │ └── machine_type.h │ │ └── lib │ │ │ └── arm │ │ │ └── libfdk-aac.a │ ├── ffmpeg │ │ ├── include │ │ │ ├── libavcodec │ │ │ │ ├── avcodec.h │ │ │ │ ├── avfft.h │ │ │ │ ├── d3d11va.h │ │ │ │ ├── dv_profile.h │ │ │ │ ├── dxva2.h │ │ │ │ ├── old_codec_ids.h │ │ │ │ ├── qsv.h │ │ │ │ ├── vaapi.h │ │ │ │ ├── vda.h │ │ │ │ ├── vdpau.h │ │ │ │ ├── version.h │ │ │ │ ├── vorbis_parser.h │ │ │ │ └── xvmc.h │ │ │ ├── libavdevice │ │ │ │ ├── avdevice.h │ │ │ │ └── version.h │ │ │ ├── libavfilter │ │ │ │ ├── asrc_abuffer.h │ │ │ │ ├── avcodec.h │ │ │ │ ├── avfilter.h │ │ │ │ ├── avfiltergraph.h │ │ │ │ ├── buffersink.h │ │ │ │ ├── buffersrc.h │ │ │ │ └── version.h │ │ │ ├── libavformat │ │ │ │ ├── avformat.h │ │ │ │ ├── avio.h │ │ │ │ └── version.h │ │ │ ├── libavresample │ │ │ │ ├── avresample.h │ │ │ │ └── version.h │ │ │ ├── libavutil │ │ │ │ ├── adler32.h │ │ │ │ ├── aes.h │ │ │ │ ├── attributes.h │ │ │ │ ├── audio_fifo.h │ │ │ │ ├── audioconvert.h │ │ │ │ ├── avassert.h │ │ │ │ ├── avconfig.h │ │ │ │ ├── avstring.h │ │ │ │ ├── avutil.h │ │ │ │ ├── base64.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bprint.h │ │ │ │ ├── bswap.h │ │ │ │ ├── buffer.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast5.h │ │ │ │ ├── channel_layout.h │ │ │ │ ├── common.h │ │ │ │ ├── cpu.h │ │ │ │ ├── crc.h │ │ │ │ ├── dict.h │ │ │ │ ├── display.h │ │ │ │ ├── downmix_info.h │ │ │ │ ├── error.h │ │ │ │ ├── eval.h │ │ │ │ ├── ffversion.h │ │ │ │ ├── fifo.h │ │ │ │ ├── file.h │ │ │ │ ├── frame.h │ │ │ │ ├── hash.h │ │ │ │ ├── hmac.h │ │ │ │ ├── imgutils.h │ │ │ │ ├── intfloat.h │ │ │ │ ├── intreadwrite.h │ │ │ │ ├── lfg.h │ │ │ │ ├── log.h │ │ │ │ ├── lzo.h │ │ │ │ ├── macros.h │ │ │ │ ├── mathematics.h │ │ │ │ ├── md5.h │ │ │ │ ├── mem.h │ │ │ │ ├── motion_vector.h │ │ │ │ ├── murmur3.h │ │ │ │ ├── old_pix_fmts.h │ │ │ │ ├── opt.h │ │ │ │ ├── parseutils.h │ │ │ │ ├── pixdesc.h │ │ │ │ ├── pixelutils.h │ │ │ │ ├── pixfmt.h │ │ │ │ ├── random_seed.h │ │ │ │ ├── rational.h │ │ │ │ ├── replaygain.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── samplefmt.h │ │ │ │ ├── sha.h │ │ │ │ ├── sha512.h │ │ │ │ ├── stereo3d.h │ │ │ │ ├── threadmessage.h │ │ │ │ ├── time.h │ │ │ │ ├── timecode.h │ │ │ │ ├── timestamp.h │ │ │ │ ├── twofish.h │ │ │ │ ├── version.h │ │ │ │ └── xtea.h │ │ │ ├── libpostproc │ │ │ │ ├── postprocess.h │ │ │ │ └── version.h │ │ │ ├── libswresample │ │ │ │ ├── swresample.h │ │ │ │ └── version.h │ │ │ └── libswscale │ │ │ │ ├── swscale.h │ │ │ │ └── version.h │ │ └── lib │ │ │ └── arm │ │ │ ├── libavcodec.a │ │ │ ├── libavdevice.a │ │ │ ├── libavfilter.a │ │ │ ├── libavformat.a │ │ │ ├── libavresample.a │ │ │ ├── libavutil.a │ │ │ ├── libpostproc.a │ │ │ ├── libswresample.a │ │ │ └── libswscale.a │ ├── jpeg │ │ ├── include │ │ │ ├── jconfig.h │ │ │ ├── jerror.h │ │ │ ├── jmorecfg.h │ │ │ └── jpeglib.h │ │ └── lib │ │ │ ├── arm │ │ │ └── libjpeg.a │ │ │ ├── armeabi │ │ │ └── libjpeg.a │ │ │ └── x86 │ │ │ └── libjpeg.a │ ├── png │ │ ├── include │ │ │ ├── png.h │ │ │ ├── pngconf.h │ │ │ └── pngusr.h │ │ └── lib │ │ │ ├── arm │ │ │ └── libpng.a │ │ │ ├── armeabi │ │ │ └── libpng.a │ │ │ └── x86 │ │ │ └── libpng.a │ ├── tiff │ │ ├── include │ │ │ ├── tiff.h │ │ │ ├── tiffconf.h │ │ │ ├── tiffio.h │ │ │ └── tiffvers.h │ │ └── lib │ │ │ ├── arm │ │ │ └── libtiff.a │ │ │ ├── armeabi │ │ │ └── libtiff.a │ │ │ └── x86 │ │ │ └── libtiff.a │ └── x264 │ │ ├── include │ │ ├── x264.h │ │ └── x264_config.h │ │ └── lib │ │ └── arm │ │ └── libx264.a ├── NXSDK │ ├── NXCC │ │ ├── NXCCContext.cpp │ │ ├── NXCCContext.h │ │ ├── NXCCDirector.cpp │ │ ├── NXCCDirector.h │ │ ├── NXCCNode.cpp │ │ ├── NXCCNode.h │ │ ├── NXCCShareNode.cpp │ │ ├── NXCCShareNode.h │ │ ├── NXCCSprite.cpp │ │ ├── NXCCSprite.h │ │ ├── NXCCSpriteNV12.cpp │ │ └── NXCCSpriteNV12.h │ ├── NXFF │ │ ├── NXFFADef.h │ │ ├── NXFFAWriter.cpp │ │ ├── NXFFAWriter.h │ │ ├── NXFFSReader.cpp │ │ ├── NXFFSReader.h │ │ ├── NXFFSWriter.cpp │ │ └── NXFFSWriter.h │ ├── NXGL │ │ ├── NXGL.cpp │ │ ├── NXGL.h │ │ ├── NXGLCanvas.cpp │ │ ├── NXGLCanvas.h │ │ ├── NXGLContext.cpp │ │ ├── NXGLContext.h │ │ ├── NXGLDrawer.cpp │ │ ├── NXGLDrawer.h │ │ ├── NXGLMatrix.h │ │ ├── NXGLSurface.cpp │ │ ├── NXGLSurface.h │ │ ├── NXGLTrimer.cpp │ │ └── NXGLTrimer.h │ ├── NXKT │ │ ├── NXBuffer.cpp │ │ ├── NXBuffer.h │ │ ├── NXDef.h │ │ ├── NXEvent.cpp │ │ ├── NXEvent.h │ │ ├── NXFile.cpp │ │ ├── NXFile.h │ │ ├── NXFmt.h │ │ ├── NXKit.cpp │ │ ├── NXKit.h │ │ ├── NXLock.cpp │ │ ├── NXLock.h │ │ ├── NXPtr.hpp │ │ ├── NXThread.cpp │ │ ├── NXThread.h │ │ ├── NXThrottle.cpp │ │ ├── NXThrottle.h │ │ ├── NXTimer.cpp │ │ └── NXTimer.h │ ├── NXPL │ │ ├── NXWBPlayer.cpp │ │ └── NXWBPlayer.h │ ├── NXSDK.cpp │ ├── NXSDK.h │ ├── NXSDK.mk │ ├── NXSL │ │ ├── NXSLRecorder.cpp │ │ ├── NXSLRecorder.h │ │ ├── NXSLSpeaker.cpp │ │ └── NXSLSpeaker.h │ ├── NXTM │ │ ├── NXTMADef.h │ │ ├── NXTMAReader.cpp │ │ ├── NXTMAReader.h │ │ ├── NXTMAWriter.cpp │ │ ├── NXTMAWriter.h │ │ ├── NXTMSReader.cpp │ │ ├── NXTMSReader.h │ │ ├── NXTMSShoter.cpp │ │ ├── NXTMSShoter.h │ │ ├── NXTMSWriter.cpp │ │ └── NXTMSWriter.h │ ├── NXWB │ │ ├── NXWorkbeach.cpp │ │ └── NXWorkbeach.h │ └── NXXL │ │ ├── NXXLCapturer.cpp │ │ └── NXXLCapturer.h └── WORKER │ ├── EFBuilderMission.cpp │ ├── EFBuilderMission.h │ ├── EFEditorWorker.cpp │ ├── EFEditorWorker.h │ ├── EFEffectsLayer.cpp │ ├── EFEffectsLayer.h │ ├── EFEffectsModel.cpp │ ├── EFEffectsModel.h │ ├── EFExtractMission.cpp │ ├── EFExtractMission.h │ ├── EFRecordWorker.cpp │ ├── EFRecordWorker.h │ ├── EFRenderMission.cpp │ ├── EFRenderMission.h │ ├── NXWorker.cpp │ ├── NXWorker.h │ └── WORKER.mk ├── libs └── armeabi-v7a │ └── libWORKER.so ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── drawable │ ├── btn_addeff_normal.png │ ├── btn_addeff_select.png │ ├── btn_backer_normal.png │ ├── btn_backer_select.png │ ├── btn_confrm_normal.png │ ├── btn_confrm_select.png │ ├── btn_delete_normal.png │ ├── btn_delete_select.png │ ├── btn_filter_normal.png │ ├── btn_filter_select.png │ ├── btn_import_normal.png │ ├── btn_import_select.png │ ├── btn_player_paused.png │ ├── btn_player_playing.png │ ├── btn_record_normal.png │ ├── btn_record_select.png │ ├── btn_render_normal.png │ ├── btn_render_select.png │ ├── btn_reverse_normal.png │ ├── btn_reverse_select.png │ ├── btn_voice_close.png │ ├── btn_voice_open.png │ ├── icon_draw_surface.png │ ├── icon_effect_left.png │ ├── icon_effect_right.png │ ├── icon_film_left.png │ ├── icon_film_right.png │ └── icon_record_label.png ├── menu │ └── app_main.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src ├── android └── xml │ └── plist │ ├── BaseXMLParser.java │ ├── PListXMLBase64.java │ ├── PListXMLConstants.java │ ├── PListXMLHandler.java │ ├── PListXMLParser.java │ ├── PListXMLStringer.java │ └── domain │ ├── Array.java │ ├── Data.java │ ├── Date.java │ ├── Dict.java │ ├── False.java │ ├── IPListSimpleObject.java │ ├── Integer.java │ ├── PList.java │ ├── PListObject.java │ ├── PListObjectType.java │ ├── Real.java │ ├── String.java │ └── True.java └── com └── android ├── nxhttp ├── NXHttpFormRequest.java ├── NXHttpQueue.java ├── NXHttpQueueListener.java ├── NXHttpRequest.java └── NXHttpRequestListener.java ├── nxsdk └── NXWorker.java ├── nxui ├── NXPageRoot.java ├── NXPageStack.java └── NXPageView.java └── video ├── AppMainActivity.java ├── camera └── EFCameraView.java ├── https ├── EFDownloadManager.java ├── EFEffectsManager.java └── EFRequestsManager.java ├── page ├── EFEditorPageView.java ├── EFEffectPageView.java ├── EFRecordPageView.java ├── effects │ └── EFEffectDataStructs.java └── widget │ ├── EFEffectFilmView.java │ ├── EFEffectItemView.java │ ├── EFEffectListView.java │ └── EFEffectOnlineView.java ├── tools ├── E4FunTool.java ├── EFBitmapManager.java ├── EFJsonBuilder.java ├── EFJsonParser.java └── EFPlistParser.java ├── views ├── EFBlinkView.java ├── EFImageButton.java ├── EFImageView.java ├── EFListView.java ├── EFPageView.java ├── EFPopTextView.java ├── EFProgressView.java ├── EFSliderView.java ├── EFSurfaceView.java └── EFTextButton.java └── worker ├── EFEditorWorker.java └── EFRecordWorker.java /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/.classpath -------------------------------------------------------------------------------- /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/.cproject -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidVideo.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/AndroidVideo.iml -------------------------------------------------------------------------------- /assets/e4fun/caches/006038C2D1DAEBFA26FC59102F4EF220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/caches/006038C2D1DAEBFA26FC59102F4EF220.png -------------------------------------------------------------------------------- /assets/e4fun/caches/E0C521D353952559DAC35FE172B389AD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/caches/E0C521D353952559DAC35FE172B389AD.png -------------------------------------------------------------------------------- /assets/e4fun/caches/F6FDE122FA24E6A4DF5A10F9A41DF4AC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/caches/F6FDE122FA24E6A4DF5A10F9A41DF4AC.png -------------------------------------------------------------------------------- /assets/e4fun/effects/457A69B2AC53F0FE7E19965B74169232/baozha.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/457A69B2AC53F0FE7E19965B74169232/baozha.mp3 -------------------------------------------------------------------------------- /assets/e4fun/effects/457A69B2AC53F0FE7E19965B74169232/baozha.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/457A69B2AC53F0FE7E19965B74169232/baozha.plist -------------------------------------------------------------------------------- /assets/e4fun/effects/457A69B2AC53F0FE7E19965B74169232/baozha.pvr.ccz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/457A69B2AC53F0FE7E19965B74169232/baozha.pvr.ccz -------------------------------------------------------------------------------- /assets/e4fun/effects/457A69B2AC53F0FE7E19965B74169232/effect.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/457A69B2AC53F0FE7E19965B74169232/effect.plist -------------------------------------------------------------------------------- /assets/e4fun/effects/E16CF7CE249C579A1336731026708CF3/bingdong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/E16CF7CE249C579A1336731026708CF3/bingdong.mp3 -------------------------------------------------------------------------------- /assets/e4fun/effects/E16CF7CE249C579A1336731026708CF3/bingdong.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/E16CF7CE249C579A1336731026708CF3/bingdong.plist -------------------------------------------------------------------------------- /assets/e4fun/effects/E16CF7CE249C579A1336731026708CF3/bingdong.pvr.ccz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/E16CF7CE249C579A1336731026708CF3/bingdong.pvr.ccz -------------------------------------------------------------------------------- /assets/e4fun/effects/E16CF7CE249C579A1336731026708CF3/effect.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/E16CF7CE249C579A1336731026708CF3/effect.plist -------------------------------------------------------------------------------- /assets/e4fun/effects/F37A49E9451271022B69684C672F1676/effect.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/F37A49E9451271022B69684C672F1676/effect.plist -------------------------------------------------------------------------------- /assets/e4fun/effects/F37A49E9451271022B69684C672F1676/start1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/F37A49E9451271022B69684C672F1676/start1.plist -------------------------------------------------------------------------------- /assets/e4fun/effects/F37A49E9451271022B69684C672F1676/start2.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/F37A49E9451271022B69684C672F1676/start2.plist -------------------------------------------------------------------------------- /assets/e4fun/effects/F37A49E9451271022B69684C672F1676/start3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/F37A49E9451271022B69684C672F1676/start3.plist -------------------------------------------------------------------------------- /assets/e4fun/effects/F37A49E9451271022B69684C672F1676/start4.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/effects/F37A49E9451271022B69684C672F1676/start4.plist -------------------------------------------------------------------------------- /assets/e4fun/filters/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/filters/1.png -------------------------------------------------------------------------------- /assets/e4fun/filters/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/filters/2.png -------------------------------------------------------------------------------- /assets/e4fun/filters/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/filters/3.png -------------------------------------------------------------------------------- /assets/e4fun/filters/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/filters/4.png -------------------------------------------------------------------------------- /assets/e4fun/filters/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/filters/6.png -------------------------------------------------------------------------------- /assets/e4fun/filters/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/filters/7.png -------------------------------------------------------------------------------- /assets/e4fun/filters/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/filters/8.png -------------------------------------------------------------------------------- /assets/e4fun/filters/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/filters/9.png -------------------------------------------------------------------------------- /assets/e4fun/https/http_content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/https/http_content.txt -------------------------------------------------------------------------------- /assets/e4fun/icons/icon_effect_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/icons/icon_effect_delete.png -------------------------------------------------------------------------------- /assets/e4fun/icons/icon_effect_rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/icons/icon_effect_rotate.png -------------------------------------------------------------------------------- /assets/e4fun/icons/icon_effect_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/assets/e4fun/icons/icon_effect_scale.png -------------------------------------------------------------------------------- /bin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/AndroidManifest.xml -------------------------------------------------------------------------------- /bin/classes/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android-support-v4.jar -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/BaseXMLParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/BaseXMLParser.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/PListXMLBase64.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/PListXMLBase64.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/PListXMLConstants.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/PListXMLConstants.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/PListXMLHandler$PListParserListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/PListXMLHandler$PListParserListener.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/PListXMLHandler$ParseMode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/PListXMLHandler$ParseMode.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/PListXMLHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/PListXMLHandler.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/PListXMLParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/PListXMLParser.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/PListXMLStringer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/PListXMLStringer.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/Array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/Array.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/Data.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/Data.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/Date.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/Date.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/Dict.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/Dict.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/False.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/False.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/IPListSimpleObject.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/IPListSimpleObject.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/Integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/Integer.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/PList.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/PList.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/PListObject.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/PListObject.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/PListObjectType.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/PListObjectType.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/Real.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/Real.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/String.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/String.class -------------------------------------------------------------------------------- /bin/classes/android/xml/plist/domain/True.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/android/xml/plist/domain/True.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxhttp/NXHttpFormRequest$NXHttpFormField.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxhttp/NXHttpFormRequest$NXHttpFormField.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxhttp/NXHttpFormRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxhttp/NXHttpFormRequest.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxhttp/NXHttpQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxhttp/NXHttpQueue.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxhttp/NXHttpQueueListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxhttp/NXHttpQueueListener.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxhttp/NXHttpRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxhttp/NXHttpRequest.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxhttp/NXHttpRequestListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxhttp/NXHttpRequestListener.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxsdk/NXWorker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxsdk/NXWorker.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxui/NXPageRoot.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxui/NXPageRoot.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxui/NXPageStack.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxui/NXPageStack.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxui/NXPageView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxui/NXPageView$1.class -------------------------------------------------------------------------------- /bin/classes/com/android/nxui/NXPageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/nxui/NXPageView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/AppMainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/AppMainActivity.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/BuildConfig.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/R$menu.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/R.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/camera/EFCameraView$EFCameraViewListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/camera/EFCameraView$EFCameraViewListener.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/camera/EFCameraView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/camera/EFCameraView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFDownloadManager$EFDownloadListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFDownloadManager$EFDownloadListener.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFDownloadManager$EFDownloadMission.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFDownloadManager$EFDownloadMission.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFDownloadManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFDownloadManager.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFEffectsManager$EFEffectDownMission.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFEffectsManager$EFEffectDownMission.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFEffectsManager$EFEffectsListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFEffectsManager$EFEffectsListener.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFEffectsManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFEffectsManager.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFRequestsManager$EFRequest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFRequestsManager$EFRequest.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFRequestsManager$EFRequestsListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFRequestsManager$EFRequestsListener.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/https/EFRequestsManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/https/EFRequestsManager.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/EFEditorPageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/EFEditorPageView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/EFEffectPageView$EFEffectPageListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/EFEffectPageView$EFEffectPageListener.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/EFEffectPageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/EFEffectPageView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/EFRecordPageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/EFRecordPageView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/effects/EFEffectDataStructs$EFEffectDataItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/effects/EFEffectDataStructs$EFEffectDataItem.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/effects/EFEffectDataStructs.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/effects/EFEffectDataStructs.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/widget/EFEffectFilmView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/widget/EFEffectFilmView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/widget/EFEffectItemView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/widget/EFEffectItemView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/widget/EFEffectListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/widget/EFEffectListView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/widget/EFEffectOnlineView$EffectItemListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/widget/EFEffectOnlineView$EffectItemListener.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/page/widget/EFEffectOnlineView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/page/widget/EFEffectOnlineView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/tools/E4FunTool$1CpuFilter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/tools/E4FunTool$1CpuFilter.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/tools/E4FunTool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/tools/E4FunTool.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/tools/EFBitmapManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/tools/EFBitmapManager.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/tools/EFJsonBuilder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/tools/EFJsonBuilder.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/tools/EFJsonParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/tools/EFJsonParser.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/tools/EFPlistParser.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/tools/EFPlistParser.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFBlinkView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFBlinkView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFImageButton$EFButtonStatus.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFImageButton$EFButtonStatus.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFImageButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFImageButton.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFImageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFImageView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFListView$EFListDataSource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFListView$EFListDataSource.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFListView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFListView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFPageView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFPageView$1.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFPageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFPageView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFPopTextView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFPopTextView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFProgressView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFProgressView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFSliderView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFSliderView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFSurfaceView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFSurfaceView.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/views/EFTextButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/views/EFTextButton.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/worker/EFEditorWorker$EFEditorWorkerProgress.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/worker/EFEditorWorker$EFEditorWorkerProgress.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/worker/EFEditorWorker$EFExtractWorkerProgress.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/worker/EFEditorWorker$EFExtractWorkerProgress.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/worker/EFEditorWorker$EFPlayerWorkerProgress.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/worker/EFEditorWorker$EFPlayerWorkerProgress.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/worker/EFEditorWorker$EFRenderWorkerProgress.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/worker/EFEditorWorker$EFRenderWorkerProgress.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/worker/EFEditorWorker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/worker/EFEditorWorker.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/worker/EFRecordWorker$EFBuildrWorkerProgress.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/worker/EFRecordWorker$EFBuildrWorkerProgress.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/worker/EFRecordWorker$EFRecordWorkerProgress.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/worker/EFRecordWorker$EFRecordWorkerProgress.class -------------------------------------------------------------------------------- /bin/classes/com/android/video/worker/EFRecordWorker.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/com/android/video/worker/EFRecordWorker.class -------------------------------------------------------------------------------- /bin/classes/commons-httpclient-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/bin/classes/commons-httpclient-3.1.jar -------------------------------------------------------------------------------- /doc/特效组合结构JSON.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/doc/特效组合结构JSON.txt -------------------------------------------------------------------------------- /gen/com/android/video/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/gen/com/android/video/BuildConfig.java -------------------------------------------------------------------------------- /gen/com/android/video/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/gen/com/android/video/R.java -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /jars/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jars/android-support-v4.jar -------------------------------------------------------------------------------- /jars/commons-httpclient-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jars/commons-httpclient-3.1.jar -------------------------------------------------------------------------------- /jni/ALGTHM/ALGTHM.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/ALGTHM/ALGTHM.mk -------------------------------------------------------------------------------- /jni/ALGTHM/EFALGSaliency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/ALGTHM/EFALGSaliency.cpp -------------------------------------------------------------------------------- /jni/ALGTHM/EFALGSaliency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/ALGTHM/EFALGSaliency.h -------------------------------------------------------------------------------- /jni/ALGTHM/EFALGTracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/ALGTHM/EFALGTracker.cpp -------------------------------------------------------------------------------- /jni/ALGTHM/EFALGTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/ALGTHM/EFALGTracker.h -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/Application.mk -------------------------------------------------------------------------------- /jni/COCOS2DX/CCCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/CCCamera.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/CCCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/CCCamera.h -------------------------------------------------------------------------------- /jni/COCOS2DX/CCConfiguration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/CCConfiguration.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/CCConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/CCConfiguration.h -------------------------------------------------------------------------------- /jni/COCOS2DX/CCDirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/CCDirector.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/CCDirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/CCDirector.h -------------------------------------------------------------------------------- /jni/COCOS2DX/CCScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/CCScheduler.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/CCScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/CCScheduler.h -------------------------------------------------------------------------------- /jni/COCOS2DX/COCOS2DX.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/COCOS2DX.mk -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCAction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCAction.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCAction.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionCamera.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionCamera.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionCatmullRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionCatmullRom.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionCatmullRom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionCatmullRom.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionEase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionEase.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionEase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionEase.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionGrid.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionGrid.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionGrid3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionGrid3D.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionGrid3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionGrid3D.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionInstant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionInstant.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionInstant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionInstant.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionInterval.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionInterval.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionInterval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionInterval.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionManager.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionManager.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionPageTurn3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionPageTurn3D.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionPageTurn3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionPageTurn3D.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionProgressTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionProgressTimer.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionProgressTimer.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionTiledGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionTiledGrid.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionTiledGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionTiledGrid.h -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionTween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionTween.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/actions/CCActionTween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/actions/CCActionTween.h -------------------------------------------------------------------------------- /jni/COCOS2DX/base_nodes/CCAtlasNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/base_nodes/CCAtlasNode.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/base_nodes/CCAtlasNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/base_nodes/CCAtlasNode.h -------------------------------------------------------------------------------- /jni/COCOS2DX/base_nodes/CCGLBufferedNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/base_nodes/CCGLBufferedNode.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/base_nodes/CCGLBufferedNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/base_nodes/CCGLBufferedNode.h -------------------------------------------------------------------------------- /jni/COCOS2DX/base_nodes/CCNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/base_nodes/CCNode.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/base_nodes/CCNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/base_nodes/CCNode.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCAffineTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCAffineTransform.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCAffineTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCAffineTransform.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCArray.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCArray.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCAutoreleasePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCAutoreleasePool.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCAutoreleasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCAutoreleasePool.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCBool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCBool.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCDataVisitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCDataVisitor.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCDataVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCDataVisitor.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCDictionary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCDictionary.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCDictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCDictionary.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCDouble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCDouble.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCFloat.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCGeometry.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCGeometry.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCInteger.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCNS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCNS.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCNS.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCNumber.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCObject.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCObject.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCSet.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCSet.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCString.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCString.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCZone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCZone.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/cocoa/CCZone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocoa/CCZone.h -------------------------------------------------------------------------------- /jni/COCOS2DX/cocos2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/cocos2d.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/draw_nodes/CCDrawNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/draw_nodes/CCDrawNode.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/draw_nodes/CCDrawNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/draw_nodes/CCDrawNode.h -------------------------------------------------------------------------------- /jni/COCOS2DX/draw_nodes/CCDrawingPrimitives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/draw_nodes/CCDrawingPrimitives.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/draw_nodes/CCDrawingPrimitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/draw_nodes/CCDrawingPrimitives.h -------------------------------------------------------------------------------- /jni/COCOS2DX/effects/CCGrabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/effects/CCGrabber.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/effects/CCGrabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/effects/CCGrabber.h -------------------------------------------------------------------------------- /jni/COCOS2DX/effects/CCGrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/effects/CCGrid.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/effects/CCGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/effects/CCGrid.h -------------------------------------------------------------------------------- /jni/COCOS2DX/include/CCEventType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/include/CCEventType.h -------------------------------------------------------------------------------- /jni/COCOS2DX/include/CCProtocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/include/CCProtocols.h -------------------------------------------------------------------------------- /jni/COCOS2DX/include/ccConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/include/ccConfig.h -------------------------------------------------------------------------------- /jni/COCOS2DX/include/ccMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/include/ccMacros.h -------------------------------------------------------------------------------- /jni/COCOS2DX/include/ccTypeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/include/ccTypeInfo.h -------------------------------------------------------------------------------- /jni/COCOS2DX/include/ccTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/include/ccTypes.h -------------------------------------------------------------------------------- /jni/COCOS2DX/include/cocos2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/include/cocos2d.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/GL/mat4stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/GL/mat4stack.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/GL/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/GL/matrix.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/aabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/aabb.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/kazmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/kazmath.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/mat3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/mat3.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/mat4.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/neon_matrix_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/neon_matrix_impl.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/plane.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/quaternion.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/ray2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/ray2.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/utility.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/vec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/vec2.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/vec3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/vec3.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/include/kazmath/vec4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/include/kazmath/vec4.h -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/CMakeLists.txt -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/ChangeLog -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/GL/mat4stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/GL/mat4stack.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/GL/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/GL/matrix.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/aabb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/aabb.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/mat3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/mat3.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/mat4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/mat4.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/neon_matrix_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/neon_matrix_impl.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/plane.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/plane.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/quaternion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/quaternion.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/ray2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/ray2.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/utility.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/utility.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/vec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/vec2.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/vec3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/vec3.c -------------------------------------------------------------------------------- /jni/COCOS2DX/kazmath/src/vec4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/kazmath/src/vec4.c -------------------------------------------------------------------------------- /jni/COCOS2DX/keypad_dispatcher/CCKeypadDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/keypad_dispatcher/CCKeypadDelegate.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/keypad_dispatcher/CCKeypadDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/keypad_dispatcher/CCKeypadDelegate.h -------------------------------------------------------------------------------- /jni/COCOS2DX/keypad_dispatcher/CCKeypadDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/keypad_dispatcher/CCKeypadDispatcher.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/keypad_dispatcher/CCKeypadDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/keypad_dispatcher/CCKeypadDispatcher.h -------------------------------------------------------------------------------- /jni/COCOS2DX/label_nodes/CCLabelAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/label_nodes/CCLabelAtlas.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/label_nodes/CCLabelAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/label_nodes/CCLabelAtlas.h -------------------------------------------------------------------------------- /jni/COCOS2DX/label_nodes/CCLabelBMFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/label_nodes/CCLabelBMFont.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/label_nodes/CCLabelBMFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/label_nodes/CCLabelBMFont.h -------------------------------------------------------------------------------- /jni/COCOS2DX/label_nodes/CCLabelTTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/label_nodes/CCLabelTTF.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/label_nodes/CCLabelTTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/label_nodes/CCLabelTTF.h -------------------------------------------------------------------------------- /jni/COCOS2DX/menu_nodes/CCMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/menu_nodes/CCMenu.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/menu_nodes/CCMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/menu_nodes/CCMenu.h -------------------------------------------------------------------------------- /jni/COCOS2DX/menu_nodes/CCMenuItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/menu_nodes/CCMenuItem.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/menu_nodes/CCMenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/menu_nodes/CCMenuItem.h -------------------------------------------------------------------------------- /jni/COCOS2DX/misc_nodes/CCClippingNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/misc_nodes/CCClippingNode.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/misc_nodes/CCClippingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/misc_nodes/CCClippingNode.h -------------------------------------------------------------------------------- /jni/COCOS2DX/misc_nodes/CCMotionStreak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/misc_nodes/CCMotionStreak.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/misc_nodes/CCMotionStreak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/misc_nodes/CCMotionStreak.h -------------------------------------------------------------------------------- /jni/COCOS2DX/misc_nodes/CCProgressTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/misc_nodes/CCProgressTimer.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/misc_nodes/CCProgressTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/misc_nodes/CCProgressTimer.h -------------------------------------------------------------------------------- /jni/COCOS2DX/misc_nodes/CCRenderTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/misc_nodes/CCRenderTexture.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/misc_nodes/CCRenderTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/misc_nodes/CCRenderTexture.h -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/CCParticleBatchNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/CCParticleBatchNode.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/CCParticleBatchNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/CCParticleBatchNode.h -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/CCParticleExamples.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/CCParticleExamples.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/CCParticleExamples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/CCParticleExamples.h -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/CCParticleSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/CCParticleSystem.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/CCParticleSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/CCParticleSystem.h -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/CCParticleSystemQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/CCParticleSystemQuad.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/CCParticleSystemQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/CCParticleSystemQuad.h -------------------------------------------------------------------------------- /jni/COCOS2DX/particle_nodes/firePngData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/particle_nodes/firePngData.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCAccelerometerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCAccelerometerDelegate.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCApplicationProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCApplicationProtocol.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCCommon.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCDevice.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCEGLViewProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCEGLViewProtocol.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCEGLViewProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCEGLViewProtocol.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCFileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCFileUtils.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCFileUtils.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCImage.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCImageCommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCImageCommon.hpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCPlatformConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCPlatformConfig.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCPlatformMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCPlatformMacros.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCSAXParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCSAXParser.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCSAXParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCSAXParser.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCThread.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/CCThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/CCThread.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCAccelerometer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCAccelerometer.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCAccelerometer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCAccelerometer.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCApplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCApplication.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCApplication.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCCommon.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCDevice.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCEGLView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCEGLView.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCEGLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCEGLView.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCFileUtilsAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCFileUtilsAndroid.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCFileUtilsAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCFileUtilsAndroid.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCGL.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCImage.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCPlatformDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCPlatformDefine.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/android/CCStdC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/android/CCStdC.h -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/platform.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/platform/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/platform/platform.h -------------------------------------------------------------------------------- /jni/COCOS2DX/scene_node/CCLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/scene_node/CCLayer.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/scene_node/CCLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/scene_node/CCLayer.h -------------------------------------------------------------------------------- /jni/COCOS2DX/scene_node/CCScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/scene_node/CCScene.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/scene_node/CCScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/scene_node/CCScene.h -------------------------------------------------------------------------------- /jni/COCOS2DX/script_support/CCScriptSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/script_support/CCScriptSupport.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/script_support/CCScriptSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/script_support/CCScriptSupport.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/CCGLProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/CCGLProgram.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/CCGLProgram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/CCGLProgram.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/CCShaderCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/CCShaderCache.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/CCShaderCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/CCShaderCache.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccGLStateCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccGLStateCache.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccGLStateCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccGLStateCache.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShaderEx_SwitchMask_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShaderEx_SwitchMask_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionColorLengthTexture_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionColorLengthTexture_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionColorLengthTexture_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionColorLengthTexture_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionColor_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionColor_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionColor_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionColor_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureA8Color_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureA8Color_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureA8Color_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureA8Color_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureColorAlphaTest_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureColorAlphaTest_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureColorNV12_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureColorNV12_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureColorNV12_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureColorNV12_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureColorNV21_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureColorNV21_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureColorNV21_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureColorNV21_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureColor_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureColor_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTextureColor_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTextureColor_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTexture_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTexture_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTexture_uColor_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTexture_uColor_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTexture_uColor_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTexture_uColor_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_PositionTexture_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_PositionTexture_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_Position_uColor_frag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_Position_uColor_frag.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShader_Position_uColor_vert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShader_Position_uColor_vert.h -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShaders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShaders.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/shaders/ccShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/shaders/ccShaders.h -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCAnimation.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCAnimation.h -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCAnimationCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCAnimationCache.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCAnimationCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCAnimationCache.h -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCSprite.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCSprite.h -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCSpriteBatchNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCSpriteBatchNode.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCSpriteBatchNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCSpriteBatchNode.h -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCSpriteFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCSpriteFrame.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCSpriteFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCSpriteFrame.h -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCSpriteFrameCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCSpriteFrameCache.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/sprite_nodes/CCSpriteFrameCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/sprite_nodes/CCSpriteFrameCache.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/CCNotificationCenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/CCNotificationCenter.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/CCNotificationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/CCNotificationCenter.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/CCPointExtension.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/CCPointExtension.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/CCPointExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/CCPointExtension.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/CCProfiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/CCProfiling.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/CCProfiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/CCProfiling.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/CCVertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/CCVertex.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/CCVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/CCVertex.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/TransformUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/TransformUtils.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/TransformUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/TransformUtils.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/base64.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/base64.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/ccUTF8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/ccUTF8.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/ccUTF8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/ccUTF8.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/ccUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/ccUtils.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/ccUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/ccUtils.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/component/CCComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/component/CCComponent.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/component/CCComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/component/CCComponent.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/component/CCComponentContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/component/CCComponentContainer.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/component/CCComponentContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/component/CCComponentContainer.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/data_support/ccCArray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/data_support/ccCArray.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/data_support/ccCArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/data_support/ccCArray.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/data_support/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/data_support/uthash.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/data_support/utlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/data_support/utlist.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/image_support/TGAlib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/image_support/TGAlib.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/image_support/TGAlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/image_support/TGAlib.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/zip_support/ZipUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/zip_support/ZipUtils.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/zip_support/ZipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/zip_support/ZipUtils.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/zip_support/ioapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/zip_support/ioapi.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/zip_support/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/zip_support/ioapi.h -------------------------------------------------------------------------------- /jni/COCOS2DX/support/zip_support/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/zip_support/unzip.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/support/zip_support/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/support/zip_support/unzip.h -------------------------------------------------------------------------------- /jni/COCOS2DX/text_input_node/CCIMEDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/text_input_node/CCIMEDelegate.h -------------------------------------------------------------------------------- /jni/COCOS2DX/text_input_node/CCIMEDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/text_input_node/CCIMEDispatcher.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/text_input_node/CCIMEDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/text_input_node/CCIMEDispatcher.h -------------------------------------------------------------------------------- /jni/COCOS2DX/text_input_node/CCTextFieldTTF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/text_input_node/CCTextFieldTTF.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/text_input_node/CCTextFieldTTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/text_input_node/CCTextFieldTTF.h -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTexture2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTexture2D.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTexture2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTexture2D.h -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTextureAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTextureAtlas.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTextureAtlas.h -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTextureCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTextureCache.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTextureCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTextureCache.h -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTextureETC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTextureETC.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTextureETC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTextureETC.h -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTexturePVR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTexturePVR.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/textures/CCTexturePVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/textures/CCTexturePVR.h -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCParallaxNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCParallaxNode.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCParallaxNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCParallaxNode.h -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTMXLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTMXLayer.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTMXLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTMXLayer.h -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTMXObjectGroup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTMXObjectGroup.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTMXObjectGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTMXObjectGroup.h -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTMXTiledMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTMXTiledMap.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTMXTiledMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTMXTiledMap.h -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTMXXMLParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTMXXMLParser.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTMXXMLParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTMXXMLParser.h -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTileMapAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTileMapAtlas.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/tilemap_parallax_nodes/CCTileMapAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/tilemap_parallax_nodes/CCTileMapAtlas.h -------------------------------------------------------------------------------- /jni/COCOS2DX/touch_dispatcher/CCTouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/touch_dispatcher/CCTouch.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/touch_dispatcher/CCTouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/touch_dispatcher/CCTouch.h -------------------------------------------------------------------------------- /jni/COCOS2DX/touch_dispatcher/CCTouchDelegateProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/touch_dispatcher/CCTouchDelegateProtocol.h -------------------------------------------------------------------------------- /jni/COCOS2DX/touch_dispatcher/CCTouchDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/touch_dispatcher/CCTouchDispatcher.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/touch_dispatcher/CCTouchDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/touch_dispatcher/CCTouchDispatcher.h -------------------------------------------------------------------------------- /jni/COCOS2DX/touch_dispatcher/CCTouchHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/touch_dispatcher/CCTouchHandler.cpp -------------------------------------------------------------------------------- /jni/COCOS2DX/touch_dispatcher/CCTouchHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/COCOS2DX/touch_dispatcher/CCTouchHandler.h -------------------------------------------------------------------------------- /jni/LEAKER/LEAKER.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LEAKER/LEAKER.mk -------------------------------------------------------------------------------- /jni/LEAKER/leaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LEAKER/leaker.cpp -------------------------------------------------------------------------------- /jni/LEAKER/leaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LEAKER/leaker.h -------------------------------------------------------------------------------- /jni/LIBJSON/LIBJSON.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/LIBJSON.mk -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/assertions.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/autolink.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/config.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/features.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/forwards.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/json.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/json_tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/json_tool.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/reader.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/value.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/version.h -------------------------------------------------------------------------------- /jni/LIBJSON/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/include/json/writer.h -------------------------------------------------------------------------------- /jni/LIBJSON/src/json_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/src/json_reader.cpp -------------------------------------------------------------------------------- /jni/LIBJSON/src/json_value.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/src/json_value.cpp -------------------------------------------------------------------------------- /jni/LIBJSON/src/json_valueiterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/src/json_valueiterator.hpp -------------------------------------------------------------------------------- /jni/LIBJSON/src/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBJSON/src/json_writer.cpp -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/curl.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/curlbuild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/curlbuild.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/curlrules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/curlrules.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/curlver.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/easy.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/mprintf.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/multi.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /jni/LIBRARY/curl/include/curl/types.h: -------------------------------------------------------------------------------- 1 | /* not used */ 2 | -------------------------------------------------------------------------------- /jni/LIBRARY/curl/lib/armeabi-v7a/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/lib/armeabi-v7a/libcurl.a -------------------------------------------------------------------------------- /jni/LIBRARY/curl/lib/armeabi/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/lib/armeabi/libcurl.a -------------------------------------------------------------------------------- /jni/LIBRARY/curl/lib/x86/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/curl/lib/x86/libcurl.a -------------------------------------------------------------------------------- /jni/LIBRARY/fdkaac/include/fdk-aac/FDK_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/fdkaac/include/fdk-aac/FDK_audio.h -------------------------------------------------------------------------------- /jni/LIBRARY/fdkaac/include/fdk-aac/aacdecoder_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/fdkaac/include/fdk-aac/aacdecoder_lib.h -------------------------------------------------------------------------------- /jni/LIBRARY/fdkaac/include/fdk-aac/aacenc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/fdkaac/include/fdk-aac/aacenc_lib.h -------------------------------------------------------------------------------- /jni/LIBRARY/fdkaac/include/fdk-aac/genericStds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/fdkaac/include/fdk-aac/genericStds.h -------------------------------------------------------------------------------- /jni/LIBRARY/fdkaac/include/fdk-aac/machine_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/fdkaac/include/fdk-aac/machine_type.h -------------------------------------------------------------------------------- /jni/LIBRARY/fdkaac/lib/arm/libfdk-aac.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/fdkaac/lib/arm/libfdk-aac.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/old_codec_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/old_codec_ids.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/vda.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavdevice/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavfilter/asrc_abuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavfilter/asrc_abuffer.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavfilter/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavfilter/avcodec.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavfilter/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavformat/avformat.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavformat/avio.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavformat/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavresample/avresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavresample/avresample.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavresample/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/adler32.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/aes.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/attributes.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/audioconvert.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/avassert.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/avstring.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/avutil.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/base64.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/bprint.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/bswap.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/buffer.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/camellia.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/cast5.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/common.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/cpu.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/crc.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/dict.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/display.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/error.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/eval.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/fifo.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/file.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/frame.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/hash.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/hmac.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/lfg.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/log.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/lzo.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/macros.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/md5.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/mem.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/old_pix_fmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/old_pix_fmts.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/opt.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/rational.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/sha.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/sha512.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/time.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/timecode.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/twofish.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libavutil/xtea.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libpostproc/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libswresample/swresample.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libswresample/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libswscale/swscale.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/include/libswscale/version.h -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libavcodec.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libavdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libavdevice.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libavfilter.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libavformat.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libavresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libavresample.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libavutil.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libpostproc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libpostproc.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libswresample.a -------------------------------------------------------------------------------- /jni/LIBRARY/ffmpeg/lib/arm/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/ffmpeg/lib/arm/libswscale.a -------------------------------------------------------------------------------- /jni/LIBRARY/jpeg/include/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/jpeg/include/jconfig.h -------------------------------------------------------------------------------- /jni/LIBRARY/jpeg/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/jpeg/include/jerror.h -------------------------------------------------------------------------------- /jni/LIBRARY/jpeg/include/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/jpeg/include/jmorecfg.h -------------------------------------------------------------------------------- /jni/LIBRARY/jpeg/include/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/jpeg/include/jpeglib.h -------------------------------------------------------------------------------- /jni/LIBRARY/jpeg/lib/arm/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/jpeg/lib/arm/libjpeg.a -------------------------------------------------------------------------------- /jni/LIBRARY/jpeg/lib/armeabi/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/jpeg/lib/armeabi/libjpeg.a -------------------------------------------------------------------------------- /jni/LIBRARY/jpeg/lib/x86/libjpeg.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/jpeg/lib/x86/libjpeg.a -------------------------------------------------------------------------------- /jni/LIBRARY/png/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/png/include/png.h -------------------------------------------------------------------------------- /jni/LIBRARY/png/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/png/include/pngconf.h -------------------------------------------------------------------------------- /jni/LIBRARY/png/include/pngusr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/png/include/pngusr.h -------------------------------------------------------------------------------- /jni/LIBRARY/png/lib/arm/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/png/lib/arm/libpng.a -------------------------------------------------------------------------------- /jni/LIBRARY/png/lib/armeabi/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/png/lib/armeabi/libpng.a -------------------------------------------------------------------------------- /jni/LIBRARY/png/lib/x86/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/png/lib/x86/libpng.a -------------------------------------------------------------------------------- /jni/LIBRARY/tiff/include/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/tiff/include/tiff.h -------------------------------------------------------------------------------- /jni/LIBRARY/tiff/include/tiffconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/tiff/include/tiffconf.h -------------------------------------------------------------------------------- /jni/LIBRARY/tiff/include/tiffio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/tiff/include/tiffio.h -------------------------------------------------------------------------------- /jni/LIBRARY/tiff/include/tiffvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/tiff/include/tiffvers.h -------------------------------------------------------------------------------- /jni/LIBRARY/tiff/lib/arm/libtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/tiff/lib/arm/libtiff.a -------------------------------------------------------------------------------- /jni/LIBRARY/tiff/lib/armeabi/libtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/tiff/lib/armeabi/libtiff.a -------------------------------------------------------------------------------- /jni/LIBRARY/tiff/lib/x86/libtiff.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/tiff/lib/x86/libtiff.a -------------------------------------------------------------------------------- /jni/LIBRARY/x264/include/x264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/x264/include/x264.h -------------------------------------------------------------------------------- /jni/LIBRARY/x264/include/x264_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/x264/include/x264_config.h -------------------------------------------------------------------------------- /jni/LIBRARY/x264/lib/arm/libx264.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/LIBRARY/x264/lib/arm/libx264.a -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCContext.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCContext.h -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCDirector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCDirector.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCDirector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCDirector.h -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCNode.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCNode.h -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCShareNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCShareNode.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCShareNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCShareNode.h -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCSprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCSprite.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCSprite.h -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCSpriteNV12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCSpriteNV12.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXCC/NXCCSpriteNV12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXCC/NXCCSpriteNV12.h -------------------------------------------------------------------------------- /jni/NXSDK/NXFF/NXFFADef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXFF/NXFFADef.h -------------------------------------------------------------------------------- /jni/NXSDK/NXFF/NXFFAWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXFF/NXFFAWriter.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXFF/NXFFAWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXFF/NXFFAWriter.h -------------------------------------------------------------------------------- /jni/NXSDK/NXFF/NXFFSReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXFF/NXFFSReader.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXFF/NXFFSReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXFF/NXFFSReader.h -------------------------------------------------------------------------------- /jni/NXSDK/NXFF/NXFFSWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXFF/NXFFSWriter.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXFF/NXFFSWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXFF/NXFFSWriter.h -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGL.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGL.h -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLCanvas.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLCanvas.h -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLContext.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLContext.h -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLDrawer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLDrawer.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLDrawer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLDrawer.h -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLMatrix.h -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLSurface.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLSurface.h -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLTrimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLTrimer.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXGL/NXGLTrimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXGL/NXGLTrimer.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXBuffer.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXBuffer.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXDef.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXEvent.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXEvent.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXFile.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXFile.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXFmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXFmt.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXKit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXKit.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXKit.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXLock.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXLock.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXPtr.hpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXThread.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXThread.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXThrottle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXThrottle.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXThrottle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXThrottle.h -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXTimer.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXKT/NXTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXKT/NXTimer.h -------------------------------------------------------------------------------- /jni/NXSDK/NXPL/NXWBPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXPL/NXWBPlayer.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXPL/NXWBPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXPL/NXWBPlayer.h -------------------------------------------------------------------------------- /jni/NXSDK/NXSDK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXSDK.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXSDK.h -------------------------------------------------------------------------------- /jni/NXSDK/NXSDK.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXSDK.mk -------------------------------------------------------------------------------- /jni/NXSDK/NXSL/NXSLRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXSL/NXSLRecorder.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXSL/NXSLRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXSL/NXSLRecorder.h -------------------------------------------------------------------------------- /jni/NXSDK/NXSL/NXSLSpeaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXSL/NXSLSpeaker.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXSL/NXSLSpeaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXSL/NXSLSpeaker.h -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMADef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMADef.h -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMAReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMAReader.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMAReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMAReader.h -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMAWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMAWriter.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMAWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMAWriter.h -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMSReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMSReader.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMSReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMSReader.h -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMSShoter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMSShoter.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMSShoter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMSShoter.h -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMSWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMSWriter.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXTM/NXTMSWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXTM/NXTMSWriter.h -------------------------------------------------------------------------------- /jni/NXSDK/NXWB/NXWorkbeach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXWB/NXWorkbeach.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXWB/NXWorkbeach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXWB/NXWorkbeach.h -------------------------------------------------------------------------------- /jni/NXSDK/NXXL/NXXLCapturer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXXL/NXXLCapturer.cpp -------------------------------------------------------------------------------- /jni/NXSDK/NXXL/NXXLCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/NXSDK/NXXL/NXXLCapturer.h -------------------------------------------------------------------------------- /jni/WORKER/EFBuilderMission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFBuilderMission.cpp -------------------------------------------------------------------------------- /jni/WORKER/EFBuilderMission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFBuilderMission.h -------------------------------------------------------------------------------- /jni/WORKER/EFEditorWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFEditorWorker.cpp -------------------------------------------------------------------------------- /jni/WORKER/EFEditorWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFEditorWorker.h -------------------------------------------------------------------------------- /jni/WORKER/EFEffectsLayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFEffectsLayer.cpp -------------------------------------------------------------------------------- /jni/WORKER/EFEffectsLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFEffectsLayer.h -------------------------------------------------------------------------------- /jni/WORKER/EFEffectsModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFEffectsModel.cpp -------------------------------------------------------------------------------- /jni/WORKER/EFEffectsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFEffectsModel.h -------------------------------------------------------------------------------- /jni/WORKER/EFExtractMission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFExtractMission.cpp -------------------------------------------------------------------------------- /jni/WORKER/EFExtractMission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFExtractMission.h -------------------------------------------------------------------------------- /jni/WORKER/EFRecordWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFRecordWorker.cpp -------------------------------------------------------------------------------- /jni/WORKER/EFRecordWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFRecordWorker.h -------------------------------------------------------------------------------- /jni/WORKER/EFRenderMission.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFRenderMission.cpp -------------------------------------------------------------------------------- /jni/WORKER/EFRenderMission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/EFRenderMission.h -------------------------------------------------------------------------------- /jni/WORKER/NXWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/NXWorker.cpp -------------------------------------------------------------------------------- /jni/WORKER/NXWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/NXWorker.h -------------------------------------------------------------------------------- /jni/WORKER/WORKER.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/jni/WORKER/WORKER.mk -------------------------------------------------------------------------------- /libs/armeabi-v7a/libWORKER.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/libs/armeabi-v7a/libWORKER.so -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/btn_addeff_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_addeff_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_addeff_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_addeff_select.png -------------------------------------------------------------------------------- /res/drawable/btn_backer_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_backer_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_backer_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_backer_select.png -------------------------------------------------------------------------------- /res/drawable/btn_confrm_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_confrm_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_confrm_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_confrm_select.png -------------------------------------------------------------------------------- /res/drawable/btn_delete_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_delete_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_delete_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_delete_select.png -------------------------------------------------------------------------------- /res/drawable/btn_filter_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_filter_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_filter_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_filter_select.png -------------------------------------------------------------------------------- /res/drawable/btn_import_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_import_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_import_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_import_select.png -------------------------------------------------------------------------------- /res/drawable/btn_player_paused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_player_paused.png -------------------------------------------------------------------------------- /res/drawable/btn_player_playing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_player_playing.png -------------------------------------------------------------------------------- /res/drawable/btn_record_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_record_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_record_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_record_select.png -------------------------------------------------------------------------------- /res/drawable/btn_render_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_render_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_render_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_render_select.png -------------------------------------------------------------------------------- /res/drawable/btn_reverse_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_reverse_normal.png -------------------------------------------------------------------------------- /res/drawable/btn_reverse_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_reverse_select.png -------------------------------------------------------------------------------- /res/drawable/btn_voice_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_voice_close.png -------------------------------------------------------------------------------- /res/drawable/btn_voice_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/btn_voice_open.png -------------------------------------------------------------------------------- /res/drawable/icon_draw_surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/icon_draw_surface.png -------------------------------------------------------------------------------- /res/drawable/icon_effect_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/icon_effect_left.png -------------------------------------------------------------------------------- /res/drawable/icon_effect_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/icon_effect_right.png -------------------------------------------------------------------------------- /res/drawable/icon_film_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/icon_film_left.png -------------------------------------------------------------------------------- /res/drawable/icon_film_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/icon_film_right.png -------------------------------------------------------------------------------- /res/drawable/icon_record_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/drawable/icon_record_label.png -------------------------------------------------------------------------------- /res/menu/app_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/menu/app_main.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/android/xml/plist/BaseXMLParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/BaseXMLParser.java -------------------------------------------------------------------------------- /src/android/xml/plist/PListXMLBase64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/PListXMLBase64.java -------------------------------------------------------------------------------- /src/android/xml/plist/PListXMLConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/PListXMLConstants.java -------------------------------------------------------------------------------- /src/android/xml/plist/PListXMLHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/PListXMLHandler.java -------------------------------------------------------------------------------- /src/android/xml/plist/PListXMLParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/PListXMLParser.java -------------------------------------------------------------------------------- /src/android/xml/plist/PListXMLStringer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/PListXMLStringer.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/Array.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/Array.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/Data.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/Data.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/Date.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/Date.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/Dict.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/Dict.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/False.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/False.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/IPListSimpleObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/IPListSimpleObject.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/Integer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/Integer.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/PList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/PList.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/PListObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/PListObject.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/PListObjectType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/PListObjectType.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/Real.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/Real.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/String.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/String.java -------------------------------------------------------------------------------- /src/android/xml/plist/domain/True.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/android/xml/plist/domain/True.java -------------------------------------------------------------------------------- /src/com/android/nxhttp/NXHttpFormRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/nxhttp/NXHttpFormRequest.java -------------------------------------------------------------------------------- /src/com/android/nxhttp/NXHttpQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/nxhttp/NXHttpQueue.java -------------------------------------------------------------------------------- /src/com/android/nxhttp/NXHttpQueueListener.java: -------------------------------------------------------------------------------- 1 | package com.android.nxhttp; 2 | 3 | public interface NXHttpQueueListener { 4 | 5 | } 6 | -------------------------------------------------------------------------------- /src/com/android/nxhttp/NXHttpRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/nxhttp/NXHttpRequest.java -------------------------------------------------------------------------------- /src/com/android/nxhttp/NXHttpRequestListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/nxhttp/NXHttpRequestListener.java -------------------------------------------------------------------------------- /src/com/android/nxsdk/NXWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/nxsdk/NXWorker.java -------------------------------------------------------------------------------- /src/com/android/nxui/NXPageRoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/nxui/NXPageRoot.java -------------------------------------------------------------------------------- /src/com/android/nxui/NXPageStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/nxui/NXPageStack.java -------------------------------------------------------------------------------- /src/com/android/nxui/NXPageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/nxui/NXPageView.java -------------------------------------------------------------------------------- /src/com/android/video/AppMainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/AppMainActivity.java -------------------------------------------------------------------------------- /src/com/android/video/camera/EFCameraView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/camera/EFCameraView.java -------------------------------------------------------------------------------- /src/com/android/video/https/EFDownloadManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/https/EFDownloadManager.java -------------------------------------------------------------------------------- /src/com/android/video/https/EFEffectsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/https/EFEffectsManager.java -------------------------------------------------------------------------------- /src/com/android/video/https/EFRequestsManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/https/EFRequestsManager.java -------------------------------------------------------------------------------- /src/com/android/video/page/EFEditorPageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/page/EFEditorPageView.java -------------------------------------------------------------------------------- /src/com/android/video/page/EFEffectPageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/page/EFEffectPageView.java -------------------------------------------------------------------------------- /src/com/android/video/page/EFRecordPageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/page/EFRecordPageView.java -------------------------------------------------------------------------------- /src/com/android/video/page/effects/EFEffectDataStructs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/page/effects/EFEffectDataStructs.java -------------------------------------------------------------------------------- /src/com/android/video/page/widget/EFEffectFilmView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/page/widget/EFEffectFilmView.java -------------------------------------------------------------------------------- /src/com/android/video/page/widget/EFEffectItemView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/page/widget/EFEffectItemView.java -------------------------------------------------------------------------------- /src/com/android/video/page/widget/EFEffectListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/page/widget/EFEffectListView.java -------------------------------------------------------------------------------- /src/com/android/video/page/widget/EFEffectOnlineView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/page/widget/EFEffectOnlineView.java -------------------------------------------------------------------------------- /src/com/android/video/tools/E4FunTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/tools/E4FunTool.java -------------------------------------------------------------------------------- /src/com/android/video/tools/EFBitmapManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/tools/EFBitmapManager.java -------------------------------------------------------------------------------- /src/com/android/video/tools/EFJsonBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/tools/EFJsonBuilder.java -------------------------------------------------------------------------------- /src/com/android/video/tools/EFJsonParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/tools/EFJsonParser.java -------------------------------------------------------------------------------- /src/com/android/video/tools/EFPlistParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/tools/EFPlistParser.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFBlinkView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFBlinkView.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFImageButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFImageButton.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFImageView.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFListView.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFPageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFPageView.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFPopTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFPopTextView.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFProgressView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFProgressView.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFSliderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFSliderView.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFSurfaceView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFSurfaceView.java -------------------------------------------------------------------------------- /src/com/android/video/views/EFTextButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/views/EFTextButton.java -------------------------------------------------------------------------------- /src/com/android/video/worker/EFEditorWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/worker/EFEditorWorker.java -------------------------------------------------------------------------------- /src/com/android/video/worker/EFRecordWorker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yangyk125/AndroidVideo/HEAD/src/com/android/video/worker/EFRecordWorker.java --------------------------------------------------------------------------------