├── Android.mk ├── AndroidManifest.xml ├── LICENSE ├── README.md ├── default.properties ├── jni ├── Android.mk ├── Application.mk ├── include │ ├── aosp-14 │ │ ├── bionic │ │ │ └── libc │ │ │ │ └── include │ │ │ │ ├── alloca.h │ │ │ │ ├── android │ │ │ │ └── api-level.h │ │ │ │ ├── arpa │ │ │ │ ├── inet.h │ │ │ │ ├── nameser.h │ │ │ │ └── telnet.h │ │ │ │ ├── assert.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── ctype.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── elf.h │ │ │ │ ├── endian.h │ │ │ │ ├── err.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── features.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── fts.h │ │ │ │ ├── getopt.h │ │ │ │ ├── grp.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── lastlog.h │ │ │ │ ├── libgen.h │ │ │ │ ├── limits.h │ │ │ │ ├── locale.h │ │ │ │ ├── malloc.h │ │ │ │ ├── memory.h │ │ │ │ ├── mntent.h │ │ │ │ ├── net │ │ │ │ ├── ethernet.h │ │ │ │ ├── ethertypes.h │ │ │ │ ├── if.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_dl.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── if_ieee1394.h │ │ │ │ ├── if_packet.h │ │ │ │ ├── if_types.h │ │ │ │ └── route.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netinet │ │ │ │ ├── ether.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── in.h │ │ │ │ ├── in6.h │ │ │ │ ├── in_systm.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip_icmp.h │ │ │ │ ├── tcp.h │ │ │ │ └── udp.h │ │ │ │ ├── netpacket │ │ │ │ └── packet.h │ │ │ │ ├── nsswitch.h │ │ │ │ ├── pathconf.h │ │ │ │ ├── paths.h │ │ │ │ ├── poll.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pwd.h │ │ │ │ ├── regex.h │ │ │ │ ├── resolv.h │ │ │ │ ├── sched.h │ │ │ │ ├── semaphore.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sgtty.h │ │ │ │ ├── sha1.h │ │ │ │ ├── signal.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── strings.h │ │ │ │ ├── sys │ │ │ │ ├── _errdefs.h │ │ │ │ ├── _sigdefs.h │ │ │ │ ├── _system_properties.h │ │ │ │ ├── _types.h │ │ │ │ ├── atomics.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── cdefs_elf.h │ │ │ │ ├── dirent.h │ │ │ │ ├── endian.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── exec_elf.h │ │ │ │ ├── file.h │ │ │ │ ├── fsuid.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctl_compat.h │ │ │ │ ├── ipc.h │ │ │ │ ├── klog.h │ │ │ │ ├── limits.h │ │ │ │ ├── linux-syscalls.h │ │ │ │ ├── linux-unistd.h │ │ │ │ ├── mman.h │ │ │ │ ├── mount.h │ │ │ │ ├── param.h │ │ │ │ ├── poll.h │ │ │ │ ├── prctl.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── queue.h │ │ │ │ ├── reboot.h │ │ │ │ ├── resource.h │ │ │ │ ├── select.h │ │ │ │ ├── sendfile.h │ │ │ │ ├── socket.h │ │ │ │ ├── socketcalls.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── syscall.h │ │ │ │ ├── sysconf.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── syslimits.h │ │ │ │ ├── sysmacros.h │ │ │ │ ├── system_properties.h │ │ │ │ ├── time.h │ │ │ │ ├── timeb.h │ │ │ │ ├── times.h │ │ │ │ ├── ttychars.h │ │ │ │ ├── ttydev.h │ │ │ │ ├── types.h │ │ │ │ ├── uio.h │ │ │ │ ├── un.h │ │ │ │ ├── utime.h │ │ │ │ ├── utsname.h │ │ │ │ ├── vfs.h │ │ │ │ ├── vt.h │ │ │ │ └── wait.h │ │ │ │ ├── syslog.h │ │ │ │ ├── termio.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── time64.h │ │ │ │ ├── unistd.h │ │ │ │ ├── util.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ ├── dalvik │ │ │ └── libnativehelper │ │ │ │ └── include │ │ │ │ └── nativehelper │ │ │ │ ├── JNIHelp.h │ │ │ │ └── jni.h │ │ ├── external │ │ │ └── skia │ │ │ │ └── include │ │ │ │ ├── animator │ │ │ │ ├── SkAnimator.h │ │ │ │ └── SkAnimatorView.h │ │ │ │ ├── config │ │ │ │ ├── SkUserConfig.h │ │ │ │ └── sk_stdint.h │ │ │ │ ├── core │ │ │ │ ├── Sk64.h │ │ │ │ ├── SkAdvancedTypefaceMetrics.h │ │ │ │ ├── SkAutoKern.h │ │ │ │ ├── SkBitmap.h │ │ │ │ ├── SkBlitRow.h │ │ │ │ ├── SkBlitter.h │ │ │ │ ├── SkBounder.h │ │ │ │ ├── SkBuffer.h │ │ │ │ ├── SkCanvas.h │ │ │ │ ├── SkChunkAlloc.h │ │ │ │ ├── SkClampRange.h │ │ │ │ ├── SkClipStack.h │ │ │ │ ├── SkColor.h │ │ │ │ ├── SkColorFilter.h │ │ │ │ ├── SkColorPriv.h │ │ │ │ ├── SkColorShader.h │ │ │ │ ├── SkComposeShader.h │ │ │ │ ├── SkDeque.h │ │ │ │ ├── SkDescriptor.h │ │ │ │ ├── SkDevice.h │ │ │ │ ├── SkDither.h │ │ │ │ ├── SkDraw.h │ │ │ │ ├── SkDrawFilter.h │ │ │ │ ├── SkDrawLooper.h │ │ │ │ ├── SkEdgeClipper.h │ │ │ │ ├── SkEndian.h │ │ │ │ ├── SkFDot6.h │ │ │ │ ├── SkFixed.h │ │ │ │ ├── SkFlate.h │ │ │ │ ├── SkFlattenable.h │ │ │ │ ├── SkFloatBits.h │ │ │ │ ├── SkFloatingPoint.h │ │ │ │ ├── SkFontHost.h │ │ │ │ ├── SkGeometry.h │ │ │ │ ├── SkGlobals.h │ │ │ │ ├── SkGraphics.h │ │ │ │ ├── SkLineClipper.h │ │ │ │ ├── SkMMapStream.h │ │ │ │ ├── SkMallocPixelRef.h │ │ │ │ ├── SkMask.h │ │ │ │ ├── SkMaskFilter.h │ │ │ │ ├── SkMath.h │ │ │ │ ├── SkMatrix.h │ │ │ │ ├── SkMetaData.h │ │ │ │ ├── SkOSFile.h │ │ │ │ ├── SkPackBits.h │ │ │ │ ├── SkPaint.h │ │ │ │ ├── SkPath.h │ │ │ │ ├── SkPathEffect.h │ │ │ │ ├── SkPathMeasure.h │ │ │ │ ├── SkPerspIter.h │ │ │ │ ├── SkPicture.h │ │ │ │ ├── SkPixelRef.h │ │ │ │ ├── SkPoint.h │ │ │ │ ├── SkPostConfig.h │ │ │ │ ├── SkPreConfig.h │ │ │ │ ├── SkPtrRecorder.h │ │ │ │ ├── SkRandom.h │ │ │ │ ├── SkRasterizer.h │ │ │ │ ├── SkReader32.h │ │ │ │ ├── SkRect.h │ │ │ │ ├── SkRefCnt.h │ │ │ │ ├── SkRefDict.h │ │ │ │ ├── SkRegion.h │ │ │ │ ├── SkRelay.h │ │ │ │ ├── SkScalar.h │ │ │ │ ├── SkScalarCompare.h │ │ │ │ ├── SkScalerContext.h │ │ │ │ ├── SkScan.h │ │ │ │ ├── SkShader.h │ │ │ │ ├── SkShape.h │ │ │ │ ├── SkSize.h │ │ │ │ ├── SkStream.h │ │ │ │ ├── SkString.h │ │ │ │ ├── SkStroke.h │ │ │ │ ├── SkTDArray.h │ │ │ │ ├── SkTDStack.h │ │ │ │ ├── SkTDict.h │ │ │ │ ├── SkTLazy.h │ │ │ │ ├── SkTRegistry.h │ │ │ │ ├── SkTScopedPtr.h │ │ │ │ ├── SkTSearch.h │ │ │ │ ├── SkTemplates.h │ │ │ │ ├── SkThread.h │ │ │ │ ├── SkThread_platform.h │ │ │ │ ├── SkTime.h │ │ │ │ ├── SkTypeface.h │ │ │ │ ├── SkTypes.h │ │ │ │ ├── SkUnPreMultiply.h │ │ │ │ ├── SkUnitMapper.h │ │ │ │ ├── SkUserConfig.h │ │ │ │ ├── SkUtils.h │ │ │ │ ├── SkWriter32.h │ │ │ │ └── SkXfermode.h │ │ │ │ ├── effects │ │ │ │ ├── Sk1DPathEffect.h │ │ │ │ ├── Sk2DPathEffect.h │ │ │ │ ├── SkAvoidXfermode.h │ │ │ │ ├── SkBlurDrawLooper.h │ │ │ │ ├── SkBlurMaskFilter.h │ │ │ │ ├── SkColorMatrix.h │ │ │ │ ├── SkColorMatrixFilter.h │ │ │ │ ├── SkCornerPathEffect.h │ │ │ │ ├── SkDashPathEffect.h │ │ │ │ ├── SkDiscretePathEffect.h │ │ │ │ ├── SkDrawExtraPathEffect.h │ │ │ │ ├── SkEmbossMaskFilter.h │ │ │ │ ├── SkGradientShader.h │ │ │ │ ├── SkGroupShape.h │ │ │ │ ├── SkKernel33MaskFilter.h │ │ │ │ ├── SkLayerDrawLooper.h │ │ │ │ ├── SkLayerRasterizer.h │ │ │ │ ├── SkPaintFlagsDrawFilter.h │ │ │ │ ├── SkPixelXorXfermode.h │ │ │ │ ├── SkPorterDuff.h │ │ │ │ ├── SkRectShape.h │ │ │ │ ├── SkTableMaskFilter.h │ │ │ │ └── SkTransparentShader.h │ │ │ │ ├── gpu │ │ │ │ ├── SkGpuCanvas.h │ │ │ │ ├── SkGpuDevice.h │ │ │ │ ├── SkGpuDeviceFactory.h │ │ │ │ ├── SkGr.h │ │ │ │ └── SkGrTexturePixelRef.h │ │ │ │ ├── images │ │ │ │ ├── SkBitmapRegionDecoder.h │ │ │ │ ├── SkFlipPixelRef.h │ │ │ │ ├── SkImageDecoder.h │ │ │ │ ├── SkImageEncoder.h │ │ │ │ ├── SkImageRef.h │ │ │ │ ├── SkImageRef_GlobalPool.h │ │ │ │ ├── SkJpegUtility.h │ │ │ │ ├── SkMovie.h │ │ │ │ └── SkPageFlipper.h │ │ │ │ ├── pdf │ │ │ │ ├── SkPDFCatalog.h │ │ │ │ ├── SkPDFDevice.h │ │ │ │ ├── SkPDFDocument.h │ │ │ │ ├── SkPDFFont.h │ │ │ │ ├── SkPDFFormXObject.h │ │ │ │ ├── SkPDFGraphicState.h │ │ │ │ ├── SkPDFImage.h │ │ │ │ ├── SkPDFPage.h │ │ │ │ ├── SkPDFShader.h │ │ │ │ ├── SkPDFStream.h │ │ │ │ ├── SkPDFTypes.h │ │ │ │ └── SkPDFUtils.h │ │ │ │ ├── pipe │ │ │ │ └── SkGPipe.h │ │ │ │ ├── ports │ │ │ │ ├── SkHarfBuzzFont.h │ │ │ │ ├── SkStream_Win.h │ │ │ │ ├── SkTypeface_mac.h │ │ │ │ └── SkTypeface_win.h │ │ │ │ ├── text │ │ │ │ └── SkTextLayout.h │ │ │ │ ├── utils │ │ │ │ ├── SkBoundaryPatch.h │ │ │ │ ├── SkCamera.h │ │ │ │ ├── SkCubicInterval.h │ │ │ │ ├── SkCullPoints.h │ │ │ │ ├── SkDumpCanvas.h │ │ │ │ ├── SkEGLContext.h │ │ │ │ ├── SkGLCanvas.h │ │ │ │ ├── SkInterpolator.h │ │ │ │ ├── SkLayer.h │ │ │ │ ├── SkMeshUtils.h │ │ │ │ ├── SkNWayCanvas.h │ │ │ │ ├── SkNinePatch.h │ │ │ │ ├── SkParse.h │ │ │ │ ├── SkParsePaint.h │ │ │ │ ├── SkParsePath.h │ │ │ │ ├── SkProxyCanvas.h │ │ │ │ ├── SkSfntUtils.h │ │ │ │ ├── SkTextBox.h │ │ │ │ ├── SkUnitMappers.h │ │ │ │ ├── android │ │ │ │ │ └── AndroidKeyToSkKey.h │ │ │ │ ├── mac │ │ │ │ │ └── SkCGUtils.h │ │ │ │ └── unix │ │ │ │ │ ├── XkeysToSkKeys.h │ │ │ │ │ └── keysym2ucs.h │ │ │ │ ├── views │ │ │ │ ├── SkApplication.h │ │ │ │ ├── SkBGViewArtist.h │ │ │ │ ├── SkBorderView.h │ │ │ │ ├── SkEvent.h │ │ │ │ ├── SkEventSink.h │ │ │ │ ├── SkImageView.h │ │ │ │ ├── SkKey.h │ │ │ │ ├── SkOSMenu.h │ │ │ │ ├── SkOSWindow_Android.h │ │ │ │ ├── SkOSWindow_Mac.h │ │ │ │ ├── SkOSWindow_SDL.h │ │ │ │ ├── SkOSWindow_Unix.h │ │ │ │ ├── SkOSWindow_Win.h │ │ │ │ ├── SkOSWindow_wxwidgets.h │ │ │ │ ├── SkProgressBarView.h │ │ │ │ ├── SkScrollBarView.h │ │ │ │ ├── SkStackViewLayout.h │ │ │ │ ├── SkSystemEventTypes.h │ │ │ │ ├── SkTouchGesture.h │ │ │ │ ├── SkView.h │ │ │ │ ├── SkViewInflate.h │ │ │ │ ├── SkWidget.h │ │ │ │ ├── SkWidgetViews.h │ │ │ │ └── SkWindow.h │ │ │ │ └── xml │ │ │ │ ├── SkBML_WXMLParser.h │ │ │ │ ├── SkBML_XMLParser.h │ │ │ │ ├── SkDOM.h │ │ │ │ ├── SkJS.h │ │ │ │ ├── SkXMLParser.h │ │ │ │ └── SkXMLWriter.h │ │ ├── frameworks │ │ │ └── base │ │ │ │ ├── include │ │ │ │ ├── android_runtime │ │ │ │ │ ├── ActivityManager.h │ │ │ │ │ ├── AndroidRuntime.h │ │ │ │ │ ├── android_app_NativeActivity.h │ │ │ │ │ ├── android_content_res_Configuration.h │ │ │ │ │ ├── android_graphics_SurfaceTexture.h │ │ │ │ │ ├── android_util_AssetManager.h │ │ │ │ │ └── android_view_Surface.h │ │ │ │ ├── binder │ │ │ │ │ ├── Binder.h │ │ │ │ │ ├── BinderService.h │ │ │ │ │ ├── BpBinder.h │ │ │ │ │ ├── CursorWindow.h │ │ │ │ │ ├── IBinder.h │ │ │ │ │ ├── IInterface.h │ │ │ │ │ ├── IMemory.h │ │ │ │ │ ├── IPCThreadState.h │ │ │ │ │ ├── IPermissionController.h │ │ │ │ │ ├── IServiceManager.h │ │ │ │ │ ├── MemoryBase.h │ │ │ │ │ ├── MemoryDealer.h │ │ │ │ │ ├── MemoryHeapBase.h │ │ │ │ │ ├── MemoryHeapPmem.h │ │ │ │ │ ├── Parcel.h │ │ │ │ │ ├── PermissionCache.h │ │ │ │ │ └── ProcessState.h │ │ │ │ ├── camera │ │ │ │ │ ├── Camera.h │ │ │ │ │ ├── CameraParameters.h │ │ │ │ │ ├── ICamera.h │ │ │ │ │ ├── ICameraClient.h │ │ │ │ │ ├── ICameraRecordingProxy.h │ │ │ │ │ ├── ICameraRecordingProxyListener.h │ │ │ │ │ └── ICameraService.h │ │ │ │ ├── cpustats │ │ │ │ │ ├── CentralTendencyStatistics.h │ │ │ │ │ ├── README.txt │ │ │ │ │ └── ThreadCpuUsage.h │ │ │ │ ├── diskusage │ │ │ │ │ └── dirsize.h │ │ │ │ ├── drm │ │ │ │ │ ├── DrmConstraints.h │ │ │ │ │ ├── DrmConvertedStatus.h │ │ │ │ │ ├── DrmInfo.h │ │ │ │ │ ├── DrmInfoEvent.h │ │ │ │ │ ├── DrmInfoRequest.h │ │ │ │ │ ├── DrmInfoStatus.h │ │ │ │ │ ├── DrmManagerClient.h │ │ │ │ │ ├── DrmMetadata.h │ │ │ │ │ ├── DrmRights.h │ │ │ │ │ ├── DrmSupportInfo.h │ │ │ │ │ └── drm_framework_common.h │ │ │ │ ├── gui │ │ │ │ │ ├── ISensorEventConnection.h │ │ │ │ │ ├── ISensorServer.h │ │ │ │ │ ├── ISurfaceTexture.h │ │ │ │ │ ├── Sensor.h │ │ │ │ │ ├── SensorChannel.h │ │ │ │ │ ├── SensorEventQueue.h │ │ │ │ │ ├── SensorManager.h │ │ │ │ │ ├── SurfaceTexture.h │ │ │ │ │ └── SurfaceTextureClient.h │ │ │ │ ├── media │ │ │ │ │ ├── AudioEffect.h │ │ │ │ │ ├── AudioParameter.h │ │ │ │ │ ├── AudioRecord.h │ │ │ │ │ ├── AudioSystem.h │ │ │ │ │ ├── AudioTrack.h │ │ │ │ │ ├── EffectsFactoryApi.h │ │ │ │ │ ├── IAudioFlinger.h │ │ │ │ │ ├── IAudioFlingerClient.h │ │ │ │ │ ├── IAudioPolicyService.h │ │ │ │ │ ├── IAudioRecord.h │ │ │ │ │ ├── IAudioTrack.h │ │ │ │ │ ├── IEffect.h │ │ │ │ │ ├── IEffectClient.h │ │ │ │ │ ├── IMediaDeathNotifier.h │ │ │ │ │ ├── IMediaMetadataRetriever.h │ │ │ │ │ ├── IMediaPlayer.h │ │ │ │ │ ├── IMediaPlayerClient.h │ │ │ │ │ ├── IMediaPlayerService.h │ │ │ │ │ ├── IMediaRecorder.h │ │ │ │ │ ├── IMediaRecorderClient.h │ │ │ │ │ ├── IOMX.h │ │ │ │ │ ├── IStreamSource.h │ │ │ │ │ ├── JetPlayer.h │ │ │ │ │ ├── MediaMetadataRetrieverInterface.h │ │ │ │ │ ├── MediaPlayerInterface.h │ │ │ │ │ ├── MediaProfiles.h │ │ │ │ │ ├── MediaRecorderBase.h │ │ │ │ │ ├── MemoryLeakTrackUtil.h │ │ │ │ │ ├── Metadata.h │ │ │ │ │ ├── ToneGenerator.h │ │ │ │ │ ├── Visualizer.h │ │ │ │ │ ├── mediametadataretriever.h │ │ │ │ │ ├── mediaplayer.h │ │ │ │ │ ├── mediarecorder.h │ │ │ │ │ ├── mediascanner.h │ │ │ │ │ ├── stagefright │ │ │ │ │ │ ├── AACWriter.h │ │ │ │ │ │ ├── ACodec.h │ │ │ │ │ │ ├── AMRWriter.h │ │ │ │ │ │ ├── AudioPlayer.h │ │ │ │ │ │ ├── AudioSource.h │ │ │ │ │ │ ├── CameraSource.h │ │ │ │ │ │ ├── CameraSourceTimeLapse.h │ │ │ │ │ │ ├── ColorConverter.h │ │ │ │ │ │ ├── DataSource.h │ │ │ │ │ │ ├── FileSource.h │ │ │ │ │ │ ├── HardwareAPI.h │ │ │ │ │ │ ├── JPEGSource.h │ │ │ │ │ │ ├── MPEG2TSWriter.h │ │ │ │ │ │ ├── MPEG4Writer.h │ │ │ │ │ │ ├── MediaBuffer.h │ │ │ │ │ │ ├── MediaBufferGroup.h │ │ │ │ │ │ ├── MediaDebug.h │ │ │ │ │ │ ├── MediaDefs.h │ │ │ │ │ │ ├── MediaErrors.h │ │ │ │ │ │ ├── MediaExtractor.h │ │ │ │ │ │ ├── MediaSource.h │ │ │ │ │ │ ├── MediaSourceSplitter.h │ │ │ │ │ │ ├── MediaWriter.h │ │ │ │ │ │ ├── MetaData.h │ │ │ │ │ │ ├── MetadataBufferType.h │ │ │ │ │ │ ├── NativeWindowWrapper.h │ │ │ │ │ │ ├── OMXClient.h │ │ │ │ │ │ ├── OMXCodec.h │ │ │ │ │ │ ├── OMXPluginBase.h │ │ │ │ │ │ ├── StagefrightMediaScanner.h │ │ │ │ │ │ ├── SurfaceMediaSource.h │ │ │ │ │ │ ├── TimeSource.h │ │ │ │ │ │ ├── Utils.h │ │ │ │ │ │ ├── VideoSourceDownSampler.h │ │ │ │ │ │ ├── YUVCanvas.h │ │ │ │ │ │ ├── YUVImage.h │ │ │ │ │ │ ├── foundation │ │ │ │ │ │ │ ├── AAtomizer.h │ │ │ │ │ │ │ ├── ABase.h │ │ │ │ │ │ │ ├── ABitReader.h │ │ │ │ │ │ │ ├── ABuffer.h │ │ │ │ │ │ │ ├── ADebug.h │ │ │ │ │ │ │ ├── AHandler.h │ │ │ │ │ │ │ ├── AHandlerReflector.h │ │ │ │ │ │ │ ├── AHierarchicalStateMachine.h │ │ │ │ │ │ │ ├── ALooper.h │ │ │ │ │ │ │ ├── ALooperRoster.h │ │ │ │ │ │ │ ├── AMessage.h │ │ │ │ │ │ │ ├── AString.h │ │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ │ └── hexdump.h │ │ │ │ │ │ └── openmax │ │ │ │ │ │ │ ├── OMX_Audio.h │ │ │ │ │ │ │ ├── OMX_Component.h │ │ │ │ │ │ │ ├── OMX_ContentPipe.h │ │ │ │ │ │ │ ├── OMX_Core.h │ │ │ │ │ │ │ ├── OMX_IVCommon.h │ │ │ │ │ │ │ ├── OMX_Image.h │ │ │ │ │ │ │ ├── OMX_Index.h │ │ │ │ │ │ │ ├── OMX_Other.h │ │ │ │ │ │ │ ├── OMX_Types.h │ │ │ │ │ │ │ └── OMX_Video.h │ │ │ │ │ └── thread_init.h │ │ │ │ ├── powermanager │ │ │ │ │ ├── IPowerManager.h │ │ │ │ │ └── PowerManager.h │ │ │ │ ├── private │ │ │ │ │ ├── README │ │ │ │ │ ├── binder │ │ │ │ │ │ ├── Static.h │ │ │ │ │ │ └── binder_module.h │ │ │ │ │ ├── hwui │ │ │ │ │ │ └── DrawGlInfo.h │ │ │ │ │ ├── media │ │ │ │ │ │ ├── AudioEffectShared.h │ │ │ │ │ │ ├── AudioTrackShared.h │ │ │ │ │ │ └── VideoFrame.h │ │ │ │ │ ├── opengles │ │ │ │ │ │ └── gl_context.h │ │ │ │ │ ├── surfaceflinger │ │ │ │ │ │ ├── LayerState.h │ │ │ │ │ │ └── SharedBufferStack.h │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── RegionHelper.h │ │ │ │ │ │ └── android_natives_priv.h │ │ │ │ │ └── utils │ │ │ │ │ │ └── Static.h │ │ │ │ ├── storage │ │ │ │ │ ├── IMountService.h │ │ │ │ │ ├── IMountServiceListener.h │ │ │ │ │ ├── IMountShutdownObserver.h │ │ │ │ │ └── IObbActionListener.h │ │ │ │ ├── surfaceflinger │ │ │ │ │ ├── IGraphicBufferAlloc.h │ │ │ │ │ ├── ISurface.h │ │ │ │ │ ├── ISurfaceComposer.h │ │ │ │ │ ├── ISurfaceComposerClient.h │ │ │ │ │ ├── Surface.h │ │ │ │ │ └── SurfaceComposerClient.h │ │ │ │ ├── ui │ │ │ │ │ ├── DisplayInfo.h │ │ │ │ │ ├── EGLNativeSurface.h │ │ │ │ │ ├── EGLUtils.h │ │ │ │ │ ├── FramebufferNativeWindow.h │ │ │ │ │ ├── GraphicBuffer.h │ │ │ │ │ ├── GraphicBufferAllocator.h │ │ │ │ │ ├── GraphicBufferMapper.h │ │ │ │ │ ├── GraphicLog.h │ │ │ │ │ ├── Input.h │ │ │ │ │ ├── InputTransport.h │ │ │ │ │ ├── KeyCharacterMap.h │ │ │ │ │ ├── KeyLayoutMap.h │ │ │ │ │ ├── Keyboard.h │ │ │ │ │ ├── KeycodeLabels.h │ │ │ │ │ ├── PixelFormat.h │ │ │ │ │ ├── Point.h │ │ │ │ │ ├── PowerManager.h │ │ │ │ │ ├── Rect.h │ │ │ │ │ ├── Region.h │ │ │ │ │ ├── VirtualKeyMap.h │ │ │ │ │ ├── android_native_buffer.h │ │ │ │ │ └── egl │ │ │ │ │ │ └── android_natives.h │ │ │ │ └── utils │ │ │ │ │ ├── Asset.h │ │ │ │ │ ├── AssetDir.h │ │ │ │ │ ├── AssetManager.h │ │ │ │ │ ├── Atomic.h │ │ │ │ │ ├── BackupHelpers.h │ │ │ │ │ ├── BitSet.h │ │ │ │ │ ├── BlobCache.h │ │ │ │ │ ├── BufferedTextOutput.h │ │ │ │ │ ├── ByteOrder.h │ │ │ │ │ ├── CallStack.h │ │ │ │ │ ├── Compat.h │ │ │ │ │ ├── Debug.h │ │ │ │ │ ├── Endian.h │ │ │ │ │ ├── Errors.h │ │ │ │ │ ├── FileMap.h │ │ │ │ │ ├── Flattenable.h │ │ │ │ │ ├── Functor.h │ │ │ │ │ ├── GenerationCache.h │ │ │ │ │ ├── KeyedVector.h │ │ │ │ │ ├── LinearTransform.h │ │ │ │ │ ├── List.h │ │ │ │ │ ├── Log.h │ │ │ │ │ ├── Looper.h │ │ │ │ │ ├── ObbFile.h │ │ │ │ │ ├── PropertyMap.h │ │ │ │ │ ├── RefBase.h │ │ │ │ │ ├── ResourceTypes.h │ │ │ │ │ ├── SharedBuffer.h │ │ │ │ │ ├── Singleton.h │ │ │ │ │ ├── SortedVector.h │ │ │ │ │ ├── StopWatch.h │ │ │ │ │ ├── StreamingZipInflater.h │ │ │ │ │ ├── String16.h │ │ │ │ │ ├── String8.h │ │ │ │ │ ├── StringArray.h │ │ │ │ │ ├── StrongPointer.h │ │ │ │ │ ├── SystemClock.h │ │ │ │ │ ├── TextOutput.h │ │ │ │ │ ├── Timers.h │ │ │ │ │ ├── Tokenizer.h │ │ │ │ │ ├── TypeHelpers.h │ │ │ │ │ ├── Unicode.h │ │ │ │ │ ├── Vector.h │ │ │ │ │ ├── VectorImpl.h │ │ │ │ │ ├── ZipFileCRO.h │ │ │ │ │ ├── ZipFileRO.h │ │ │ │ │ ├── ZipUtils.h │ │ │ │ │ ├── ashmem.h │ │ │ │ │ ├── misc.h │ │ │ │ │ └── threads.h │ │ │ │ ├── native │ │ │ │ ├── android │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── asset_manager.cpp │ │ │ │ │ ├── configuration.cpp │ │ │ │ │ ├── input.cpp │ │ │ │ │ ├── looper.cpp │ │ │ │ │ ├── native_activity.cpp │ │ │ │ │ ├── native_window.cpp │ │ │ │ │ ├── obb.cpp │ │ │ │ │ ├── sensor.cpp │ │ │ │ │ └── storage_manager.cpp │ │ │ │ ├── copy-to-ndk.sh │ │ │ │ ├── graphics │ │ │ │ │ └── jni │ │ │ │ │ │ ├── Android.mk │ │ │ │ │ │ └── bitmap.cpp │ │ │ │ └── include │ │ │ │ │ └── android │ │ │ │ │ ├── asset_manager.h │ │ │ │ │ ├── asset_manager_jni.h │ │ │ │ │ ├── bitmap.h │ │ │ │ │ ├── configuration.h │ │ │ │ │ ├── input.h │ │ │ │ │ ├── keycodes.h │ │ │ │ │ ├── looper.h │ │ │ │ │ ├── native_activity.h │ │ │ │ │ ├── native_window.h │ │ │ │ │ ├── native_window_jni.h │ │ │ │ │ ├── obb.h │ │ │ │ │ ├── rect.h │ │ │ │ │ ├── sensor.h │ │ │ │ │ ├── storage_manager.h │ │ │ │ │ └── window.h │ │ │ │ └── opengl │ │ │ │ └── include │ │ │ │ ├── EGL │ │ │ │ ├── egl.h │ │ │ │ ├── eglext.h │ │ │ │ └── eglplatform.h │ │ │ │ ├── ETC1 │ │ │ │ └── etc1.h │ │ │ │ ├── GLES │ │ │ │ ├── egl.h │ │ │ │ ├── gl.h │ │ │ │ ├── glext.h │ │ │ │ └── glplatform.h │ │ │ │ ├── GLES2 │ │ │ │ ├── gl2.h │ │ │ │ ├── gl2ext.h │ │ │ │ └── gl2platform.h │ │ │ │ └── KHR │ │ │ │ └── khrplatform.h │ │ ├── hardware │ │ │ └── libhardware │ │ │ │ └── include │ │ │ │ └── hardware │ │ │ │ ├── audio.h │ │ │ │ ├── audio_effect.h │ │ │ │ ├── audio_policy.h │ │ │ │ ├── camera.h │ │ │ │ ├── fb.h │ │ │ │ ├── gps.h │ │ │ │ ├── gralloc.h │ │ │ │ ├── hardware.h │ │ │ │ ├── hwcomposer.h │ │ │ │ ├── lights.h │ │ │ │ ├── qemu_pipe.h │ │ │ │ ├── qemud.h │ │ │ │ └── sensors.h │ │ ├── libOpenSLES.so │ │ ├── libandroid_runtime.so │ │ ├── libcutils.so │ │ ├── libgui.so │ │ ├── libmedia.so │ │ ├── libnativehelper.so │ │ ├── libskia.so │ │ ├── libui.so │ │ ├── libutils.so │ │ └── system │ │ │ ├── core │ │ │ └── include │ │ │ │ ├── android │ │ │ │ └── log.h │ │ │ │ ├── arch │ │ │ │ ├── darwin-x86 │ │ │ │ │ └── AndroidConfig.h │ │ │ │ ├── freebsd-x86 │ │ │ │ │ └── AndroidConfig.h │ │ │ │ ├── linux-arm │ │ │ │ │ └── AndroidConfig.h │ │ │ │ ├── linux-ppc │ │ │ │ │ └── AndroidConfig.h │ │ │ │ ├── linux-sh │ │ │ │ │ └── AndroidConfig.h │ │ │ │ ├── linux-x86 │ │ │ │ │ └── AndroidConfig.h │ │ │ │ ├── target_linux-x86 │ │ │ │ │ └── AndroidConfig.h │ │ │ │ └── windows │ │ │ │ │ └── AndroidConfig.h │ │ │ │ ├── ctest │ │ │ │ └── ctest.h │ │ │ │ ├── cutils │ │ │ │ ├── abort_socket.h │ │ │ │ ├── android_reboot.h │ │ │ │ ├── array.h │ │ │ │ ├── ashmem.h │ │ │ │ ├── atomic-arm.h │ │ │ │ ├── atomic-inline.h │ │ │ │ ├── atomic-x86.h │ │ │ │ ├── atomic.h │ │ │ │ ├── bitops.h │ │ │ │ ├── compiler.h │ │ │ │ ├── config_utils.h │ │ │ │ ├── cpu_info.h │ │ │ │ ├── dir_hash.h │ │ │ │ ├── event_tag_map.h │ │ │ │ ├── hashmap.h │ │ │ │ ├── iosched_policy.h │ │ │ │ ├── jstring.h │ │ │ │ ├── klog.h │ │ │ │ ├── list.h │ │ │ │ ├── log.h │ │ │ │ ├── logd.h │ │ │ │ ├── logger.h │ │ │ │ ├── logprint.h │ │ │ │ ├── memory.h │ │ │ │ ├── misc.h │ │ │ │ ├── mq.h │ │ │ │ ├── mspace.h │ │ │ │ ├── native_handle.h │ │ │ │ ├── open_memstream.h │ │ │ │ ├── partition_utils.h │ │ │ │ ├── process_name.h │ │ │ │ ├── properties.h │ │ │ │ ├── qtaguid.h │ │ │ │ ├── record_stream.h │ │ │ │ ├── sched_policy.h │ │ │ │ ├── selector.h │ │ │ │ ├── sockets.h │ │ │ │ ├── str_parms.h │ │ │ │ ├── threads.h │ │ │ │ ├── tztime.h │ │ │ │ ├── uevent.h │ │ │ │ ├── uio.h │ │ │ │ └── zygote.h │ │ │ │ ├── diskconfig │ │ │ │ └── diskconfig.h │ │ │ │ ├── mincrypt │ │ │ │ ├── rsa.h │ │ │ │ └── sha.h │ │ │ │ ├── netutils │ │ │ │ ├── dhcp.h │ │ │ │ └── ifc.h │ │ │ │ ├── pixelflinger │ │ │ │ ├── format.h │ │ │ │ └── pixelflinger.h │ │ │ │ ├── private │ │ │ │ ├── android_filesystem_config.h │ │ │ │ └── pixelflinger │ │ │ │ │ ├── ggl_context.h │ │ │ │ │ └── ggl_fixed.h │ │ │ │ ├── system │ │ │ │ ├── audio.h │ │ │ │ ├── audio_policy.h │ │ │ │ ├── camera.h │ │ │ │ ├── graphics.h │ │ │ │ └── window.h │ │ │ │ ├── sysutils │ │ │ │ ├── FrameworkClient.h │ │ │ │ ├── FrameworkCommand.h │ │ │ │ ├── FrameworkListener.h │ │ │ │ ├── NetlinkEvent.h │ │ │ │ ├── NetlinkListener.h │ │ │ │ ├── ServiceManager.h │ │ │ │ ├── SocketClient.h │ │ │ │ └── SocketListener.h │ │ │ │ ├── usbhost │ │ │ │ └── usbhost.h │ │ │ │ └── zipfile │ │ │ │ └── zipfile.h │ │ │ └── media │ │ │ └── wilhelm │ │ │ └── include │ │ │ └── SLES │ │ │ ├── OpenSLES.h │ │ │ ├── OpenSLES_Android.h │ │ │ ├── OpenSLES_AndroidConfiguration.h │ │ │ ├── OpenSLES_AndroidMetadata.h │ │ │ └── OpenSLES_Platform.h │ ├── aosp-16 │ │ ├── bionic │ │ │ └── libc │ │ │ │ └── include │ │ │ │ ├── alloca.h │ │ │ │ ├── android │ │ │ │ └── api-level.h │ │ │ │ ├── ar.h │ │ │ │ ├── arpa │ │ │ │ ├── inet.h │ │ │ │ ├── nameser.h │ │ │ │ └── telnet.h │ │ │ │ ├── assert.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── ctype.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── elf.h │ │ │ │ ├── endian.h │ │ │ │ ├── err.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── features.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── fts.h │ │ │ │ ├── getopt.h │ │ │ │ ├── grp.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── lastlog.h │ │ │ │ ├── libgen.h │ │ │ │ ├── limits.h │ │ │ │ ├── locale.h │ │ │ │ ├── malloc.h │ │ │ │ ├── memory.h │ │ │ │ ├── mntent.h │ │ │ │ ├── net │ │ │ │ ├── ethernet.h │ │ │ │ ├── ethertypes.h │ │ │ │ ├── if.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_dl.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── if_ieee1394.h │ │ │ │ ├── if_packet.h │ │ │ │ ├── if_types.h │ │ │ │ └── route.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netinet │ │ │ │ ├── ether.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── in.h │ │ │ │ ├── in6.h │ │ │ │ ├── in_systm.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip_icmp.h │ │ │ │ ├── tcp.h │ │ │ │ └── udp.h │ │ │ │ ├── netpacket │ │ │ │ └── packet.h │ │ │ │ ├── nsswitch.h │ │ │ │ ├── pathconf.h │ │ │ │ ├── paths.h │ │ │ │ ├── poll.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pwd.h │ │ │ │ ├── regex.h │ │ │ │ ├── resolv.h │ │ │ │ ├── sched.h │ │ │ │ ├── search.h │ │ │ │ ├── semaphore.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sgtty.h │ │ │ │ ├── sha1.h │ │ │ │ ├── signal.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── strings.h │ │ │ │ ├── sys │ │ │ │ ├── _errdefs.h │ │ │ │ ├── _sigdefs.h │ │ │ │ ├── _system_properties.h │ │ │ │ ├── _types.h │ │ │ │ ├── atomics.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── cdefs_elf.h │ │ │ │ ├── dirent.h │ │ │ │ ├── endian.h │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── exec_elf.h │ │ │ │ ├── file.h │ │ │ │ ├── fsuid.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctl_compat.h │ │ │ │ ├── ipc.h │ │ │ │ ├── klog.h │ │ │ │ ├── limits.h │ │ │ │ ├── linux-syscalls.h │ │ │ │ ├── mman.h │ │ │ │ ├── mount.h │ │ │ │ ├── param.h │ │ │ │ ├── personality.h │ │ │ │ ├── poll.h │ │ │ │ ├── prctl.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── queue.h │ │ │ │ ├── reboot.h │ │ │ │ ├── resource.h │ │ │ │ ├── select.h │ │ │ │ ├── sendfile.h │ │ │ │ ├── socket.h │ │ │ │ ├── socketcalls.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── syscall.h │ │ │ │ ├── sysconf.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── syslimits.h │ │ │ │ ├── sysmacros.h │ │ │ │ ├── system_properties.h │ │ │ │ ├── time.h │ │ │ │ ├── timeb.h │ │ │ │ ├── times.h │ │ │ │ ├── ttychars.h │ │ │ │ ├── ttydev.h │ │ │ │ ├── types.h │ │ │ │ ├── uio.h │ │ │ │ ├── un.h │ │ │ │ ├── utime.h │ │ │ │ ├── utsname.h │ │ │ │ ├── vfs.h │ │ │ │ ├── vt.h │ │ │ │ ├── wait.h │ │ │ │ └── xattr.h │ │ │ │ ├── syslog.h │ │ │ │ ├── termio.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── time64.h │ │ │ │ ├── unistd.h │ │ │ │ ├── util.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ ├── external │ │ │ └── skia │ │ │ │ └── include │ │ │ │ ├── animator │ │ │ │ ├── SkAnimator.h │ │ │ │ └── SkAnimatorView.h │ │ │ │ ├── config │ │ │ │ └── sk_stdint.h │ │ │ │ ├── core │ │ │ │ ├── Sk64.h │ │ │ │ ├── SkAdvancedTypefaceMetrics.h │ │ │ │ ├── SkAutoKern.h │ │ │ │ ├── SkBitmap.h │ │ │ │ ├── SkBlitRow.h │ │ │ │ ├── SkBlitter.h │ │ │ │ ├── SkBounder.h │ │ │ │ ├── SkBuffer.h │ │ │ │ ├── SkCanvas.h │ │ │ │ ├── SkChunkAlloc.h │ │ │ │ ├── SkClampRange.h │ │ │ │ ├── SkClipStack.h │ │ │ │ ├── SkColor.h │ │ │ │ ├── SkColorFilter.h │ │ │ │ ├── SkColorPriv.h │ │ │ │ ├── SkColorShader.h │ │ │ │ ├── SkComposeShader.h │ │ │ │ ├── SkData.h │ │ │ │ ├── SkDeque.h │ │ │ │ ├── SkDescriptor.h │ │ │ │ ├── SkDevice.h │ │ │ │ ├── SkDeviceProfile.h │ │ │ │ ├── SkDither.h │ │ │ │ ├── SkDraw.h │ │ │ │ ├── SkDrawFilter.h │ │ │ │ ├── SkDrawLooper.h │ │ │ │ ├── SkEdgeClipper.h │ │ │ │ ├── SkEmptyShader.h │ │ │ │ ├── SkEndian.h │ │ │ │ ├── SkFDot6.h │ │ │ │ ├── SkFixed.h │ │ │ │ ├── SkFlate.h │ │ │ │ ├── SkFlattenable.h │ │ │ │ ├── SkFloatBits.h │ │ │ │ ├── SkFloatingPoint.h │ │ │ │ ├── SkFontHost.h │ │ │ │ ├── SkGeometry.h │ │ │ │ ├── SkGraphics.h │ │ │ │ ├── SkImageFilter.h │ │ │ │ ├── SkLineClipper.h │ │ │ │ ├── SkMMapStream.h │ │ │ │ ├── SkMallocPixelRef.h │ │ │ │ ├── SkMask.h │ │ │ │ ├── SkMaskFilter.h │ │ │ │ ├── SkMath.h │ │ │ │ ├── SkMatrix.h │ │ │ │ ├── SkMetaData.h │ │ │ │ ├── SkOSFile.h │ │ │ │ ├── SkPackBits.h │ │ │ │ ├── SkPaint.h │ │ │ │ ├── SkPath.h │ │ │ │ ├── SkPathEffect.h │ │ │ │ ├── SkPathMeasure.h │ │ │ │ ├── SkPerspIter.h │ │ │ │ ├── SkPicture.h │ │ │ │ ├── SkPixelRef.h │ │ │ │ ├── SkPoint.h │ │ │ │ ├── SkPostConfig.h │ │ │ │ ├── SkPreConfig.h │ │ │ │ ├── SkPtrRecorder.h │ │ │ │ ├── SkRandom.h │ │ │ │ ├── SkRasterizer.h │ │ │ │ ├── SkReader32.h │ │ │ │ ├── SkRect.h │ │ │ │ ├── SkRefCnt.h │ │ │ │ ├── SkRefDict.h │ │ │ │ ├── SkRegion.h │ │ │ │ ├── SkRelay.h │ │ │ │ ├── SkScalar.h │ │ │ │ ├── SkScalarCompare.h │ │ │ │ ├── SkScalerContext.h │ │ │ │ ├── SkScan.h │ │ │ │ ├── SkShader.h │ │ │ │ ├── SkShape.h │ │ │ │ ├── SkSize.h │ │ │ │ ├── SkStream.h │ │ │ │ ├── SkString.h │ │ │ │ ├── SkStroke.h │ │ │ │ ├── SkTArray.h │ │ │ │ ├── SkTDArray.h │ │ │ │ ├── SkTDStack.h │ │ │ │ ├── SkTDict.h │ │ │ │ ├── SkTLazy.h │ │ │ │ ├── SkTRegistry.h │ │ │ │ ├── SkTScopedPtr.h │ │ │ │ ├── SkTSearch.h │ │ │ │ ├── SkTemplates.h │ │ │ │ ├── SkThread.h │ │ │ │ ├── SkThread_platform.h │ │ │ │ ├── SkTime.h │ │ │ │ ├── SkTrace.h │ │ │ │ ├── SkTypeface.h │ │ │ │ ├── SkTypes.h │ │ │ │ ├── SkUnPreMultiply.h │ │ │ │ ├── SkUnitMapper.h │ │ │ │ ├── SkUserConfig.h │ │ │ │ ├── SkUtils.h │ │ │ │ ├── SkWriter32.h │ │ │ │ └── SkXfermode.h │ │ │ │ ├── effects │ │ │ │ ├── Sk1DPathEffect.h │ │ │ │ ├── Sk2DPathEffect.h │ │ │ │ ├── SkArithmeticMode.h │ │ │ │ ├── SkAvoidXfermode.h │ │ │ │ ├── SkBlurDrawLooper.h │ │ │ │ ├── SkBlurImageFilter.h │ │ │ │ ├── SkBlurMaskFilter.h │ │ │ │ ├── SkColorMatrix.h │ │ │ │ ├── SkColorMatrixFilter.h │ │ │ │ ├── SkCornerPathEffect.h │ │ │ │ ├── SkDashPathEffect.h │ │ │ │ ├── SkDiscretePathEffect.h │ │ │ │ ├── SkDrawExtraPathEffect.h │ │ │ │ ├── SkEffects.h │ │ │ │ ├── SkEmbossMaskFilter.h │ │ │ │ ├── SkGradientShader.h │ │ │ │ ├── SkGroupShape.h │ │ │ │ ├── SkKernel33MaskFilter.h │ │ │ │ ├── SkLayerDrawLooper.h │ │ │ │ ├── SkLayerRasterizer.h │ │ │ │ ├── SkMorphologyImageFilter.h │ │ │ │ ├── SkPaintFlagsDrawFilter.h │ │ │ │ ├── SkPixelXorXfermode.h │ │ │ │ ├── SkPorterDuff.h │ │ │ │ ├── SkRectShape.h │ │ │ │ ├── SkTableColorFilter.h │ │ │ │ ├── SkTableMaskFilter.h │ │ │ │ ├── SkTestImageFilters.h │ │ │ │ └── SkTransparentShader.h │ │ │ │ ├── gpu │ │ │ │ ├── GrClip.h │ │ │ │ ├── GrClipIterator.h │ │ │ │ ├── GrColor.h │ │ │ │ ├── GrConfig.h │ │ │ │ ├── GrContext.h │ │ │ │ ├── GrFontScaler.h │ │ │ │ ├── GrGlyph.h │ │ │ │ ├── GrInstanceCounter.h │ │ │ │ ├── GrKey.h │ │ │ │ ├── GrMatrix.h │ │ │ │ ├── GrNoncopyable.h │ │ │ │ ├── GrPaint.h │ │ │ │ ├── GrPath.h │ │ │ │ ├── GrPoint.h │ │ │ │ ├── GrRect.h │ │ │ │ ├── GrRefCnt.h │ │ │ │ ├── GrRenderTarget.h │ │ │ │ ├── GrResource.h │ │ │ │ ├── GrSamplerState.h │ │ │ │ ├── GrScalar.h │ │ │ │ ├── GrTemplates.h │ │ │ │ ├── GrTextContext.h │ │ │ │ ├── GrTexture.h │ │ │ │ ├── GrTypes.h │ │ │ │ ├── GrUserConfig.h │ │ │ │ ├── SkGpuCanvas.h │ │ │ │ ├── SkGpuDevice.h │ │ │ │ ├── SkGr.h │ │ │ │ ├── SkGrTexturePixelRef.h │ │ │ │ └── gl │ │ │ │ │ ├── GrGLConfig.h │ │ │ │ │ ├── GrGLConfig_chrome.h │ │ │ │ │ ├── GrGLDefines.h │ │ │ │ │ ├── GrGLInterface.h │ │ │ │ │ ├── SkGLContext.h │ │ │ │ │ ├── SkMesaGLContext.h │ │ │ │ │ ├── SkNativeGLContext.h │ │ │ │ │ └── SkNullGLContext.h │ │ │ │ ├── images │ │ │ │ ├── SkBitmapRegionDecoder.h │ │ │ │ ├── SkFlipPixelRef.h │ │ │ │ ├── SkImageDecoder.h │ │ │ │ ├── SkImageEncoder.h │ │ │ │ ├── SkImageRef.h │ │ │ │ ├── SkImageRef_GlobalPool.h │ │ │ │ ├── SkJpegUtility.h │ │ │ │ ├── SkMovie.h │ │ │ │ └── SkPageFlipper.h │ │ │ │ ├── pdf │ │ │ │ ├── SkBitSet.h │ │ │ │ ├── SkPDFCatalog.h │ │ │ │ ├── SkPDFDevice.h │ │ │ │ ├── SkPDFDocument.h │ │ │ │ ├── SkPDFFont.h │ │ │ │ ├── SkPDFFormXObject.h │ │ │ │ ├── SkPDFGraphicState.h │ │ │ │ ├── SkPDFImage.h │ │ │ │ ├── SkPDFPage.h │ │ │ │ ├── SkPDFShader.h │ │ │ │ ├── SkPDFStream.h │ │ │ │ ├── SkPDFTypes.h │ │ │ │ └── SkPDFUtils.h │ │ │ │ ├── pipe │ │ │ │ └── SkGPipe.h │ │ │ │ ├── ports │ │ │ │ ├── SkHarfBuzzFont.h │ │ │ │ ├── SkStream_Win.h │ │ │ │ ├── SkTypeface_mac.h │ │ │ │ └── SkTypeface_win.h │ │ │ │ ├── text │ │ │ │ └── SkTextLayout.h │ │ │ │ ├── utils │ │ │ │ ├── SkBoundaryPatch.h │ │ │ │ ├── SkCamera.h │ │ │ │ ├── SkCubicInterval.h │ │ │ │ ├── SkCullPoints.h │ │ │ │ ├── SkDeferredCanvas.h │ │ │ │ ├── SkDumpCanvas.h │ │ │ │ ├── SkInterpolator.h │ │ │ │ ├── SkJSON.h │ │ │ │ ├── SkLayer.h │ │ │ │ ├── SkMatrix44.h │ │ │ │ ├── SkMeshUtils.h │ │ │ │ ├── SkNWayCanvas.h │ │ │ │ ├── SkNinePatch.h │ │ │ │ ├── SkParse.h │ │ │ │ ├── SkParsePaint.h │ │ │ │ ├── SkParsePath.h │ │ │ │ ├── SkProxyCanvas.h │ │ │ │ ├── SkSfntUtils.h │ │ │ │ ├── SkTextBox.h │ │ │ │ ├── SkUnitMappers.h │ │ │ │ ├── SkWGL.h │ │ │ │ ├── android │ │ │ │ │ └── AndroidKeyToSkKey.h │ │ │ │ ├── ios │ │ │ │ │ └── SkStream_NSData.h │ │ │ │ ├── mac │ │ │ │ │ └── SkCGUtils.h │ │ │ │ ├── unix │ │ │ │ │ ├── XkeysToSkKeys.h │ │ │ │ │ └── keysym2ucs.h │ │ │ │ └── win │ │ │ │ │ ├── SkAutoCoInitialize.h │ │ │ │ │ ├── SkHRESULT.h │ │ │ │ │ ├── SkIStream.h │ │ │ │ │ └── SkTScopedComPtr.h │ │ │ │ ├── views │ │ │ │ ├── SkApplication.h │ │ │ │ ├── SkBGViewArtist.h │ │ │ │ ├── SkBorderView.h │ │ │ │ ├── SkEvent.h │ │ │ │ ├── SkEventSink.h │ │ │ │ ├── SkImageView.h │ │ │ │ ├── SkKey.h │ │ │ │ ├── SkOSMenu.h │ │ │ │ ├── SkOSWindow_Android.h │ │ │ │ ├── SkOSWindow_Mac.h │ │ │ │ ├── SkOSWindow_SDL.h │ │ │ │ ├── SkOSWindow_Unix.h │ │ │ │ ├── SkOSWindow_Win.h │ │ │ │ ├── SkOSWindow_iOS.h │ │ │ │ ├── SkOSWindow_wxwidgets.h │ │ │ │ ├── SkProgressBarView.h │ │ │ │ ├── SkScrollBarView.h │ │ │ │ ├── SkStackViewLayout.h │ │ │ │ ├── SkSystemEventTypes.h │ │ │ │ ├── SkTouchGesture.h │ │ │ │ ├── SkView.h │ │ │ │ ├── SkViewInflate.h │ │ │ │ ├── SkWidget.h │ │ │ │ ├── SkWidgetViews.h │ │ │ │ └── SkWindow.h │ │ │ │ └── xml │ │ │ │ ├── SkBML_WXMLParser.h │ │ │ │ ├── SkBML_XMLParser.h │ │ │ │ ├── SkDOM.h │ │ │ │ ├── SkJS.h │ │ │ │ ├── SkXMLParser.h │ │ │ │ └── SkXMLWriter.h │ │ ├── frameworks │ │ │ ├── av │ │ │ │ └── include │ │ │ │ │ ├── camera │ │ │ │ │ ├── Camera.h │ │ │ │ │ ├── CameraParameters.h │ │ │ │ │ ├── ICamera.h │ │ │ │ │ ├── ICameraClient.h │ │ │ │ │ ├── ICameraRecordingProxy.h │ │ │ │ │ ├── ICameraRecordingProxyListener.h │ │ │ │ │ └── ICameraService.h │ │ │ │ │ ├── common_time │ │ │ │ │ ├── ICommonClock.h │ │ │ │ │ ├── ICommonTimeConfig.h │ │ │ │ │ ├── cc_helper.h │ │ │ │ │ └── local_clock.h │ │ │ │ │ ├── drm │ │ │ │ │ ├── DrmConstraints.h │ │ │ │ │ ├── DrmConvertedStatus.h │ │ │ │ │ ├── DrmInfo.h │ │ │ │ │ ├── DrmInfoEvent.h │ │ │ │ │ ├── DrmInfoRequest.h │ │ │ │ │ ├── DrmInfoStatus.h │ │ │ │ │ ├── DrmManagerClient.h │ │ │ │ │ ├── DrmMetadata.h │ │ │ │ │ ├── DrmRights.h │ │ │ │ │ ├── DrmSupportInfo.h │ │ │ │ │ └── drm_framework_common.h │ │ │ │ │ ├── media │ │ │ │ │ ├── AudioEffect.h │ │ │ │ │ ├── AudioParameter.h │ │ │ │ │ ├── AudioRecord.h │ │ │ │ │ ├── AudioSystem.h │ │ │ │ │ ├── AudioTrack.h │ │ │ │ │ ├── EffectsFactoryApi.h │ │ │ │ │ ├── IAudioFlinger.h │ │ │ │ │ ├── IAudioFlingerClient.h │ │ │ │ │ ├── IAudioPolicyService.h │ │ │ │ │ ├── IAudioRecord.h │ │ │ │ │ ├── IAudioTrack.h │ │ │ │ │ ├── ICrypto.h │ │ │ │ │ ├── IEffect.h │ │ │ │ │ ├── IEffectClient.h │ │ │ │ │ ├── IMediaDeathNotifier.h │ │ │ │ │ ├── IMediaMetadataRetriever.h │ │ │ │ │ ├── IMediaPlayer.h │ │ │ │ │ ├── IMediaPlayerClient.h │ │ │ │ │ ├── IMediaPlayerService.h │ │ │ │ │ ├── IMediaRecorder.h │ │ │ │ │ ├── IMediaRecorderClient.h │ │ │ │ │ ├── IOMX.h │ │ │ │ │ ├── IStreamSource.h │ │ │ │ │ ├── JetPlayer.h │ │ │ │ │ ├── MediaMetadataRetrieverInterface.h │ │ │ │ │ ├── MediaPlayerInterface.h │ │ │ │ │ ├── MediaProfiles.h │ │ │ │ │ ├── MediaRecorderBase.h │ │ │ │ │ ├── MemoryLeakTrackUtil.h │ │ │ │ │ ├── Metadata.h │ │ │ │ │ ├── SoundPool.h │ │ │ │ │ ├── ToneGenerator.h │ │ │ │ │ ├── Visualizer.h │ │ │ │ │ ├── mediametadataretriever.h │ │ │ │ │ ├── mediaplayer.h │ │ │ │ │ ├── mediarecorder.h │ │ │ │ │ ├── mediascanner.h │ │ │ │ │ └── stagefright │ │ │ │ │ │ ├── AACWriter.h │ │ │ │ │ │ ├── ACodec.h │ │ │ │ │ │ ├── AMRWriter.h │ │ │ │ │ │ ├── AudioPlayer.h │ │ │ │ │ │ ├── AudioSource.h │ │ │ │ │ │ ├── CameraSource.h │ │ │ │ │ │ ├── CameraSourceTimeLapse.h │ │ │ │ │ │ ├── ColorConverter.h │ │ │ │ │ │ ├── DataSource.h │ │ │ │ │ │ ├── FileSource.h │ │ │ │ │ │ ├── JPEGSource.h │ │ │ │ │ │ ├── MPEG2TSWriter.h │ │ │ │ │ │ ├── MPEG4Writer.h │ │ │ │ │ │ ├── MediaBuffer.h │ │ │ │ │ │ ├── MediaBufferGroup.h │ │ │ │ │ │ ├── MediaCodec.h │ │ │ │ │ │ ├── MediaCodecList.h │ │ │ │ │ │ ├── MediaDefs.h │ │ │ │ │ │ ├── MediaErrors.h │ │ │ │ │ │ ├── MediaExtractor.h │ │ │ │ │ │ ├── MediaSource.h │ │ │ │ │ │ ├── MediaWriter.h │ │ │ │ │ │ ├── MetaData.h │ │ │ │ │ │ ├── NativeWindowWrapper.h │ │ │ │ │ │ ├── NuMediaExtractor.h │ │ │ │ │ │ ├── OMXClient.h │ │ │ │ │ │ ├── OMXCodec.h │ │ │ │ │ │ ├── SkipCutBuffer.h │ │ │ │ │ │ ├── StagefrightMediaScanner.h │ │ │ │ │ │ ├── SurfaceMediaSource.h │ │ │ │ │ │ ├── TimeSource.h │ │ │ │ │ │ ├── Utils.h │ │ │ │ │ │ ├── YUVCanvas.h │ │ │ │ │ │ ├── YUVImage.h │ │ │ │ │ │ ├── foundation │ │ │ │ │ │ ├── AAtomizer.h │ │ │ │ │ │ ├── ABase.h │ │ │ │ │ │ ├── ABitReader.h │ │ │ │ │ │ ├── ABuffer.h │ │ │ │ │ │ ├── ADebug.h │ │ │ │ │ │ ├── AHandler.h │ │ │ │ │ │ ├── AHandlerReflector.h │ │ │ │ │ │ ├── AHierarchicalStateMachine.h │ │ │ │ │ │ ├── ALooper.h │ │ │ │ │ │ ├── ALooperRoster.h │ │ │ │ │ │ ├── AMessage.h │ │ │ │ │ │ ├── AString.h │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ └── hexdump.h │ │ │ │ │ │ └── timedtext │ │ │ │ │ │ └── TimedTextDriver.h │ │ │ │ │ └── private │ │ │ │ │ ├── README │ │ │ │ │ └── media │ │ │ │ │ ├── AudioEffectShared.h │ │ │ │ │ ├── AudioTrackShared.h │ │ │ │ │ └── VideoFrame.h │ │ │ ├── base │ │ │ │ ├── include │ │ │ │ │ ├── android_runtime │ │ │ │ │ │ ├── AndroidRuntime.h │ │ │ │ │ │ ├── android_app_NativeActivity.h │ │ │ │ │ │ ├── android_content_res_Configuration.h │ │ │ │ │ │ ├── android_graphics_SurfaceTexture.h │ │ │ │ │ │ ├── android_util_AssetManager.h │ │ │ │ │ │ └── android_view_Surface.h │ │ │ │ │ ├── androidfw │ │ │ │ │ │ ├── Asset.h │ │ │ │ │ │ ├── AssetDir.h │ │ │ │ │ │ ├── AssetManager.h │ │ │ │ │ │ ├── BackupHelpers.h │ │ │ │ │ │ ├── CursorWindow.h │ │ │ │ │ │ ├── Input.h │ │ │ │ │ │ ├── InputDevice.h │ │ │ │ │ │ ├── InputTransport.h │ │ │ │ │ │ ├── KeyCharacterMap.h │ │ │ │ │ │ ├── KeyLayoutMap.h │ │ │ │ │ │ ├── Keyboard.h │ │ │ │ │ │ ├── KeycodeLabels.h │ │ │ │ │ │ ├── ObbFile.h │ │ │ │ │ │ ├── PowerManager.h │ │ │ │ │ │ ├── ResourceTypes.h │ │ │ │ │ │ ├── StreamingZipInflater.h │ │ │ │ │ │ ├── VelocityControl.h │ │ │ │ │ │ ├── VelocityTracker.h │ │ │ │ │ │ └── VirtualKeyMap.h │ │ │ │ │ ├── diskusage │ │ │ │ │ │ └── dirsize.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── hwui │ │ │ │ │ │ │ └── DrawGlInfo.h │ │ │ │ │ └── storage │ │ │ │ │ │ ├── IMountService.h │ │ │ │ │ │ ├── IMountServiceListener.h │ │ │ │ │ │ ├── IMountShutdownObserver.h │ │ │ │ │ │ └── IObbActionListener.h │ │ │ │ └── native │ │ │ │ │ ├── android │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── asset_manager.cpp │ │ │ │ │ ├── configuration.cpp │ │ │ │ │ ├── input.cpp │ │ │ │ │ ├── looper.cpp │ │ │ │ │ ├── native_activity.cpp │ │ │ │ │ ├── native_window.cpp │ │ │ │ │ ├── obb.cpp │ │ │ │ │ ├── sensor.cpp │ │ │ │ │ └── storage_manager.cpp │ │ │ │ │ ├── copy-to-ndk.sh │ │ │ │ │ └── graphics │ │ │ │ │ └── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── bitmap.cpp │ │ │ ├── native │ │ │ │ ├── include │ │ │ │ │ ├── android │ │ │ │ │ │ ├── asset_manager.h │ │ │ │ │ │ ├── asset_manager_jni.h │ │ │ │ │ │ ├── bitmap.h │ │ │ │ │ │ ├── configuration.h │ │ │ │ │ │ ├── input.h │ │ │ │ │ │ ├── keycodes.h │ │ │ │ │ │ ├── looper.h │ │ │ │ │ │ ├── native_activity.h │ │ │ │ │ │ ├── native_window.h │ │ │ │ │ │ ├── native_window_jni.h │ │ │ │ │ │ ├── obb.h │ │ │ │ │ │ ├── rect.h │ │ │ │ │ │ ├── sensor.h │ │ │ │ │ │ ├── storage_manager.h │ │ │ │ │ │ └── window.h │ │ │ │ │ ├── binder │ │ │ │ │ │ ├── Binder.h │ │ │ │ │ │ ├── BinderService.h │ │ │ │ │ │ ├── BpBinder.h │ │ │ │ │ │ ├── IBinder.h │ │ │ │ │ │ ├── IInterface.h │ │ │ │ │ │ ├── IMemory.h │ │ │ │ │ │ ├── IPCThreadState.h │ │ │ │ │ │ ├── IPermissionController.h │ │ │ │ │ │ ├── IServiceManager.h │ │ │ │ │ │ ├── MemoryBase.h │ │ │ │ │ │ ├── MemoryDealer.h │ │ │ │ │ │ ├── MemoryHeapBase.h │ │ │ │ │ │ ├── Parcel.h │ │ │ │ │ │ ├── PermissionCache.h │ │ │ │ │ │ └── ProcessState.h │ │ │ │ │ ├── cpustats │ │ │ │ │ │ ├── CentralTendencyStatistics.h │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ └── ThreadCpuUsage.h │ │ │ │ │ ├── gui │ │ │ │ │ │ ├── BitTube.h │ │ │ │ │ │ ├── BufferQueue.h │ │ │ │ │ │ ├── DisplayEventReceiver.h │ │ │ │ │ │ ├── DummyConsumer.h │ │ │ │ │ │ ├── IDisplayEventConnection.h │ │ │ │ │ │ ├── IGraphicBufferAlloc.h │ │ │ │ │ │ ├── ISensorEventConnection.h │ │ │ │ │ │ ├── ISensorServer.h │ │ │ │ │ │ ├── ISurface.h │ │ │ │ │ │ ├── ISurfaceComposer.h │ │ │ │ │ │ ├── ISurfaceComposerClient.h │ │ │ │ │ │ ├── ISurfaceTexture.h │ │ │ │ │ │ ├── Sensor.h │ │ │ │ │ │ ├── SensorEventQueue.h │ │ │ │ │ │ ├── SensorManager.h │ │ │ │ │ │ ├── Surface.h │ │ │ │ │ │ ├── SurfaceComposerClient.h │ │ │ │ │ │ ├── SurfaceTexture.h │ │ │ │ │ │ └── SurfaceTextureClient.h │ │ │ │ │ ├── media │ │ │ │ │ │ ├── editor │ │ │ │ │ │ │ └── II420ColorConverter.h │ │ │ │ │ │ ├── hardware │ │ │ │ │ │ │ ├── CryptoAPI.h │ │ │ │ │ │ │ ├── HardwareAPI.h │ │ │ │ │ │ │ ├── MetadataBufferType.h │ │ │ │ │ │ │ └── OMXPluginBase.h │ │ │ │ │ │ └── openmax │ │ │ │ │ │ │ ├── OMX_Audio.h │ │ │ │ │ │ │ ├── OMX_Component.h │ │ │ │ │ │ │ ├── OMX_ContentPipe.h │ │ │ │ │ │ │ ├── OMX_Core.h │ │ │ │ │ │ │ ├── OMX_IVCommon.h │ │ │ │ │ │ │ ├── OMX_Image.h │ │ │ │ │ │ │ ├── OMX_Index.h │ │ │ │ │ │ │ ├── OMX_Other.h │ │ │ │ │ │ │ ├── OMX_Types.h │ │ │ │ │ │ │ └── OMX_Video.h │ │ │ │ │ ├── powermanager │ │ │ │ │ │ ├── IPowerManager.h │ │ │ │ │ │ └── PowerManager.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── binder │ │ │ │ │ │ │ ├── Static.h │ │ │ │ │ │ │ └── binder_module.h │ │ │ │ │ │ ├── gui │ │ │ │ │ │ │ ├── ComposerService.h │ │ │ │ │ │ │ ├── LayerState.h │ │ │ │ │ │ │ └── SharedBufferStack.h │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ └── RegionHelper.h │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── Static.h │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ANativeObjectBase.h │ │ │ │ │ │ ├── DisplayInfo.h │ │ │ │ │ │ ├── FramebufferNativeWindow.h │ │ │ │ │ │ ├── GraphicBuffer.h │ │ │ │ │ │ ├── GraphicBufferAllocator.h │ │ │ │ │ │ ├── GraphicBufferMapper.h │ │ │ │ │ │ ├── PixelFormat.h │ │ │ │ │ │ ├── Point.h │ │ │ │ │ │ ├── Rect.h │ │ │ │ │ │ └── Region.h │ │ │ │ │ └── utils │ │ │ │ │ │ ├── AndroidThreads.h │ │ │ │ │ │ ├── Atomic.h │ │ │ │ │ │ ├── BasicHashtable.h │ │ │ │ │ │ ├── BitSet.h │ │ │ │ │ │ ├── BlobCache.h │ │ │ │ │ │ ├── BufferedTextOutput.h │ │ │ │ │ │ ├── ByteOrder.h │ │ │ │ │ │ ├── CallStack.h │ │ │ │ │ │ ├── Compat.h │ │ │ │ │ │ ├── Condition.h │ │ │ │ │ │ ├── Debug.h │ │ │ │ │ │ ├── Endian.h │ │ │ │ │ │ ├── Errors.h │ │ │ │ │ │ ├── FileMap.h │ │ │ │ │ │ ├── Flattenable.h │ │ │ │ │ │ ├── Functor.h │ │ │ │ │ │ ├── GenerationCache.h │ │ │ │ │ │ ├── KeyedVector.h │ │ │ │ │ │ ├── LinearTransform.h │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ ├── Log.h │ │ │ │ │ │ ├── Looper.h │ │ │ │ │ │ ├── Mutex.h │ │ │ │ │ │ ├── PropertyMap.h │ │ │ │ │ │ ├── RWLock.h │ │ │ │ │ │ ├── RefBase.h │ │ │ │ │ │ ├── SharedBuffer.h │ │ │ │ │ │ ├── Singleton.h │ │ │ │ │ │ ├── SortedVector.h │ │ │ │ │ │ ├── StopWatch.h │ │ │ │ │ │ ├── String16.h │ │ │ │ │ │ ├── String8.h │ │ │ │ │ │ ├── StringArray.h │ │ │ │ │ │ ├── StrongPointer.h │ │ │ │ │ │ ├── SystemClock.h │ │ │ │ │ │ ├── TextOutput.h │ │ │ │ │ │ ├── Thread.h │ │ │ │ │ │ ├── ThreadDefs.h │ │ │ │ │ │ ├── Timers.h │ │ │ │ │ │ ├── Tokenizer.h │ │ │ │ │ │ ├── Trace.h │ │ │ │ │ │ ├── TypeHelpers.h │ │ │ │ │ │ ├── Unicode.h │ │ │ │ │ │ ├── UniquePtr.h │ │ │ │ │ │ ├── Vector.h │ │ │ │ │ │ ├── VectorImpl.h │ │ │ │ │ │ ├── WorkQueue.h │ │ │ │ │ │ ├── ZipFileCRO.h │ │ │ │ │ │ ├── ZipFileRO.h │ │ │ │ │ │ ├── ZipUtils.h │ │ │ │ │ │ ├── ashmem.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ └── threads.h │ │ │ │ └── opengl │ │ │ │ │ └── include │ │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ └── eglplatform.h │ │ │ │ │ ├── ETC1 │ │ │ │ │ └── etc1.h │ │ │ │ │ ├── GLES │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── gl.h │ │ │ │ │ ├── glext.h │ │ │ │ │ └── glplatform.h │ │ │ │ │ ├── GLES2 │ │ │ │ │ ├── gl2.h │ │ │ │ │ ├── gl2ext.h │ │ │ │ │ └── gl2platform.h │ │ │ │ │ └── KHR │ │ │ │ │ └── khrplatform.h │ │ │ └── wilhelm │ │ │ │ └── include │ │ │ │ ├── OMXAL │ │ │ │ ├── OpenMAXAL.h │ │ │ │ ├── OpenMAXAL_Android.h │ │ │ │ └── OpenMAXAL_Platform.h │ │ │ │ └── SLES │ │ │ │ ├── OpenSLES.h │ │ │ │ ├── OpenSLES_Android.h │ │ │ │ ├── OpenSLES_AndroidConfiguration.h │ │ │ │ ├── OpenSLES_AndroidMetadata.h │ │ │ │ └── OpenSLES_Platform.h │ │ ├── hardware │ │ │ └── libhardware │ │ │ │ └── include │ │ │ │ └── hardware │ │ │ │ ├── audio.h │ │ │ │ ├── audio_effect.h │ │ │ │ ├── audio_policy.h │ │ │ │ ├── camera.h │ │ │ │ ├── camera2.h │ │ │ │ ├── camera_common.h │ │ │ │ ├── fb.h │ │ │ │ ├── gps.h │ │ │ │ ├── gralloc.h │ │ │ │ ├── hardware.h │ │ │ │ ├── hwcomposer.h │ │ │ │ ├── hwcomposer_defs.h │ │ │ │ ├── keymaster.h │ │ │ │ ├── lights.h │ │ │ │ ├── local_time_hal.h │ │ │ │ ├── nfc.h │ │ │ │ ├── power.h │ │ │ │ ├── qemu_pipe.h │ │ │ │ ├── qemud.h │ │ │ │ └── sensors.h │ │ ├── libOpenSLES.so │ │ ├── libandroid_runtime.so │ │ ├── libcutils.so │ │ ├── libgui.so │ │ ├── libmedia.so │ │ ├── libnativehelper.so │ │ ├── libnativehelper │ │ │ ├── Android.mk │ │ │ ├── JNIHelp.cpp │ │ │ ├── MODULE_LICENSE_APACHE2 │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ └── include │ │ │ │ └── nativehelper │ │ │ │ ├── JNIHelp.h │ │ │ │ └── jni.h │ │ ├── libskia.so │ │ ├── libui.so │ │ ├── libutils.so │ │ └── system │ │ │ └── core │ │ │ └── include │ │ │ ├── android │ │ │ └── log.h │ │ │ ├── arch │ │ │ ├── darwin-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── freebsd-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-arm │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-ppc │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-sh │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── target_linux-x86 │ │ │ │ └── AndroidConfig.h │ │ │ └── windows │ │ │ │ └── AndroidConfig.h │ │ │ ├── corkscrew │ │ │ ├── backtrace.h │ │ │ ├── demangle.h │ │ │ ├── map_info.h │ │ │ ├── ptrace.h │ │ │ └── symbol_table.h │ │ │ ├── ctest │ │ │ └── ctest.h │ │ │ ├── cutils │ │ │ ├── abort_socket.h │ │ │ ├── android_reboot.h │ │ │ ├── array.h │ │ │ ├── ashmem.h │ │ │ ├── atomic-arm.h │ │ │ ├── atomic-inline.h │ │ │ ├── atomic-x86.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── compiler.h │ │ │ ├── config_utils.h │ │ │ ├── cpu_info.h │ │ │ ├── debugger.h │ │ │ ├── dir_hash.h │ │ │ ├── event_tag_map.h │ │ │ ├── hashmap.h │ │ │ ├── iosched_policy.h │ │ │ ├── jstring.h │ │ │ ├── klog.h │ │ │ ├── list.h │ │ │ ├── log.h │ │ │ ├── logd.h │ │ │ ├── logger.h │ │ │ ├── logprint.h │ │ │ ├── memory.h │ │ │ ├── misc.h │ │ │ ├── mq.h │ │ │ ├── mspace.h │ │ │ ├── native_handle.h │ │ │ ├── open_memstream.h │ │ │ ├── partition_utils.h │ │ │ ├── process_name.h │ │ │ ├── properties.h │ │ │ ├── qsort_r_compat.h │ │ │ ├── qtaguid.h │ │ │ ├── record_stream.h │ │ │ ├── sched_policy.h │ │ │ ├── selector.h │ │ │ ├── sockets.h │ │ │ ├── str_parms.h │ │ │ ├── threads.h │ │ │ ├── tztime.h │ │ │ ├── uevent.h │ │ │ ├── uio.h │ │ │ └── zygote.h │ │ │ ├── diskconfig │ │ │ └── diskconfig.h │ │ │ ├── ion │ │ │ └── ion.h │ │ │ ├── mincrypt │ │ │ ├── rsa.h │ │ │ └── sha.h │ │ │ ├── netutils │ │ │ ├── dhcp.h │ │ │ └── ifc.h │ │ │ ├── pixelflinger │ │ │ ├── format.h │ │ │ └── pixelflinger.h │ │ │ ├── private │ │ │ ├── android_filesystem_config.h │ │ │ └── pixelflinger │ │ │ │ ├── ggl_context.h │ │ │ │ └── ggl_fixed.h │ │ │ ├── sync │ │ │ └── sync.h │ │ │ ├── system │ │ │ ├── audio.h │ │ │ ├── audio_policy.h │ │ │ ├── camera.h │ │ │ ├── graphics.h │ │ │ └── window.h │ │ │ ├── sysutils │ │ │ ├── FrameworkClient.h │ │ │ ├── FrameworkCommand.h │ │ │ ├── FrameworkListener.h │ │ │ ├── List.h │ │ │ ├── NetlinkEvent.h │ │ │ ├── NetlinkListener.h │ │ │ ├── ServiceManager.h │ │ │ ├── SocketClient.h │ │ │ └── SocketListener.h │ │ │ ├── usbhost │ │ │ └── usbhost.h │ │ │ └── zipfile │ │ │ └── zipfile.h │ ├── aosp-18 │ │ ├── bionic │ │ │ └── libc │ │ │ │ └── include │ │ │ │ ├── alloca.h │ │ │ │ ├── android │ │ │ │ └── api-level.h │ │ │ │ ├── ar.h │ │ │ │ ├── arpa │ │ │ │ ├── inet.h │ │ │ │ ├── nameser.h │ │ │ │ └── telnet.h │ │ │ │ ├── assert.h │ │ │ │ ├── byteswap.h │ │ │ │ ├── ctype.h │ │ │ │ ├── dirent.h │ │ │ │ ├── dlfcn.h │ │ │ │ ├── elf.h │ │ │ │ ├── endian.h │ │ │ │ ├── err.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── features.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── fts.h │ │ │ │ ├── ftw.h │ │ │ │ ├── getopt.h │ │ │ │ ├── grp.h │ │ │ │ ├── inttypes.h │ │ │ │ ├── lastlog.h │ │ │ │ ├── libgen.h │ │ │ │ ├── limits.h │ │ │ │ ├── link.h │ │ │ │ ├── locale.h │ │ │ │ ├── malloc.h │ │ │ │ ├── memory.h │ │ │ │ ├── mntent.h │ │ │ │ ├── net │ │ │ │ ├── ethernet.h │ │ │ │ ├── ethertypes.h │ │ │ │ ├── if.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── if_ieee1394.h │ │ │ │ ├── if_packet.h │ │ │ │ ├── if_types.h │ │ │ │ └── route.h │ │ │ │ ├── netdb.h │ │ │ │ ├── netinet │ │ │ │ ├── ether.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── in.h │ │ │ │ ├── in6.h │ │ │ │ ├── in_systm.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip_icmp.h │ │ │ │ ├── tcp.h │ │ │ │ └── udp.h │ │ │ │ ├── netpacket │ │ │ │ └── packet.h │ │ │ │ ├── nsswitch.h │ │ │ │ ├── pathconf.h │ │ │ │ ├── paths.h │ │ │ │ ├── poll.h │ │ │ │ ├── pthread.h │ │ │ │ ├── pwd.h │ │ │ │ ├── regex.h │ │ │ │ ├── resolv.h │ │ │ │ ├── sched.h │ │ │ │ ├── search.h │ │ │ │ ├── semaphore.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── sgtty.h │ │ │ │ ├── sha1.h │ │ │ │ ├── signal.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── string.h │ │ │ │ ├── strings.h │ │ │ │ ├── sys │ │ │ │ ├── _errdefs.h │ │ │ │ ├── _sigdefs.h │ │ │ │ ├── _system_properties.h │ │ │ │ ├── _types.h │ │ │ │ ├── atomics.h │ │ │ │ ├── auxv.h │ │ │ │ ├── cachectl.h │ │ │ │ ├── capability.h │ │ │ │ ├── cdefs.h │ │ │ │ ├── cdefs_elf.h │ │ │ │ ├── dirent.h │ │ │ │ ├── endian.h │ │ │ │ ├── endian.h.bak │ │ │ │ ├── epoll.h │ │ │ │ ├── errno.h │ │ │ │ ├── eventfd.h │ │ │ │ ├── exec_elf.h │ │ │ │ ├── file.h │ │ │ │ ├── fsuid.h │ │ │ │ ├── glibc-syscalls.h │ │ │ │ ├── inotify.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctl_compat.h │ │ │ │ ├── ipc.h │ │ │ │ ├── klog.h │ │ │ │ ├── limits.h │ │ │ │ ├── mman.h │ │ │ │ ├── mount.h │ │ │ │ ├── param.h │ │ │ │ ├── personality.h │ │ │ │ ├── poll.h │ │ │ │ ├── prctl.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── queue.h │ │ │ │ ├── reboot.h │ │ │ │ ├── resource.h │ │ │ │ ├── select.h │ │ │ │ ├── sendfile.h │ │ │ │ ├── sha1.h │ │ │ │ ├── signal.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── socket.h │ │ │ │ ├── socketcalls.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── syscall.h │ │ │ │ ├── sysconf.h │ │ │ │ ├── sysinfo.h │ │ │ │ ├── syslimits.h │ │ │ │ ├── sysmacros.h │ │ │ │ ├── system_properties.h │ │ │ │ ├── time.h │ │ │ │ ├── timeb.h │ │ │ │ ├── times.h │ │ │ │ ├── ttychars.h │ │ │ │ ├── ttydefaults.h │ │ │ │ ├── ttydev.h │ │ │ │ ├── types.h │ │ │ │ ├── uio.h │ │ │ │ ├── un.h │ │ │ │ ├── utime.h │ │ │ │ ├── utsname.h │ │ │ │ ├── vfs.h │ │ │ │ ├── vt.h │ │ │ │ ├── wait.h │ │ │ │ └── xattr.h │ │ │ │ ├── syslog.h │ │ │ │ ├── termio.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── time64.h │ │ │ │ ├── unistd.h │ │ │ │ ├── util.h │ │ │ │ ├── utime.h │ │ │ │ ├── utmp.h │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ ├── external │ │ │ └── skia │ │ │ │ └── include │ │ │ │ ├── animator │ │ │ │ ├── SkAnimator.h │ │ │ │ └── SkAnimatorView.h │ │ │ │ ├── config │ │ │ │ └── sk_stdint.h │ │ │ │ ├── core │ │ │ │ ├── Sk64.h │ │ │ │ ├── SkAdvancedTypefaceMetrics.h │ │ │ │ ├── SkAnnotation.h │ │ │ │ ├── SkBitmap.h │ │ │ │ ├── SkBlitRow.h │ │ │ │ ├── SkBounder.h │ │ │ │ ├── SkCanvas.h │ │ │ │ ├── SkChecksum.h │ │ │ │ ├── SkChunkAlloc.h │ │ │ │ ├── SkClipStack.h │ │ │ │ ├── SkColor.h │ │ │ │ ├── SkColorFilter.h │ │ │ │ ├── SkColorPriv.h │ │ │ │ ├── SkColorShader.h │ │ │ │ ├── SkColorTable.h │ │ │ │ ├── SkComposeShader.h │ │ │ │ ├── SkData.h │ │ │ │ ├── SkDataSet.h │ │ │ │ ├── SkDeque.h │ │ │ │ ├── SkDevice.h │ │ │ │ ├── SkDeviceProperties.h │ │ │ │ ├── SkDither.h │ │ │ │ ├── SkDraw.h │ │ │ │ ├── SkDrawFilter.h │ │ │ │ ├── SkDrawLooper.h │ │ │ │ ├── SkEmptyShader.h │ │ │ │ ├── SkEndian.h │ │ │ │ ├── SkFixed.h │ │ │ │ ├── SkFlate.h │ │ │ │ ├── SkFlattenable.h │ │ │ │ ├── SkFlattenableBuffers.h │ │ │ │ ├── SkFloatBits.h │ │ │ │ ├── SkFloatingPoint.h │ │ │ │ ├── SkFontHost.h │ │ │ │ ├── SkGeometry.h │ │ │ │ ├── SkGraphics.h │ │ │ │ ├── SkImage.h │ │ │ │ ├── SkImageFilter.h │ │ │ │ ├── SkInstCnt.h │ │ │ │ ├── SkLanguage.h │ │ │ │ ├── SkLineClipper.h │ │ │ │ ├── SkMMapStream.h │ │ │ │ ├── SkMallocPixelRef.h │ │ │ │ ├── SkMask.h │ │ │ │ ├── SkMaskFilter.h │ │ │ │ ├── SkMath.h │ │ │ │ ├── SkMatrix.h │ │ │ │ ├── SkMetaData.h │ │ │ │ ├── SkOSFile.h │ │ │ │ ├── SkPackBits.h │ │ │ │ ├── SkPaint.h │ │ │ │ ├── SkPath.h │ │ │ │ ├── SkPathEffect.h │ │ │ │ ├── SkPathMeasure.h │ │ │ │ ├── SkPicture.h │ │ │ │ ├── SkPixelRef.h │ │ │ │ ├── SkPoint.h │ │ │ │ ├── SkPostConfig.h │ │ │ │ ├── SkPreConfig.h │ │ │ │ ├── SkRRect.h │ │ │ │ ├── SkRasterizer.h │ │ │ │ ├── SkReader32.h │ │ │ │ ├── SkRect.h │ │ │ │ ├── SkRefCnt.h │ │ │ │ ├── SkRegion.h │ │ │ │ ├── SkScalar.h │ │ │ │ ├── SkScalarCompare.h │ │ │ │ ├── SkSerializationHelpers.h │ │ │ │ ├── SkShader.h │ │ │ │ ├── SkSize.h │ │ │ │ ├── SkStream.h │ │ │ │ ├── SkString.h │ │ │ │ ├── SkStringUtils.h │ │ │ │ ├── SkStrokeRec.h │ │ │ │ ├── SkSurface.h │ │ │ │ ├── SkTArray.h │ │ │ │ ├── SkTDArray.h │ │ │ │ ├── SkTDStack.h │ │ │ │ ├── SkTDict.h │ │ │ │ ├── SkTInternalLList.h │ │ │ │ ├── SkTLazy.h │ │ │ │ ├── SkTRegistry.h │ │ │ │ ├── SkTScopedPtr.h │ │ │ │ ├── SkTSearch.h │ │ │ │ ├── SkTemplates.h │ │ │ │ ├── SkThread.h │ │ │ │ ├── SkThread_platform.h │ │ │ │ ├── SkTileGridPicture.h │ │ │ │ ├── SkTime.h │ │ │ │ ├── SkTrace.h │ │ │ │ ├── SkTypeface.h │ │ │ │ ├── SkTypes.h │ │ │ │ ├── SkUnPreMultiply.h │ │ │ │ ├── SkUnitMapper.h │ │ │ │ ├── SkUserConfig.h │ │ │ │ ├── SkUtils.h │ │ │ │ ├── SkWeakRefCnt.h │ │ │ │ ├── SkWriter32.h │ │ │ │ └── SkXfermode.h │ │ │ │ ├── device │ │ │ │ └── xps │ │ │ │ │ ├── SkConstexprMath.h │ │ │ │ │ └── SkXPSDevice.h │ │ │ │ ├── effects │ │ │ │ ├── Sk1DPathEffect.h │ │ │ │ ├── Sk2DPathEffect.h │ │ │ │ ├── SkArithmeticMode.h │ │ │ │ ├── SkAvoidXfermode.h │ │ │ │ ├── SkBicubicImageFilter.h │ │ │ │ ├── SkBitmapSource.h │ │ │ │ ├── SkBlendImageFilter.h │ │ │ │ ├── SkBlurDrawLooper.h │ │ │ │ ├── SkBlurImageFilter.h │ │ │ │ ├── SkBlurMaskFilter.h │ │ │ │ ├── SkColorFilterImageFilter.h │ │ │ │ ├── SkColorMatrix.h │ │ │ │ ├── SkColorMatrixFilter.h │ │ │ │ ├── SkCornerPathEffect.h │ │ │ │ ├── SkDashPathEffect.h │ │ │ │ ├── SkDiscretePathEffect.h │ │ │ │ ├── SkDisplacementMapEffect.h │ │ │ │ ├── SkDrawExtraPathEffect.h │ │ │ │ ├── SkEmbossMaskFilter.h │ │ │ │ ├── SkGradientShader.h │ │ │ │ ├── SkImageFilterUtils.h │ │ │ │ ├── SkKernel33MaskFilter.h │ │ │ │ ├── SkLayerDrawLooper.h │ │ │ │ ├── SkLayerRasterizer.h │ │ │ │ ├── SkLightingImageFilter.h │ │ │ │ ├── SkMagnifierImageFilter.h │ │ │ │ ├── SkMatrixConvolutionImageFilter.h │ │ │ │ ├── SkMergeImageFilter.h │ │ │ │ ├── SkMorphologyImageFilter.h │ │ │ │ ├── SkOffsetImageFilter.h │ │ │ │ ├── SkPaintFlagsDrawFilter.h │ │ │ │ ├── SkPixelXorXfermode.h │ │ │ │ ├── SkPorterDuff.h │ │ │ │ ├── SkSingleInputImageFilter.h │ │ │ │ ├── SkStippleMaskFilter.h │ │ │ │ ├── SkTableColorFilter.h │ │ │ │ ├── SkTableMaskFilter.h │ │ │ │ ├── SkTestImageFilters.h │ │ │ │ └── SkTransparentShader.h │ │ │ │ ├── gpu │ │ │ │ ├── GrAARectRenderer.h │ │ │ │ ├── GrBackendEffectFactory.h │ │ │ │ ├── GrClipData.h │ │ │ │ ├── GrColor.h │ │ │ │ ├── GrConfig.h │ │ │ │ ├── GrContext.h │ │ │ │ ├── GrContextFactory.h │ │ │ │ ├── GrEffect.h │ │ │ │ ├── GrEffectStage.h │ │ │ │ ├── GrEffectUnitTest.h │ │ │ │ ├── GrFontScaler.h │ │ │ │ ├── GrGlyph.h │ │ │ │ ├── GrKey.h │ │ │ │ ├── GrNoncopyable.h │ │ │ │ ├── GrPaint.h │ │ │ │ ├── GrPathRendererChain.h │ │ │ │ ├── GrPoint.h │ │ │ │ ├── GrRect.h │ │ │ │ ├── GrRefCnt.h │ │ │ │ ├── GrRenderTarget.h │ │ │ │ ├── GrResource.h │ │ │ │ ├── GrSurface.h │ │ │ │ ├── GrTBackendEffectFactory.h │ │ │ │ ├── GrTextContext.h │ │ │ │ ├── GrTexture.h │ │ │ │ ├── GrTextureAccess.h │ │ │ │ ├── GrTypes.h │ │ │ │ ├── GrUserConfig.h │ │ │ │ ├── SkGpuDevice.h │ │ │ │ ├── SkGr.h │ │ │ │ ├── SkGrPixelRef.h │ │ │ │ ├── SkGrTexturePixelRef.h │ │ │ │ └── gl │ │ │ │ │ ├── GrGLConfig.h │ │ │ │ │ ├── GrGLConfig_chrome.h │ │ │ │ │ ├── GrGLFunctions.h │ │ │ │ │ ├── GrGLInterface.h │ │ │ │ │ ├── SkANGLEGLContext.h │ │ │ │ │ ├── SkDebugGLContext.h │ │ │ │ │ ├── SkGLContext.h │ │ │ │ │ ├── SkMesaGLContext.h │ │ │ │ │ ├── SkNativeGLContext.h │ │ │ │ │ └── SkNullGLContext.h │ │ │ │ ├── images │ │ │ │ ├── SkBitmapFactory.h │ │ │ │ ├── SkBitmapRegionDecoder.h │ │ │ │ ├── SkFlipPixelRef.h │ │ │ │ ├── SkImageDecoder.h │ │ │ │ ├── SkImageEncoder.h │ │ │ │ ├── SkImageRef.h │ │ │ │ ├── SkImageRef_GlobalPool.h │ │ │ │ ├── SkImages.h │ │ │ │ ├── SkJpegUtility.h │ │ │ │ ├── SkMovie.h │ │ │ │ └── SkPageFlipper.h │ │ │ │ ├── pdf │ │ │ │ ├── SkPDFDevice.h │ │ │ │ └── SkPDFDocument.h │ │ │ │ ├── pipe │ │ │ │ └── SkGPipe.h │ │ │ │ ├── ports │ │ │ │ ├── SkHarfBuzzFont.h │ │ │ │ ├── SkTypeface_android.h │ │ │ │ ├── SkTypeface_mac.h │ │ │ │ └── SkTypeface_win.h │ │ │ │ ├── svg │ │ │ │ ├── SkSVGAttribute.h │ │ │ │ ├── SkSVGBase.h │ │ │ │ ├── SkSVGPaintState.h │ │ │ │ ├── SkSVGParser.h │ │ │ │ └── SkSVGTypes.h │ │ │ │ ├── text │ │ │ │ └── SkTextLayout.h │ │ │ │ ├── utils │ │ │ │ ├── SkBoundaryPatch.h │ │ │ │ ├── SkCamera.h │ │ │ │ ├── SkCondVar.h │ │ │ │ ├── SkCountdown.h │ │ │ │ ├── SkCubicInterval.h │ │ │ │ ├── SkCullPoints.h │ │ │ │ ├── SkDeferredCanvas.h │ │ │ │ ├── SkDumpCanvas.h │ │ │ │ ├── SkInterpolator.h │ │ │ │ ├── SkJSON.h │ │ │ │ ├── SkLayer.h │ │ │ │ ├── SkMatrix44.h │ │ │ │ ├── SkMeshUtils.h │ │ │ │ ├── SkNWayCanvas.h │ │ │ │ ├── SkNinePatch.h │ │ │ │ ├── SkNullCanvas.h │ │ │ │ ├── SkParse.h │ │ │ │ ├── SkParsePaint.h │ │ │ │ ├── SkParsePath.h │ │ │ │ ├── SkPictureUtils.h │ │ │ │ ├── SkProxyCanvas.h │ │ │ │ ├── SkRTConf.h │ │ │ │ ├── SkRandom.h │ │ │ │ ├── SkRunnable.h │ │ │ │ ├── SkThreadPool.h │ │ │ │ ├── SkUnitMappers.h │ │ │ │ ├── SkWGL.h │ │ │ │ ├── ios │ │ │ │ │ └── SkStream_NSData.h │ │ │ │ ├── mac │ │ │ │ │ └── SkCGUtils.h │ │ │ │ └── win │ │ │ │ │ ├── SkAutoCoInitialize.h │ │ │ │ │ ├── SkHRESULT.h │ │ │ │ │ ├── SkIStream.h │ │ │ │ │ └── SkTScopedComPtr.h │ │ │ │ ├── views │ │ │ │ ├── SkApplication.h │ │ │ │ ├── SkBGViewArtist.h │ │ │ │ ├── SkEvent.h │ │ │ │ ├── SkEventSink.h │ │ │ │ ├── SkKey.h │ │ │ │ ├── SkOSMenu.h │ │ │ │ ├── SkOSWindow_Android.h │ │ │ │ ├── SkOSWindow_Mac.h │ │ │ │ ├── SkOSWindow_NaCl.h │ │ │ │ ├── SkOSWindow_SDL.h │ │ │ │ ├── SkOSWindow_Unix.h │ │ │ │ ├── SkOSWindow_Win.h │ │ │ │ ├── SkOSWindow_iOS.h │ │ │ │ ├── SkStackViewLayout.h │ │ │ │ ├── SkSystemEventTypes.h │ │ │ │ ├── SkTextBox.h │ │ │ │ ├── SkTouchGesture.h │ │ │ │ ├── SkView.h │ │ │ │ ├── SkViewInflate.h │ │ │ │ ├── SkWidget.h │ │ │ │ ├── SkWindow.h │ │ │ │ ├── android │ │ │ │ │ └── AndroidKeyToSkKey.h │ │ │ │ ├── animated │ │ │ │ │ ├── SkBorderView.h │ │ │ │ │ ├── SkImageView.h │ │ │ │ │ ├── SkProgressBarView.h │ │ │ │ │ ├── SkScrollBarView.h │ │ │ │ │ └── SkWidgetViews.h │ │ │ │ └── unix │ │ │ │ │ ├── XkeysToSkKeys.h │ │ │ │ │ └── keysym2ucs.h │ │ │ │ └── xml │ │ │ │ ├── SkBML_WXMLParser.h │ │ │ │ ├── SkBML_XMLParser.h │ │ │ │ ├── SkDOM.h │ │ │ │ ├── SkJS.h │ │ │ │ ├── SkXMLParser.h │ │ │ │ └── SkXMLWriter.h │ │ ├── frameworks │ │ │ ├── av │ │ │ │ ├── NOTICE │ │ │ │ └── include │ │ │ │ │ ├── camera │ │ │ │ │ ├── Camera.h │ │ │ │ │ ├── CameraBase.h │ │ │ │ │ ├── CameraMetadata.h │ │ │ │ │ ├── CameraParameters.h │ │ │ │ │ ├── ICamera.h │ │ │ │ │ ├── ICameraClient.h │ │ │ │ │ ├── ICameraRecordingProxy.h │ │ │ │ │ ├── ICameraRecordingProxyListener.h │ │ │ │ │ ├── ICameraService.h │ │ │ │ │ ├── ICameraServiceListener.h │ │ │ │ │ ├── IProCameraCallbacks.h │ │ │ │ │ ├── IProCameraUser.h │ │ │ │ │ └── ProCamera.h │ │ │ │ │ ├── common_time │ │ │ │ │ ├── ICommonClock.h │ │ │ │ │ ├── ICommonTimeConfig.h │ │ │ │ │ ├── cc_helper.h │ │ │ │ │ └── local_clock.h │ │ │ │ │ ├── drm │ │ │ │ │ ├── DrmConstraints.h │ │ │ │ │ ├── DrmConvertedStatus.h │ │ │ │ │ ├── DrmInfo.h │ │ │ │ │ ├── DrmInfoEvent.h │ │ │ │ │ ├── DrmInfoRequest.h │ │ │ │ │ ├── DrmInfoStatus.h │ │ │ │ │ ├── DrmManagerClient.h │ │ │ │ │ ├── DrmMetadata.h │ │ │ │ │ ├── DrmRights.h │ │ │ │ │ ├── DrmSupportInfo.h │ │ │ │ │ └── drm_framework_common.h │ │ │ │ │ ├── media │ │ │ │ │ ├── AudioBufferProvider.h │ │ │ │ │ ├── AudioEffect.h │ │ │ │ │ ├── AudioParameter.h │ │ │ │ │ ├── AudioRecord.h │ │ │ │ │ ├── AudioSystem.h │ │ │ │ │ ├── AudioTrack.h │ │ │ │ │ ├── EffectsFactoryApi.h │ │ │ │ │ ├── ExtendedAudioBufferProvider.h │ │ │ │ │ ├── IAudioFlinger.h │ │ │ │ │ ├── IAudioFlingerClient.h │ │ │ │ │ ├── IAudioPolicyService.h │ │ │ │ │ ├── IAudioRecord.h │ │ │ │ │ ├── IAudioTrack.h │ │ │ │ │ ├── ICrypto.h │ │ │ │ │ ├── IDrm.h │ │ │ │ │ ├── IDrmClient.h │ │ │ │ │ ├── IEffect.h │ │ │ │ │ ├── IEffectClient.h │ │ │ │ │ ├── IHDCP.h │ │ │ │ │ ├── IMediaDeathNotifier.h │ │ │ │ │ ├── IMediaLogService.h │ │ │ │ │ ├── IMediaMetadataRetriever.h │ │ │ │ │ ├── IMediaPlayer.h │ │ │ │ │ ├── IMediaPlayerClient.h │ │ │ │ │ ├── IMediaPlayerService.h │ │ │ │ │ ├── IMediaRecorder.h │ │ │ │ │ ├── IMediaRecorderClient.h │ │ │ │ │ ├── IOMX.h │ │ │ │ │ ├── IRemoteDisplay.h │ │ │ │ │ ├── IRemoteDisplayClient.h │ │ │ │ │ ├── IStreamSource.h │ │ │ │ │ ├── JetPlayer.h │ │ │ │ │ ├── MediaMetadataRetrieverInterface.h │ │ │ │ │ ├── MediaPlayerInterface.h │ │ │ │ │ ├── MediaProfiles.h │ │ │ │ │ ├── MediaRecorderBase.h │ │ │ │ │ ├── MemoryLeakTrackUtil.h │ │ │ │ │ ├── Metadata.h │ │ │ │ │ ├── SingleStateQueue.h │ │ │ │ │ ├── SoundPool.h │ │ │ │ │ ├── ToneGenerator.h │ │ │ │ │ ├── Visualizer.h │ │ │ │ │ ├── mediametadataretriever.h │ │ │ │ │ ├── mediaplayer.h │ │ │ │ │ ├── mediarecorder.h │ │ │ │ │ ├── mediascanner.h │ │ │ │ │ ├── nbaio │ │ │ │ │ │ ├── AudioBufferProviderSource.h │ │ │ │ │ │ ├── AudioStreamInSource.h │ │ │ │ │ │ ├── AudioStreamOutSink.h │ │ │ │ │ │ ├── LibsndfileSink.h │ │ │ │ │ │ ├── LibsndfileSource.h │ │ │ │ │ │ ├── MonoPipe.h │ │ │ │ │ │ ├── MonoPipeReader.h │ │ │ │ │ │ ├── NBAIO.h │ │ │ │ │ │ ├── NBLog.h │ │ │ │ │ │ ├── Pipe.h │ │ │ │ │ │ ├── PipeReader.h │ │ │ │ │ │ ├── SourceAudioBufferProvider.h │ │ │ │ │ │ └── roundup.h │ │ │ │ │ └── stagefright │ │ │ │ │ │ ├── AACWriter.h │ │ │ │ │ │ ├── ACodec.h │ │ │ │ │ │ ├── AMRWriter.h │ │ │ │ │ │ ├── AudioPlayer.h │ │ │ │ │ │ ├── AudioSource.h │ │ │ │ │ │ ├── BufferProducerWrapper.h │ │ │ │ │ │ ├── CameraSource.h │ │ │ │ │ │ ├── CameraSourceTimeLapse.h │ │ │ │ │ │ ├── ColorConverter.h │ │ │ │ │ │ ├── DataSource.h │ │ │ │ │ │ ├── FileSource.h │ │ │ │ │ │ ├── JPEGSource.h │ │ │ │ │ │ ├── MPEG2TSWriter.h │ │ │ │ │ │ ├── MPEG4Writer.h │ │ │ │ │ │ ├── MediaAdapter.h │ │ │ │ │ │ ├── MediaBuffer.h │ │ │ │ │ │ ├── MediaBufferGroup.h │ │ │ │ │ │ ├── MediaCodec.h │ │ │ │ │ │ ├── MediaCodecList.h │ │ │ │ │ │ ├── MediaDefs.h │ │ │ │ │ │ ├── MediaErrors.h │ │ │ │ │ │ ├── MediaExtractor.h │ │ │ │ │ │ ├── MediaMuxer.h │ │ │ │ │ │ ├── MediaSource.h │ │ │ │ │ │ ├── MediaWriter.h │ │ │ │ │ │ ├── MetaData.h │ │ │ │ │ │ ├── NativeWindowWrapper.h │ │ │ │ │ │ ├── NuMediaExtractor.h │ │ │ │ │ │ ├── OMXClient.h │ │ │ │ │ │ ├── OMXCodec.h │ │ │ │ │ │ ├── SkipCutBuffer.h │ │ │ │ │ │ ├── StagefrightMediaScanner.h │ │ │ │ │ │ ├── SurfaceMediaSource.h │ │ │ │ │ │ ├── TimeSource.h │ │ │ │ │ │ ├── Utils.h │ │ │ │ │ │ ├── YUVCanvas.h │ │ │ │ │ │ ├── YUVImage.h │ │ │ │ │ │ ├── foundation │ │ │ │ │ │ ├── AAtomizer.h │ │ │ │ │ │ ├── ABase.h │ │ │ │ │ │ ├── ABitReader.h │ │ │ │ │ │ ├── ABuffer.h │ │ │ │ │ │ ├── ADebug.h │ │ │ │ │ │ ├── AHandler.h │ │ │ │ │ │ ├── AHandlerReflector.h │ │ │ │ │ │ ├── AHierarchicalStateMachine.h │ │ │ │ │ │ ├── ALooper.h │ │ │ │ │ │ ├── ALooperRoster.h │ │ │ │ │ │ ├── AMessage.h │ │ │ │ │ │ ├── AString.h │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ └── hexdump.h │ │ │ │ │ │ └── timedtext │ │ │ │ │ │ └── TimedTextDriver.h │ │ │ │ │ └── private │ │ │ │ │ ├── README │ │ │ │ │ └── media │ │ │ │ │ ├── AudioEffectShared.h │ │ │ │ │ ├── AudioTrackShared.h │ │ │ │ │ ├── StaticAudioTrackState.h │ │ │ │ │ └── VideoFrame.h │ │ │ ├── base │ │ │ │ ├── include │ │ │ │ │ ├── android_runtime │ │ │ │ │ │ ├── AndroidRuntime.h │ │ │ │ │ │ ├── android_app_NativeActivity.h │ │ │ │ │ │ ├── android_content_res_Configuration.h │ │ │ │ │ │ ├── android_graphics_SurfaceTexture.h │ │ │ │ │ │ ├── android_util_AssetManager.h │ │ │ │ │ │ ├── android_view_InputQueue.h │ │ │ │ │ │ ├── android_view_Surface.h │ │ │ │ │ │ └── android_view_SurfaceSession.h │ │ │ │ │ ├── androidfw │ │ │ │ │ │ ├── Asset.h │ │ │ │ │ │ ├── AssetDir.h │ │ │ │ │ │ ├── AssetManager.h │ │ │ │ │ │ ├── BackupHelpers.h │ │ │ │ │ │ ├── CursorWindow.h │ │ │ │ │ │ ├── Input.h │ │ │ │ │ │ ├── InputDevice.h │ │ │ │ │ │ ├── InputTransport.h │ │ │ │ │ │ ├── KeyCharacterMap.h │ │ │ │ │ │ ├── KeyLayoutMap.h │ │ │ │ │ │ ├── Keyboard.h │ │ │ │ │ │ ├── KeycodeLabels.h │ │ │ │ │ │ ├── ObbFile.h │ │ │ │ │ │ ├── PowerManager.h │ │ │ │ │ │ ├── ResourceTypes.h │ │ │ │ │ │ ├── StreamingZipInflater.h │ │ │ │ │ │ ├── VelocityControl.h │ │ │ │ │ │ ├── VelocityTracker.h │ │ │ │ │ │ └── VirtualKeyMap.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── README │ │ │ │ │ │ └── hwui │ │ │ │ │ │ │ └── DrawGlInfo.h │ │ │ │ │ └── storage │ │ │ │ │ │ ├── IMountService.h │ │ │ │ │ │ ├── IMountServiceListener.h │ │ │ │ │ │ ├── IMountShutdownObserver.h │ │ │ │ │ │ └── IObbActionListener.h │ │ │ │ └── native │ │ │ │ │ ├── android │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── asset_manager.cpp │ │ │ │ │ ├── configuration.cpp │ │ │ │ │ ├── input.cpp │ │ │ │ │ ├── looper.cpp │ │ │ │ │ ├── native_activity.cpp │ │ │ │ │ ├── native_window.cpp │ │ │ │ │ ├── obb.cpp │ │ │ │ │ ├── sensor.cpp │ │ │ │ │ └── storage_manager.cpp │ │ │ │ │ ├── copy-to-ndk.sh │ │ │ │ │ └── graphics │ │ │ │ │ └── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── bitmap.cpp │ │ │ ├── native │ │ │ │ ├── include │ │ │ │ │ ├── android │ │ │ │ │ │ ├── asset_manager.h │ │ │ │ │ │ ├── asset_manager_jni.h │ │ │ │ │ │ ├── bitmap.h │ │ │ │ │ │ ├── configuration.h │ │ │ │ │ │ ├── input.h │ │ │ │ │ │ ├── keycodes.h │ │ │ │ │ │ ├── looper.h │ │ │ │ │ │ ├── native_activity.h │ │ │ │ │ │ ├── native_window.h │ │ │ │ │ │ ├── native_window_jni.h │ │ │ │ │ │ ├── obb.h │ │ │ │ │ │ ├── rect.h │ │ │ │ │ │ ├── sensor.h │ │ │ │ │ │ ├── storage_manager.h │ │ │ │ │ │ └── window.h │ │ │ │ │ ├── binder │ │ │ │ │ │ ├── AppOpsManager.h │ │ │ │ │ │ ├── Binder.h │ │ │ │ │ │ ├── BinderService.h │ │ │ │ │ │ ├── BpBinder.h │ │ │ │ │ │ ├── IAppOpsCallback.h │ │ │ │ │ │ ├── IAppOpsService.h │ │ │ │ │ │ ├── IBinder.h │ │ │ │ │ │ ├── IInterface.h │ │ │ │ │ │ ├── IMemory.h │ │ │ │ │ │ ├── IPCThreadState.h │ │ │ │ │ │ ├── IPermissionController.h │ │ │ │ │ │ ├── IServiceManager.h │ │ │ │ │ │ ├── MemoryBase.h │ │ │ │ │ │ ├── MemoryDealer.h │ │ │ │ │ │ ├── MemoryHeapBase.h │ │ │ │ │ │ ├── Parcel.h │ │ │ │ │ │ ├── PermissionCache.h │ │ │ │ │ │ └── ProcessState.h │ │ │ │ │ ├── cpustats │ │ │ │ │ │ ├── CentralTendencyStatistics.h │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ └── ThreadCpuUsage.h │ │ │ │ │ ├── diskusage │ │ │ │ │ │ └── dirsize.h │ │ │ │ │ ├── gui │ │ │ │ │ │ ├── BitTube.h │ │ │ │ │ │ ├── BufferItemConsumer.h │ │ │ │ │ │ ├── BufferQueue.h │ │ │ │ │ │ ├── ConsumerBase.h │ │ │ │ │ │ ├── CpuConsumer.h │ │ │ │ │ │ ├── DisplayEventReceiver.h │ │ │ │ │ │ ├── DummyConsumer.h │ │ │ │ │ │ ├── GLConsumer.h │ │ │ │ │ │ ├── GraphicBufferAlloc.h │ │ │ │ │ │ ├── GuiConfig.h │ │ │ │ │ │ ├── IDisplayEventConnection.h │ │ │ │ │ │ ├── IGraphicBufferAlloc.h │ │ │ │ │ │ ├── IGraphicBufferProducer.h │ │ │ │ │ │ ├── ISensorEventConnection.h │ │ │ │ │ │ ├── ISensorServer.h │ │ │ │ │ │ ├── ISurfaceComposer.h │ │ │ │ │ │ ├── ISurfaceComposerClient.h │ │ │ │ │ │ ├── Sensor.h │ │ │ │ │ │ ├── SensorEventQueue.h │ │ │ │ │ │ ├── SensorManager.h │ │ │ │ │ │ ├── Surface.h │ │ │ │ │ │ ├── SurfaceComposerClient.h │ │ │ │ │ │ └── SurfaceControl.h │ │ │ │ │ ├── media │ │ │ │ │ │ ├── drm │ │ │ │ │ │ │ └── DrmAPI.h │ │ │ │ │ │ ├── editor │ │ │ │ │ │ │ └── II420ColorConverter.h │ │ │ │ │ │ ├── hardware │ │ │ │ │ │ │ ├── CryptoAPI.h │ │ │ │ │ │ │ ├── HDCPAPI.h │ │ │ │ │ │ │ ├── HardwareAPI.h │ │ │ │ │ │ │ ├── MetadataBufferType.h │ │ │ │ │ │ │ └── OMXPluginBase.h │ │ │ │ │ │ └── openmax │ │ │ │ │ │ │ ├── OMX_Audio.h │ │ │ │ │ │ │ ├── OMX_Component.h │ │ │ │ │ │ │ ├── OMX_ContentPipe.h │ │ │ │ │ │ │ ├── OMX_Core.h │ │ │ │ │ │ │ ├── OMX_IVCommon.h │ │ │ │ │ │ │ ├── OMX_Image.h │ │ │ │ │ │ │ ├── OMX_Index.h │ │ │ │ │ │ │ ├── OMX_IndexExt.h │ │ │ │ │ │ │ ├── OMX_Other.h │ │ │ │ │ │ │ ├── OMX_Types.h │ │ │ │ │ │ │ ├── OMX_Video.h │ │ │ │ │ │ │ └── OMX_VideoExt.h │ │ │ │ │ ├── powermanager │ │ │ │ │ │ ├── IPowerManager.h │ │ │ │ │ │ └── PowerManager.h │ │ │ │ │ ├── private │ │ │ │ │ │ ├── binder │ │ │ │ │ │ │ ├── Static.h │ │ │ │ │ │ │ └── binder_module.h │ │ │ │ │ │ ├── gui │ │ │ │ │ │ │ ├── ComposerService.h │ │ │ │ │ │ │ ├── LayerState.h │ │ │ │ │ │ │ └── SyncFeatures.h │ │ │ │ │ │ ├── ui │ │ │ │ │ │ │ └── RegionHelper.h │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── Static.h │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── ANativeObjectBase.h │ │ │ │ │ │ ├── DisplayInfo.h │ │ │ │ │ │ ├── Fence.h │ │ │ │ │ │ ├── FramebufferNativeWindow.h │ │ │ │ │ │ ├── GraphicBuffer.h │ │ │ │ │ │ ├── GraphicBufferAllocator.h │ │ │ │ │ │ ├── GraphicBufferMapper.h │ │ │ │ │ │ ├── PixelFormat.h │ │ │ │ │ │ ├── Point.h │ │ │ │ │ │ ├── Rect.h │ │ │ │ │ │ ├── Region.h │ │ │ │ │ │ └── UiConfig.h │ │ │ │ │ └── utils │ │ │ │ │ │ ├── AndroidThreads.h │ │ │ │ │ │ ├── Atomic.h │ │ │ │ │ │ ├── BasicHashtable.h │ │ │ │ │ │ ├── BitSet.h │ │ │ │ │ │ ├── BlobCache.h │ │ │ │ │ │ ├── BufferedTextOutput.h │ │ │ │ │ │ ├── ByteOrder.h │ │ │ │ │ │ ├── CallStack.h │ │ │ │ │ │ ├── Compat.h │ │ │ │ │ │ ├── Condition.h │ │ │ │ │ │ ├── Debug.h │ │ │ │ │ │ ├── Endian.h │ │ │ │ │ │ ├── Errors.h │ │ │ │ │ │ ├── FileMap.h │ │ │ │ │ │ ├── Flattenable.h │ │ │ │ │ │ ├── Functor.h │ │ │ │ │ │ ├── GenerationCache.h │ │ │ │ │ │ ├── JenkinsHash.h │ │ │ │ │ │ ├── KeyedVector.h │ │ │ │ │ │ ├── LinearAllocator.h │ │ │ │ │ │ ├── LinearTransform.h │ │ │ │ │ │ ├── List.h │ │ │ │ │ │ ├── Log.h │ │ │ │ │ │ ├── Looper.h │ │ │ │ │ │ ├── LruCache.h │ │ │ │ │ │ ├── Mutex.h │ │ │ │ │ │ ├── PropertyMap.h │ │ │ │ │ │ ├── RWLock.h │ │ │ │ │ │ ├── RefBase.h │ │ │ │ │ │ ├── SharedBuffer.h │ │ │ │ │ │ ├── Singleton.h │ │ │ │ │ │ ├── SortedVector.h │ │ │ │ │ │ ├── StopWatch.h │ │ │ │ │ │ ├── String16.h │ │ │ │ │ │ ├── String8.h │ │ │ │ │ │ ├── StringArray.h │ │ │ │ │ │ ├── StrongPointer.h │ │ │ │ │ │ ├── SystemClock.h │ │ │ │ │ │ ├── TextOutput.h │ │ │ │ │ │ ├── Thread.h │ │ │ │ │ │ ├── ThreadDefs.h │ │ │ │ │ │ ├── Timers.h │ │ │ │ │ │ ├── Tokenizer.h │ │ │ │ │ │ ├── Trace.h │ │ │ │ │ │ ├── TypeHelpers.h │ │ │ │ │ │ ├── Unicode.h │ │ │ │ │ │ ├── UniquePtr.h │ │ │ │ │ │ ├── Vector.h │ │ │ │ │ │ ├── VectorImpl.h │ │ │ │ │ │ ├── WorkQueue.h │ │ │ │ │ │ ├── ZipFileCRO.h │ │ │ │ │ │ ├── ZipFileRO.h │ │ │ │ │ │ ├── ZipUtils.h │ │ │ │ │ │ ├── ashmem.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ └── threads.h │ │ │ │ └── opengl │ │ │ │ │ └── include │ │ │ │ │ ├── EGL │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── eglext.h │ │ │ │ │ └── eglplatform.h │ │ │ │ │ ├── ETC1 │ │ │ │ │ └── etc1.h │ │ │ │ │ ├── GLES │ │ │ │ │ ├── egl.h │ │ │ │ │ ├── gl.h │ │ │ │ │ ├── glext.h │ │ │ │ │ └── glplatform.h │ │ │ │ │ ├── GLES2 │ │ │ │ │ ├── gl2.h │ │ │ │ │ ├── gl2ext.h │ │ │ │ │ └── gl2platform.h │ │ │ │ │ ├── GLES3 │ │ │ │ │ ├── gl3.h │ │ │ │ │ ├── gl3ext.h │ │ │ │ │ └── gl3platform.h │ │ │ │ │ ├── KHR │ │ │ │ │ └── khrplatform.h │ │ │ │ │ └── MODULE_LICENSE_MIT │ │ │ └── wilhelm │ │ │ │ └── include │ │ │ │ ├── OMXAL │ │ │ │ ├── OpenMAXAL.h │ │ │ │ ├── OpenMAXAL_Android.h │ │ │ │ └── OpenMAXAL_Platform.h │ │ │ │ └── SLES │ │ │ │ ├── OpenSLES.h │ │ │ │ ├── OpenSLES_Android.h │ │ │ │ ├── OpenSLES_AndroidConfiguration.h │ │ │ │ ├── OpenSLES_AndroidMetadata.h │ │ │ │ └── OpenSLES_Platform.h │ │ ├── hardware │ │ │ └── libhardware │ │ │ │ ├── Android.mk │ │ │ │ ├── CleanSpec.mk │ │ │ │ ├── MODULE_LICENSE_APACHE2 │ │ │ │ ├── NOTICE │ │ │ │ ├── hardware.c │ │ │ │ ├── include │ │ │ │ └── hardware │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── audio_effect.h │ │ │ │ │ ├── audio_policy.h │ │ │ │ │ ├── bluetooth.h │ │ │ │ │ ├── bt_av.h │ │ │ │ │ ├── bt_gatt.h │ │ │ │ │ ├── bt_gatt_client.h │ │ │ │ │ ├── bt_gatt_server.h │ │ │ │ │ ├── bt_gatt_types.h │ │ │ │ │ ├── bt_hf.h │ │ │ │ │ ├── bt_hh.h │ │ │ │ │ ├── bt_hl.h │ │ │ │ │ ├── bt_pan.h │ │ │ │ │ ├── bt_rc.h │ │ │ │ │ ├── bt_sock.h │ │ │ │ │ ├── camera.h │ │ │ │ │ ├── camera2.h │ │ │ │ │ ├── camera3.h │ │ │ │ │ ├── camera_common.h │ │ │ │ │ ├── fb.h │ │ │ │ │ ├── gps.h │ │ │ │ │ ├── gralloc.h │ │ │ │ │ ├── hardware.h │ │ │ │ │ ├── hwcomposer.h │ │ │ │ │ ├── hwcomposer_defs.h │ │ │ │ │ ├── keymaster.h │ │ │ │ │ ├── lights.h │ │ │ │ │ ├── local_time_hal.h │ │ │ │ │ ├── nfc.h │ │ │ │ │ ├── power.h │ │ │ │ │ ├── qemu_pipe.h │ │ │ │ │ ├── qemud.h │ │ │ │ │ └── sensors.h │ │ │ │ ├── modules │ │ │ │ ├── Android.mk │ │ │ │ ├── README.android │ │ │ │ ├── audio │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── audio_hw.c │ │ │ │ │ └── audio_policy.c │ │ │ │ ├── audio_remote_submix │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── audio_hw.cpp │ │ │ │ ├── camera │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── Camera.cpp │ │ │ │ │ ├── Camera.h │ │ │ │ │ ├── CameraHAL.cpp │ │ │ │ │ └── CameraHAL.h │ │ │ │ ├── gralloc │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── framebuffer.cpp │ │ │ │ │ ├── gr.h │ │ │ │ │ ├── gralloc.cpp │ │ │ │ │ ├── gralloc_priv.h │ │ │ │ │ └── mapper.cpp │ │ │ │ ├── hwcomposer │ │ │ │ │ ├── Android.mk │ │ │ │ │ ├── README.android │ │ │ │ │ └── hwcomposer.cpp │ │ │ │ ├── local_time │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── local_time_hw.c │ │ │ │ ├── nfc-nci │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── nfc_nci_example.c │ │ │ │ ├── nfc │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── nfc_pn544_example.c │ │ │ │ ├── power │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── power.c │ │ │ │ └── usbaudio │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── audio_hw.c │ │ │ │ └── tests │ │ │ │ ├── Android.mk │ │ │ │ ├── camera2 │ │ │ │ ├── Android.mk │ │ │ │ ├── CameraBurstTests.cpp │ │ │ │ ├── CameraFrameTests.cpp │ │ │ │ ├── CameraMetadataTests.cpp │ │ │ │ ├── CameraModuleFixture.h │ │ │ │ ├── CameraModuleTests.cpp │ │ │ │ ├── CameraStreamFixture.h │ │ │ │ ├── CameraStreamTests.cpp │ │ │ │ ├── ForkedTests.cpp │ │ │ │ ├── TestExtensions.h │ │ │ │ ├── TestForkerEventListener.cpp │ │ │ │ ├── TestForkerEventListener.h │ │ │ │ ├── TestSettings.cpp │ │ │ │ ├── TestSettings.h │ │ │ │ ├── camera2.cpp │ │ │ │ ├── camera2_utils.cpp │ │ │ │ ├── camera2_utils.h │ │ │ │ └── main.cpp │ │ │ │ ├── keymaster │ │ │ │ ├── Android.mk │ │ │ │ └── keymaster_test.cpp │ │ │ │ └── nusensors │ │ │ │ ├── Android.mk │ │ │ │ └── nusensors.cpp │ │ ├── libOpenSLES.so │ │ ├── libandroid.so │ │ ├── libandroid_runtime.so │ │ ├── libcutils.so │ │ ├── libgui.so │ │ ├── libmedia.so │ │ ├── libnativehelper.so │ │ ├── libnativehelper │ │ │ ├── Android.mk │ │ │ ├── JNIHelp.cpp │ │ │ ├── MODULE_LICENSE_APACHE2 │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ └── include │ │ │ │ └── nativehelper │ │ │ │ ├── JNIHelp.h │ │ │ │ └── jni.h │ │ ├── libskia.so │ │ ├── libui.so │ │ ├── libutils.so │ │ └── system │ │ │ └── core │ │ │ └── include │ │ │ ├── android │ │ │ └── log.h │ │ │ ├── corkscrew │ │ │ ├── backtrace.h │ │ │ ├── demangle.h │ │ │ ├── map_info.h │ │ │ ├── ptrace.h │ │ │ └── symbol_table.h │ │ │ ├── ctest │ │ │ └── ctest.h │ │ │ ├── cutils │ │ │ ├── abort_socket.h │ │ │ ├── android_reboot.h │ │ │ ├── aref.h │ │ │ ├── array.h │ │ │ ├── ashmem.h │ │ │ ├── atomic-arm.h │ │ │ ├── atomic-inline.h │ │ │ ├── atomic-mips.h │ │ │ ├── atomic-x86.h │ │ │ ├── atomic.h │ │ │ ├── bitops.h │ │ │ ├── compiler.h │ │ │ ├── config_utils.h │ │ │ ├── cpu_info.h │ │ │ ├── debugger.h │ │ │ ├── dir_hash.h │ │ │ ├── event_tag_map.h │ │ │ ├── fs.h │ │ │ ├── hashmap.h │ │ │ ├── iosched_policy.h │ │ │ ├── jstring.h │ │ │ ├── klog.h │ │ │ ├── list.h │ │ │ ├── log.h │ │ │ ├── logd.h │ │ │ ├── logger.h │ │ │ ├── logprint.h │ │ │ ├── memory.h │ │ │ ├── misc.h │ │ │ ├── mq.h │ │ │ ├── multiuser.h │ │ │ ├── native_handle.h │ │ │ ├── open_memstream.h │ │ │ ├── partition_utils.h │ │ │ ├── process_name.h │ │ │ ├── properties.h │ │ │ ├── qsort_r_compat.h │ │ │ ├── qtaguid.h │ │ │ ├── record_stream.h │ │ │ ├── sched_policy.h │ │ │ ├── selector.h │ │ │ ├── sockets.h │ │ │ ├── str_parms.h │ │ │ ├── threads.h │ │ │ ├── trace.h │ │ │ ├── tztime.h │ │ │ ├── uevent.h │ │ │ ├── uio.h │ │ │ └── zygote.h │ │ │ ├── diskconfig │ │ │ └── diskconfig.h │ │ │ ├── ion │ │ │ └── ion.h │ │ │ ├── mincrypt │ │ │ ├── rsa.h │ │ │ └── sha.h │ │ │ ├── netutils │ │ │ ├── dhcp.h │ │ │ └── ifc.h │ │ │ ├── pixelflinger │ │ │ ├── format.h │ │ │ └── pixelflinger.h │ │ │ ├── private │ │ │ ├── android_filesystem_capability.h │ │ │ ├── android_filesystem_config.h │ │ │ └── pixelflinger │ │ │ │ ├── ggl_context.h │ │ │ │ └── ggl_fixed.h │ │ │ ├── sync │ │ │ ├── sw_sync.h │ │ │ └── sync.h │ │ │ ├── system │ │ │ ├── audio.h │ │ │ ├── audio_policy.h │ │ │ ├── camera.h │ │ │ ├── graphics.h │ │ │ └── window.h │ │ │ ├── sysutils │ │ │ ├── FrameworkClient.h │ │ │ ├── FrameworkCommand.h │ │ │ ├── FrameworkListener.h │ │ │ ├── List.h │ │ │ ├── NetlinkEvent.h │ │ │ ├── NetlinkListener.h │ │ │ ├── ServiceManager.h │ │ │ ├── SocketClient.h │ │ │ └── SocketListener.h │ │ │ ├── usbhost │ │ │ └── usbhost.h │ │ │ └── zipfile │ │ │ └── zipfile.h │ ├── aosp-4 │ │ ├── dalvik │ │ │ └── libnativehelper │ │ │ │ └── include │ │ │ │ └── nativehelper │ │ │ │ ├── AndroidSystemNatives.h │ │ │ │ ├── JNIHelp.h │ │ │ │ └── jni.h │ │ ├── external │ │ │ └── skia │ │ │ │ └── include │ │ │ │ ├── animator │ │ │ │ ├── SkAnimator.h │ │ │ │ └── SkAnimatorView.h │ │ │ │ ├── core │ │ │ │ ├── Sk64.h │ │ │ │ ├── SkAutoKern.h │ │ │ │ ├── SkBitmap.h │ │ │ │ ├── SkBlitter.h │ │ │ │ ├── SkBounder.h │ │ │ │ ├── SkBuffer.h │ │ │ │ ├── SkCanvas.h │ │ │ │ ├── SkChunkAlloc.h │ │ │ │ ├── SkColor.h │ │ │ │ ├── SkColorFilter.h │ │ │ │ ├── SkColorPriv.h │ │ │ │ ├── SkColorShader.h │ │ │ │ ├── SkComposeShader.h │ │ │ │ ├── SkDeque.h │ │ │ │ ├── SkDescriptor.h │ │ │ │ ├── SkDevice.h │ │ │ │ ├── SkDither.h │ │ │ │ ├── SkDraw.h │ │ │ │ ├── SkDrawFilter.h │ │ │ │ ├── SkDrawLooper.h │ │ │ │ ├── SkEndian.h │ │ │ │ ├── SkFDot6.h │ │ │ │ ├── SkFixed.h │ │ │ │ ├── SkFlattenable.h │ │ │ │ ├── SkFloatBits.h │ │ │ │ ├── SkFloatingPoint.h │ │ │ │ ├── SkFontHost.h │ │ │ │ ├── SkGeometry.h │ │ │ │ ├── SkGlobals.h │ │ │ │ ├── SkGraphics.h │ │ │ │ ├── SkMMapStream.h │ │ │ │ ├── SkMallocPixelRef.h │ │ │ │ ├── SkMask.h │ │ │ │ ├── SkMaskFilter.h │ │ │ │ ├── SkMath.h │ │ │ │ ├── SkMatrix.h │ │ │ │ ├── SkOSFile.h │ │ │ │ ├── SkPackBits.h │ │ │ │ ├── SkPaint.h │ │ │ │ ├── SkPath.h │ │ │ │ ├── SkPathEffect.h │ │ │ │ ├── SkPathMeasure.h │ │ │ │ ├── SkPerspIter.h │ │ │ │ ├── SkPicture.h │ │ │ │ ├── SkPixelRef.h │ │ │ │ ├── SkPoint.h │ │ │ │ ├── SkPorterDuff.h │ │ │ │ ├── SkPostConfig.h │ │ │ │ ├── SkPreConfig.h │ │ │ │ ├── SkPtrRecorder.h │ │ │ │ ├── SkRandom.h │ │ │ │ ├── SkRasterizer.h │ │ │ │ ├── SkReader32.h │ │ │ │ ├── SkRect.h │ │ │ │ ├── SkRefCnt.h │ │ │ │ ├── SkRegion.h │ │ │ │ ├── SkScalar.h │ │ │ │ ├── SkScalarCompare.h │ │ │ │ ├── SkScalerContext.h │ │ │ │ ├── SkScan.h │ │ │ │ ├── SkShader.h │ │ │ │ ├── SkStream.h │ │ │ │ ├── SkString.h │ │ │ │ ├── SkStroke.h │ │ │ │ ├── SkTDArray.h │ │ │ │ ├── SkTDStack.h │ │ │ │ ├── SkTDict.h │ │ │ │ ├── SkTRegistry.h │ │ │ │ ├── SkTSearch.h │ │ │ │ ├── SkTemplates.h │ │ │ │ ├── SkThread.h │ │ │ │ ├── SkThread_platform.h │ │ │ │ ├── SkTime.h │ │ │ │ ├── SkTypeface.h │ │ │ │ ├── SkTypes.h │ │ │ │ ├── SkUnPreMultiply.h │ │ │ │ ├── SkUnitMapper.h │ │ │ │ ├── SkUserConfig.h │ │ │ │ ├── SkUtils.h │ │ │ │ ├── SkWriter32.h │ │ │ │ └── SkXfermode.h │ │ │ │ ├── effects │ │ │ │ ├── Sk1DPathEffect.h │ │ │ │ ├── Sk2DPathEffect.h │ │ │ │ ├── SkAvoidXfermode.h │ │ │ │ ├── SkBlurDrawLooper.h │ │ │ │ ├── SkBlurMaskFilter.h │ │ │ │ ├── SkColorMatrix.h │ │ │ │ ├── SkColorMatrixFilter.h │ │ │ │ ├── SkCornerPathEffect.h │ │ │ │ ├── SkDashPathEffect.h │ │ │ │ ├── SkDiscretePathEffect.h │ │ │ │ ├── SkDrawExtraPathEffect.h │ │ │ │ ├── SkEmbossMaskFilter.h │ │ │ │ ├── SkGradientShader.h │ │ │ │ ├── SkKernel33MaskFilter.h │ │ │ │ ├── SkLayerDrawLooper.h │ │ │ │ ├── SkLayerRasterizer.h │ │ │ │ ├── SkPaintFlagsDrawFilter.h │ │ │ │ ├── SkPixelXorXfermode.h │ │ │ │ └── SkTransparentShader.h │ │ │ │ ├── graphics │ │ │ │ └── DoxygenMain.dox │ │ │ │ ├── images │ │ │ │ ├── SkFlipPixelRef.h │ │ │ │ ├── SkImageDecoder.h │ │ │ │ ├── SkImageEncoder.h │ │ │ │ ├── SkImageRef.h │ │ │ │ ├── SkImageRef_GlobalPool.h │ │ │ │ ├── SkMovie.h │ │ │ │ └── SkPageFlipper.h │ │ │ │ ├── ports │ │ │ │ └── SkStream_Win.h │ │ │ │ ├── svg │ │ │ │ ├── SkSVGAttribute.h │ │ │ │ ├── SkSVGBase.h │ │ │ │ ├── SkSVGPaintState.h │ │ │ │ ├── SkSVGParser.h │ │ │ │ └── SkSVGTypes.h │ │ │ │ ├── utils │ │ │ │ ├── SkCamera.h │ │ │ │ ├── SkCullPoints.h │ │ │ │ ├── SkDumpCanvas.h │ │ │ │ ├── SkGLCanvas.h │ │ │ │ ├── SkInterpolator.h │ │ │ │ ├── SkNinePatch.h │ │ │ │ ├── SkParse.h │ │ │ │ ├── SkParsePaint.h │ │ │ │ ├── SkProxyCanvas.h │ │ │ │ ├── SkTextBox.h │ │ │ │ ├── SkUnitMappers.h │ │ │ │ └── mac │ │ │ │ │ └── SkCGUtils.h │ │ │ │ ├── views │ │ │ │ ├── SkApplication.h │ │ │ │ ├── SkBGViewArtist.h │ │ │ │ ├── SkBorderView.h │ │ │ │ ├── SkEvent.h │ │ │ │ ├── SkEventSink.h │ │ │ │ ├── SkImageView.h │ │ │ │ ├── SkKey.h │ │ │ │ ├── SkMetaData.h │ │ │ │ ├── SkOSMenu.h │ │ │ │ ├── SkOSSound.h │ │ │ │ ├── SkOSWindow_Mac.h │ │ │ │ ├── SkOSWindow_Unix.h │ │ │ │ ├── SkOSWindow_Win.h │ │ │ │ ├── SkOSWindow_wxwidgets.h │ │ │ │ ├── SkProgressBarView.h │ │ │ │ ├── SkScrollBarView.h │ │ │ │ ├── SkStackViewLayout.h │ │ │ │ ├── SkSystemEventTypes.h │ │ │ │ ├── SkView.h │ │ │ │ ├── SkViewInflate.h │ │ │ │ ├── SkWidget.h │ │ │ │ ├── SkWidgetViews.h │ │ │ │ └── SkWindow.h │ │ │ │ └── xml │ │ │ │ ├── SkBML_WXMLParser.h │ │ │ │ ├── SkBML_XMLParser.h │ │ │ │ ├── SkDOM.h │ │ │ │ ├── SkJS.h │ │ │ │ ├── SkXMLParser.h │ │ │ │ └── SkXMLWriter.h │ │ ├── frameworks │ │ │ └── base │ │ │ │ └── include │ │ │ │ ├── android_runtime │ │ │ │ ├── ActivityManager.h │ │ │ │ ├── AndroidRuntime.h │ │ │ │ └── android_util_AssetManager.h │ │ │ │ ├── media │ │ │ │ ├── AudioRecord.h │ │ │ │ ├── AudioSystem.h │ │ │ │ ├── AudioTrack.h │ │ │ │ ├── IAudioFlinger.h │ │ │ │ ├── IAudioFlingerClient.h │ │ │ │ ├── IAudioRecord.h │ │ │ │ ├── IAudioTrack.h │ │ │ │ ├── IMediaMetadataRetriever.h │ │ │ │ ├── IMediaPlayer.h │ │ │ │ ├── IMediaPlayerClient.h │ │ │ │ ├── IMediaPlayerService.h │ │ │ │ ├── IMediaRecorder.h │ │ │ │ ├── JetPlayer.h │ │ │ │ ├── MediaMetadataRetrieverInterface.h │ │ │ │ ├── MediaPlayerInterface.h │ │ │ │ ├── PVMediaRecorder.h │ │ │ │ ├── PVMetadataRetriever.h │ │ │ │ ├── PVPlayer.h │ │ │ │ ├── ToneGenerator.h │ │ │ │ ├── mediametadataretriever.h │ │ │ │ ├── mediaplayer.h │ │ │ │ ├── mediarecorder.h │ │ │ │ ├── mediascanner.h │ │ │ │ └── thread_init.h │ │ │ │ ├── pim │ │ │ │ └── EventRecurrence.h │ │ │ │ ├── private │ │ │ │ ├── media │ │ │ │ │ ├── AudioTrackShared.h │ │ │ │ │ └── VideoFrame.h │ │ │ │ ├── opengles │ │ │ │ │ └── gl_context.h │ │ │ │ ├── ui │ │ │ │ │ ├── LayerState.h │ │ │ │ │ ├── SharedState.h │ │ │ │ │ └── SurfaceFlingerSynchro.h │ │ │ │ └── utils │ │ │ │ │ ├── Static.h │ │ │ │ │ ├── binder_module.h │ │ │ │ │ └── futex_synchro.h │ │ │ │ ├── tts │ │ │ │ └── TtsEngine.h │ │ │ │ ├── ui │ │ │ │ ├── Camera.h │ │ │ │ ├── CameraHardwareInterface.h │ │ │ │ ├── CameraParameters.h │ │ │ │ ├── DisplayInfo.h │ │ │ │ ├── EGLDisplaySurface.h │ │ │ │ ├── EGLNativeSurface.h │ │ │ │ ├── EGLNativeWindowSurface.h │ │ │ │ ├── EventHub.h │ │ │ │ ├── ICamera.h │ │ │ │ ├── ICameraClient.h │ │ │ │ ├── ICameraService.h │ │ │ │ ├── IOverlay.h │ │ │ │ ├── ISurface.h │ │ │ │ ├── ISurfaceComposer.h │ │ │ │ ├── ISurfaceFlingerClient.h │ │ │ │ ├── KeyCharacterMap.h │ │ │ │ ├── KeycodeLabels.h │ │ │ │ ├── Overlay.h │ │ │ │ ├── PixelFormat.h │ │ │ │ ├── Point.h │ │ │ │ ├── Rect.h │ │ │ │ ├── Region.h │ │ │ │ ├── Surface.h │ │ │ │ └── SurfaceComposerClient.h │ │ │ │ ├── utils.h │ │ │ │ └── utils │ │ │ │ ├── AndroidUnicode.h │ │ │ │ ├── Asset.h │ │ │ │ ├── AssetDir.h │ │ │ │ ├── AssetManager.h │ │ │ │ ├── Atomic.h │ │ │ │ ├── BackupHelpers.h │ │ │ │ ├── Binder.h │ │ │ │ ├── BpBinder.h │ │ │ │ ├── Buffer.h │ │ │ │ ├── BufferedTextOutput.h │ │ │ │ ├── ByteOrder.h │ │ │ │ ├── CallStack.h │ │ │ │ ├── Debug.h │ │ │ │ ├── Endian.h │ │ │ │ ├── Errors.h │ │ │ │ ├── FileMap.h │ │ │ │ ├── IBinder.h │ │ │ │ ├── IInterface.h │ │ │ │ ├── IMemory.h │ │ │ │ ├── IPCThreadState.h │ │ │ │ ├── IPermissionController.h │ │ │ │ ├── IServiceManager.h │ │ │ │ ├── KeyedVector.h │ │ │ │ ├── List.h │ │ │ │ ├── Log.h │ │ │ │ ├── LogSocket.h │ │ │ │ ├── MemoryBase.h │ │ │ │ ├── MemoryDealer.h │ │ │ │ ├── MemoryHeapBase.h │ │ │ │ ├── MemoryHeapPmem.h │ │ │ │ ├── Parcel.h │ │ │ │ ├── Pipe.h │ │ │ │ ├── ProcessState.h │ │ │ │ ├── RefBase.h │ │ │ │ ├── ResourceTypes.h │ │ │ │ ├── SharedBuffer.h │ │ │ │ ├── Socket.h │ │ │ │ ├── SortedVector.h │ │ │ │ ├── StopWatch.h │ │ │ │ ├── String16.h │ │ │ │ ├── String8.h │ │ │ │ ├── SystemClock.h │ │ │ │ ├── TextOutput.h │ │ │ │ ├── TimerProbe.h │ │ │ │ ├── Timers.h │ │ │ │ ├── TypeHelpers.h │ │ │ │ ├── Vector.h │ │ │ │ ├── VectorImpl.h │ │ │ │ ├── ZipEntry.h │ │ │ │ ├── ZipFile.h │ │ │ │ ├── ZipFileCRO.h │ │ │ │ ├── ZipFileRO.h │ │ │ │ ├── ZipUtils.h │ │ │ │ ├── ashmem.h │ │ │ │ ├── executablepath.h │ │ │ │ ├── inet_address.h │ │ │ │ ├── misc.h │ │ │ │ ├── ported.h │ │ │ │ ├── string_array.h │ │ │ │ └── threads.h │ │ ├── hardware │ │ │ └── libhardware │ │ │ │ └── include │ │ │ │ └── hardware │ │ │ │ ├── copybit.h │ │ │ │ ├── hardware.h │ │ │ │ ├── lights.h │ │ │ │ ├── overlay.h │ │ │ │ ├── qemud.h │ │ │ │ └── sensors.h │ │ ├── libandroid_runtime.so │ │ ├── libcorecg.so │ │ ├── libcutils.so │ │ ├── libmedia.so │ │ ├── libnativehelper.so │ │ ├── libsgl.so │ │ ├── libsurfaceflinger.so │ │ ├── libui.so │ │ ├── libutils.so │ │ └── system │ │ │ └── core │ │ │ └── include │ │ │ ├── android │ │ │ └── log.h │ │ │ ├── arch │ │ │ ├── darwin-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-arm │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── target_linux-x86 │ │ │ │ └── AndroidConfig.h │ │ │ └── windows │ │ │ │ └── AndroidConfig.h │ │ │ ├── ctest │ │ │ └── ctest.h │ │ │ ├── cutils │ │ │ ├── adb_networking.h │ │ │ ├── array.h │ │ │ ├── ashmem.h │ │ │ ├── atomic.h │ │ │ ├── config_utils.h │ │ │ ├── cpu_info.h │ │ │ ├── dir_hash.h │ │ │ ├── event_tag_map.h │ │ │ ├── hashmap.h │ │ │ ├── jstring.h │ │ │ ├── log.h │ │ │ ├── logd.h │ │ │ ├── logger.h │ │ │ ├── logprint.h │ │ │ ├── memory.h │ │ │ ├── misc.h │ │ │ ├── mq.h │ │ │ ├── mspace.h │ │ │ ├── native_handle.h │ │ │ ├── process_name.h │ │ │ ├── properties.h │ │ │ ├── record_stream.h │ │ │ ├── selector.h │ │ │ ├── sockets.h │ │ │ ├── threads.h │ │ │ ├── tztime.h │ │ │ ├── uio.h │ │ │ └── zygote.h │ │ │ ├── mincrypt │ │ │ ├── rsa.h │ │ │ └── sha.h │ │ │ ├── pixelflinger │ │ │ ├── format.h │ │ │ └── pixelflinger.h │ │ │ ├── private │ │ │ ├── android_filesystem_config.h │ │ │ └── pixelflinger │ │ │ │ ├── ggl_context.h │ │ │ │ └── ggl_fixed.h │ │ │ ├── sysutils │ │ │ ├── FrameworkClient.h │ │ │ ├── FrameworkCommand.h │ │ │ ├── FrameworkListener.h │ │ │ ├── NetlinkEvent.h │ │ │ ├── NetlinkListener.h │ │ │ ├── ServiceManager.h │ │ │ ├── SocketClient.h │ │ │ └── SocketListener.h │ │ │ └── zipfile │ │ │ └── zipfile.h │ ├── aosp-8 │ │ ├── dalvik │ │ │ └── libnativehelper │ │ │ │ └── include │ │ │ │ └── nativehelper │ │ │ │ ├── AndroidSystemNatives.h │ │ │ │ ├── JNIHelp.h │ │ │ │ └── jni.h │ │ ├── external │ │ │ └── skia │ │ │ │ └── include │ │ │ │ ├── animator │ │ │ │ ├── SkAnimator.h │ │ │ │ └── SkAnimatorView.h │ │ │ │ ├── core │ │ │ │ ├── Sk64.h │ │ │ │ ├── SkAutoKern.h │ │ │ │ ├── SkBitmap.h │ │ │ │ ├── SkBlitter.h │ │ │ │ ├── SkBounder.h │ │ │ │ ├── SkBuffer.h │ │ │ │ ├── SkCanvas.h │ │ │ │ ├── SkChunkAlloc.h │ │ │ │ ├── SkColor.h │ │ │ │ ├── SkColorFilter.h │ │ │ │ ├── SkColorPriv.h │ │ │ │ ├── SkColorShader.h │ │ │ │ ├── SkComposeShader.h │ │ │ │ ├── SkDeque.h │ │ │ │ ├── SkDescriptor.h │ │ │ │ ├── SkDevice.h │ │ │ │ ├── SkDither.h │ │ │ │ ├── SkDraw.h │ │ │ │ ├── SkDrawFilter.h │ │ │ │ ├── SkDrawLooper.h │ │ │ │ ├── SkEdgeClipper.h │ │ │ │ ├── SkEndian.h │ │ │ │ ├── SkFDot6.h │ │ │ │ ├── SkFixed.h │ │ │ │ ├── SkFlattenable.h │ │ │ │ ├── SkFloatBits.h │ │ │ │ ├── SkFloatingPoint.h │ │ │ │ ├── SkFontHost.h │ │ │ │ ├── SkGeometry.h │ │ │ │ ├── SkGlobals.h │ │ │ │ ├── SkGraphics.h │ │ │ │ ├── SkLineClipper.h │ │ │ │ ├── SkMMapStream.h │ │ │ │ ├── SkMallocPixelRef.h │ │ │ │ ├── SkMask.h │ │ │ │ ├── SkMaskFilter.h │ │ │ │ ├── SkMath.h │ │ │ │ ├── SkMatrix.h │ │ │ │ ├── SkOSFile.h │ │ │ │ ├── SkPackBits.h │ │ │ │ ├── SkPaint.h │ │ │ │ ├── SkPath.h │ │ │ │ ├── SkPathEffect.h │ │ │ │ ├── SkPathMeasure.h │ │ │ │ ├── SkPerspIter.h │ │ │ │ ├── SkPicture.h │ │ │ │ ├── SkPixelRef.h │ │ │ │ ├── SkPoint.h │ │ │ │ ├── SkPostConfig.h │ │ │ │ ├── SkPreConfig.h │ │ │ │ ├── SkPtrRecorder.h │ │ │ │ ├── SkRandom.h │ │ │ │ ├── SkRasterizer.h │ │ │ │ ├── SkReader32.h │ │ │ │ ├── SkRect.h │ │ │ │ ├── SkRefCnt.h │ │ │ │ ├── SkRegion.h │ │ │ │ ├── SkScalar.h │ │ │ │ ├── SkScalarCompare.h │ │ │ │ ├── SkScalerContext.h │ │ │ │ ├── SkScan.h │ │ │ │ ├── SkShader.h │ │ │ │ ├── SkShape.h │ │ │ │ ├── SkSize.h │ │ │ │ ├── SkStream.h │ │ │ │ ├── SkString.h │ │ │ │ ├── SkStroke.h │ │ │ │ ├── SkTDArray.h │ │ │ │ ├── SkTDStack.h │ │ │ │ ├── SkTDict.h │ │ │ │ ├── SkTRegistry.h │ │ │ │ ├── SkTSearch.h │ │ │ │ ├── SkTemplates.h │ │ │ │ ├── SkThread.h │ │ │ │ ├── SkThread_platform.h │ │ │ │ ├── SkTime.h │ │ │ │ ├── SkTypeface.h │ │ │ │ ├── SkTypes.h │ │ │ │ ├── SkUnPreMultiply.h │ │ │ │ ├── SkUnitMapper.h │ │ │ │ ├── SkUserConfig.h │ │ │ │ ├── SkUtils.h │ │ │ │ ├── SkWriter32.h │ │ │ │ └── SkXfermode.h │ │ │ │ ├── effects │ │ │ │ ├── Sk1DPathEffect.h │ │ │ │ ├── Sk2DPathEffect.h │ │ │ │ ├── SkAvoidXfermode.h │ │ │ │ ├── SkBlurDrawLooper.h │ │ │ │ ├── SkBlurMaskFilter.h │ │ │ │ ├── SkColorMatrix.h │ │ │ │ ├── SkColorMatrixFilter.h │ │ │ │ ├── SkCornerPathEffect.h │ │ │ │ ├── SkDashPathEffect.h │ │ │ │ ├── SkDiscretePathEffect.h │ │ │ │ ├── SkDrawExtraPathEffect.h │ │ │ │ ├── SkEmbossMaskFilter.h │ │ │ │ ├── SkGradientShader.h │ │ │ │ ├── SkKernel33MaskFilter.h │ │ │ │ ├── SkLayerDrawLooper.h │ │ │ │ ├── SkLayerRasterizer.h │ │ │ │ ├── SkPaintFlagsDrawFilter.h │ │ │ │ ├── SkPixelXorXfermode.h │ │ │ │ ├── SkPorterDuff.h │ │ │ │ ├── SkTableMaskFilter.h │ │ │ │ └── SkTransparentShader.h │ │ │ │ ├── graphics │ │ │ │ └── DoxygenMain.dox │ │ │ │ ├── images │ │ │ │ ├── SkFlipPixelRef.h │ │ │ │ ├── SkImageDecoder.h │ │ │ │ ├── SkImageEncoder.h │ │ │ │ ├── SkImageRef.h │ │ │ │ ├── SkImageRef_GlobalPool.h │ │ │ │ ├── SkJpegUtility.h │ │ │ │ ├── SkMovie.h │ │ │ │ └── SkPageFlipper.h │ │ │ │ ├── ports │ │ │ │ └── SkStream_Win.h │ │ │ │ ├── svg │ │ │ │ ├── SkSVGAttribute.h │ │ │ │ ├── SkSVGBase.h │ │ │ │ ├── SkSVGPaintState.h │ │ │ │ ├── SkSVGParser.h │ │ │ │ └── SkSVGTypes.h │ │ │ │ ├── utils │ │ │ │ ├── SkBoundaryPatch.h │ │ │ │ ├── SkCamera.h │ │ │ │ ├── SkCullPoints.h │ │ │ │ ├── SkDumpCanvas.h │ │ │ │ ├── SkGLCanvas.h │ │ │ │ ├── SkInterpolator.h │ │ │ │ ├── SkLayer.h │ │ │ │ ├── SkMeshUtils.h │ │ │ │ ├── SkNWayCanvas.h │ │ │ │ ├── SkNinePatch.h │ │ │ │ ├── SkParse.h │ │ │ │ ├── SkParsePaint.h │ │ │ │ ├── SkProxyCanvas.h │ │ │ │ ├── SkSfntUtils.h │ │ │ │ ├── SkTextBox.h │ │ │ │ ├── SkUnitMappers.h │ │ │ │ └── mac │ │ │ │ │ └── SkCGUtils.h │ │ │ │ ├── views │ │ │ │ ├── SkApplication.h │ │ │ │ ├── SkBGViewArtist.h │ │ │ │ ├── SkBorderView.h │ │ │ │ ├── SkEvent.h │ │ │ │ ├── SkEventSink.h │ │ │ │ ├── SkImageView.h │ │ │ │ ├── SkKey.h │ │ │ │ ├── SkMetaData.h │ │ │ │ ├── SkOSMenu.h │ │ │ │ ├── SkOSSound.h │ │ │ │ ├── SkOSWindow_Mac.h │ │ │ │ ├── SkOSWindow_Unix.h │ │ │ │ ├── SkOSWindow_Win.h │ │ │ │ ├── SkOSWindow_wxwidgets.h │ │ │ │ ├── SkProgressBarView.h │ │ │ │ ├── SkScrollBarView.h │ │ │ │ ├── SkStackViewLayout.h │ │ │ │ ├── SkSystemEventTypes.h │ │ │ │ ├── SkView.h │ │ │ │ ├── SkViewInflate.h │ │ │ │ ├── SkWidget.h │ │ │ │ ├── SkWidgetViews.h │ │ │ │ └── SkWindow.h │ │ │ │ └── xml │ │ │ │ ├── SkBML_WXMLParser.h │ │ │ │ ├── SkBML_XMLParser.h │ │ │ │ ├── SkDOM.h │ │ │ │ ├── SkJS.h │ │ │ │ ├── SkXMLParser.h │ │ │ │ └── SkXMLWriter.h │ │ ├── frameworks │ │ │ └── base │ │ │ │ ├── include │ │ │ │ ├── android_runtime │ │ │ │ │ ├── ActivityManager.h │ │ │ │ │ ├── AndroidRuntime.h │ │ │ │ │ └── android_util_AssetManager.h │ │ │ │ ├── binder │ │ │ │ │ ├── Binder.h │ │ │ │ │ ├── BpBinder.h │ │ │ │ │ ├── IBinder.h │ │ │ │ │ ├── IInterface.h │ │ │ │ │ ├── IMemory.h │ │ │ │ │ ├── IPCThreadState.h │ │ │ │ │ ├── IPermissionController.h │ │ │ │ │ ├── IServiceManager.h │ │ │ │ │ ├── MemoryBase.h │ │ │ │ │ ├── MemoryDealer.h │ │ │ │ │ ├── MemoryHeapBase.h │ │ │ │ │ ├── MemoryHeapPmem.h │ │ │ │ │ ├── Parcel.h │ │ │ │ │ ├── Permission.h │ │ │ │ │ └── ProcessState.h │ │ │ │ ├── camera │ │ │ │ │ ├── Camera.h │ │ │ │ │ ├── CameraHardwareInterface.h │ │ │ │ │ ├── CameraParameters.h │ │ │ │ │ ├── ICamera.h │ │ │ │ │ ├── ICameraClient.h │ │ │ │ │ └── ICameraService.h │ │ │ │ ├── media │ │ │ │ │ ├── AudioRecord.h │ │ │ │ │ ├── AudioSystem.h │ │ │ │ │ ├── AudioTrack.h │ │ │ │ │ ├── IAudioFlinger.h │ │ │ │ │ ├── IAudioFlingerClient.h │ │ │ │ │ ├── IAudioPolicyService.h │ │ │ │ │ ├── IAudioRecord.h │ │ │ │ │ ├── IAudioTrack.h │ │ │ │ │ ├── IMediaDeathNotifier.h │ │ │ │ │ ├── IMediaMetadataRetriever.h │ │ │ │ │ ├── IMediaPlayer.h │ │ │ │ │ ├── IMediaPlayerClient.h │ │ │ │ │ ├── IMediaPlayerService.h │ │ │ │ │ ├── IMediaRecorder.h │ │ │ │ │ ├── IOMX.h │ │ │ │ │ ├── JetPlayer.h │ │ │ │ │ ├── MediaMetadataRetrieverInterface.h │ │ │ │ │ ├── MediaPlayerInterface.h │ │ │ │ │ ├── MediaProfiles.h │ │ │ │ │ ├── MediaRecorderBase.h │ │ │ │ │ ├── Metadata.h │ │ │ │ │ ├── PVMediaRecorder.h │ │ │ │ │ ├── PVMetadataRetriever.h │ │ │ │ │ ├── PVPlayer.h │ │ │ │ │ ├── ToneGenerator.h │ │ │ │ │ ├── mediametadataretriever.h │ │ │ │ │ ├── mediaplayer.h │ │ │ │ │ ├── mediarecorder.h │ │ │ │ │ ├── mediascanner.h │ │ │ │ │ ├── stagefright │ │ │ │ │ │ ├── AMRWriter.h │ │ │ │ │ │ ├── AudioPlayer.h │ │ │ │ │ │ ├── AudioSource.h │ │ │ │ │ │ ├── CachingDataSource.h │ │ │ │ │ │ ├── CameraSource.h │ │ │ │ │ │ ├── ColorConverter.h │ │ │ │ │ │ ├── DataSource.h │ │ │ │ │ │ ├── FileSource.h │ │ │ │ │ │ ├── HTTPDataSource.h │ │ │ │ │ │ ├── HardwareAPI.h │ │ │ │ │ │ ├── JPEGSource.h │ │ │ │ │ │ ├── MPEG4Writer.h │ │ │ │ │ │ ├── MediaBuffer.h │ │ │ │ │ │ ├── MediaBufferGroup.h │ │ │ │ │ │ ├── MediaDebug.h │ │ │ │ │ │ ├── MediaDefs.h │ │ │ │ │ │ ├── MediaErrors.h │ │ │ │ │ │ ├── MediaExtractor.h │ │ │ │ │ │ ├── MediaSource.h │ │ │ │ │ │ ├── MediaWriter.h │ │ │ │ │ │ ├── MetaData.h │ │ │ │ │ │ ├── OMXClient.h │ │ │ │ │ │ ├── OMXCodec.h │ │ │ │ │ │ ├── OMXPluginBase.h │ │ │ │ │ │ ├── ShoutcastSource.h │ │ │ │ │ │ ├── StagefrightMediaScanner.h │ │ │ │ │ │ ├── TimeSource.h │ │ │ │ │ │ ├── Utils.h │ │ │ │ │ │ └── VideoRenderer.h │ │ │ │ │ └── thread_init.h │ │ │ │ ├── pim │ │ │ │ │ └── EventRecurrence.h │ │ │ │ ├── private │ │ │ │ │ ├── binder │ │ │ │ │ │ ├── Static.h │ │ │ │ │ │ └── binder_module.h │ │ │ │ │ ├── media │ │ │ │ │ │ ├── AudioTrackShared.h │ │ │ │ │ │ └── VideoFrame.h │ │ │ │ │ ├── opengles │ │ │ │ │ │ └── gl_context.h │ │ │ │ │ ├── surfaceflinger │ │ │ │ │ │ ├── LayerState.h │ │ │ │ │ │ └── SharedBufferStack.h │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── RegionHelper.h │ │ │ │ │ │ ├── android_natives_priv.h │ │ │ │ │ │ └── sw_gralloc_handle.h │ │ │ │ │ └── utils │ │ │ │ │ │ └── Static.h │ │ │ │ ├── surfaceflinger │ │ │ │ │ ├── ISurface.h │ │ │ │ │ ├── ISurfaceComposer.h │ │ │ │ │ ├── ISurfaceFlingerClient.h │ │ │ │ │ ├── Surface.h │ │ │ │ │ └── SurfaceComposerClient.h │ │ │ │ ├── tts │ │ │ │ │ └── TtsEngine.h │ │ │ │ ├── ui │ │ │ │ │ ├── DisplayInfo.h │ │ │ │ │ ├── EGLNativeSurface.h │ │ │ │ │ ├── EGLUtils.h │ │ │ │ │ ├── EventHub.h │ │ │ │ │ ├── FramebufferNativeWindow.h │ │ │ │ │ ├── GraphicBuffer.h │ │ │ │ │ ├── GraphicBufferAllocator.h │ │ │ │ │ ├── GraphicBufferMapper.h │ │ │ │ │ ├── IOverlay.h │ │ │ │ │ ├── KeyCharacterMap.h │ │ │ │ │ ├── KeycodeLabels.h │ │ │ │ │ ├── Overlay.h │ │ │ │ │ ├── PixelFormat.h │ │ │ │ │ ├── Point.h │ │ │ │ │ ├── Rect.h │ │ │ │ │ ├── Region.h │ │ │ │ │ ├── android_native_buffer.h │ │ │ │ │ └── egl │ │ │ │ │ │ └── android_natives.h │ │ │ │ └── utils │ │ │ │ │ ├── Asset.h │ │ │ │ │ ├── AssetDir.h │ │ │ │ │ ├── AssetManager.h │ │ │ │ │ ├── Atomic.h │ │ │ │ │ ├── BackupHelpers.h │ │ │ │ │ ├── Buffer.h │ │ │ │ │ ├── BufferedTextOutput.h │ │ │ │ │ ├── ByteOrder.h │ │ │ │ │ ├── CallStack.h │ │ │ │ │ ├── Debug.h │ │ │ │ │ ├── Endian.h │ │ │ │ │ ├── Errors.h │ │ │ │ │ ├── FileMap.h │ │ │ │ │ ├── Flattenable.h │ │ │ │ │ ├── KeyedVector.h │ │ │ │ │ ├── List.h │ │ │ │ │ ├── Log.h │ │ │ │ │ ├── RefBase.h │ │ │ │ │ ├── ResourceTypes.h │ │ │ │ │ ├── SharedBuffer.h │ │ │ │ │ ├── Singleton.h │ │ │ │ │ ├── SortedVector.h │ │ │ │ │ ├── StopWatch.h │ │ │ │ │ ├── String16.h │ │ │ │ │ ├── String8.h │ │ │ │ │ ├── StringArray.h │ │ │ │ │ ├── SystemClock.h │ │ │ │ │ ├── TextOutput.h │ │ │ │ │ ├── Timers.h │ │ │ │ │ ├── TypeHelpers.h │ │ │ │ │ ├── Vector.h │ │ │ │ │ ├── VectorImpl.h │ │ │ │ │ ├── ZipFileCRO.h │ │ │ │ │ ├── ZipFileRO.h │ │ │ │ │ ├── ZipUtils.h │ │ │ │ │ ├── ashmem.h │ │ │ │ │ ├── misc.h │ │ │ │ │ └── threads.h │ │ │ │ └── native │ │ │ │ ├── graphics │ │ │ │ └── jni │ │ │ │ │ ├── Android.mk │ │ │ │ │ └── bitmap.cpp │ │ │ │ └── include │ │ │ │ └── android │ │ │ │ └── bitmap.h │ │ ├── hardware │ │ │ └── libhardware │ │ │ │ └── include │ │ │ │ └── hardware │ │ │ │ ├── copybit.h │ │ │ │ ├── gralloc.h │ │ │ │ ├── hardware.h │ │ │ │ ├── lights.h │ │ │ │ ├── overlay.h │ │ │ │ ├── qemud.h │ │ │ │ └── sensors.h │ │ ├── libandroid_runtime.so │ │ ├── libcutils.so │ │ ├── libmedia.so │ │ ├── libnativehelper.so │ │ ├── libskia.so │ │ ├── libsurfaceflinger_client.so │ │ ├── libui.so │ │ ├── libutils.so │ │ └── system │ │ │ └── core │ │ │ └── include │ │ │ ├── acc │ │ │ └── acc.h │ │ │ ├── android │ │ │ └── log.h │ │ │ ├── arch │ │ │ ├── darwin-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── freebsd-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-arm │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-sh │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── target_linux-x86 │ │ │ │ └── AndroidConfig.h │ │ │ └── windows │ │ │ │ └── AndroidConfig.h │ │ │ ├── ctest │ │ │ └── ctest.h │ │ │ ├── cutils │ │ │ ├── abort_socket.h │ │ │ ├── array.h │ │ │ ├── ashmem.h │ │ │ ├── atomic.h │ │ │ ├── compiler.h │ │ │ ├── config_utils.h │ │ │ ├── cpu_info.h │ │ │ ├── dir_hash.h │ │ │ ├── event_tag_map.h │ │ │ ├── hashmap.h │ │ │ ├── iosched_policy.h │ │ │ ├── jstring.h │ │ │ ├── log.h │ │ │ ├── logd.h │ │ │ ├── logger.h │ │ │ ├── logprint.h │ │ │ ├── memory.h │ │ │ ├── misc.h │ │ │ ├── mq.h │ │ │ ├── mspace.h │ │ │ ├── native_handle.h │ │ │ ├── open_memstream.h │ │ │ ├── process_name.h │ │ │ ├── properties.h │ │ │ ├── record_stream.h │ │ │ ├── sched_policy.h │ │ │ ├── selector.h │ │ │ ├── sockets.h │ │ │ ├── threads.h │ │ │ ├── tztime.h │ │ │ ├── uio.h │ │ │ └── zygote.h │ │ │ ├── diskconfig │ │ │ └── diskconfig.h │ │ │ ├── mincrypt │ │ │ ├── rsa.h │ │ │ └── sha.h │ │ │ ├── pixelflinger │ │ │ ├── format.h │ │ │ └── pixelflinger.h │ │ │ ├── private │ │ │ ├── android_filesystem_config.h │ │ │ └── pixelflinger │ │ │ │ ├── ggl_context.h │ │ │ │ └── ggl_fixed.h │ │ │ ├── sysutils │ │ │ ├── FrameworkClient.h │ │ │ ├── FrameworkCommand.h │ │ │ ├── FrameworkListener.h │ │ │ ├── NetlinkEvent.h │ │ │ ├── NetlinkListener.h │ │ │ ├── ServiceManager.h │ │ │ ├── SocketClient.h │ │ │ └── SocketListener.h │ │ │ └── zipfile │ │ │ └── zipfile.h │ └── aosp-9 │ │ ├── bionic │ │ └── libc │ │ │ └── include │ │ │ ├── alloca.h │ │ │ ├── arpa │ │ │ ├── inet.h │ │ │ ├── nameser.h │ │ │ └── telnet.h │ │ │ ├── assert.h │ │ │ ├── byteswap.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── dlfcn.h │ │ │ ├── elf.h │ │ │ ├── endian.h │ │ │ ├── err.h │ │ │ ├── errno.h │ │ │ ├── fcntl.h │ │ │ ├── features.h │ │ │ ├── fnmatch.h │ │ │ ├── fts.h │ │ │ ├── getopt.h │ │ │ ├── grp.h │ │ │ ├── inttypes.h │ │ │ ├── lastlog.h │ │ │ ├── libgen.h │ │ │ ├── limits.h │ │ │ ├── locale.h │ │ │ ├── malloc.h │ │ │ ├── memory.h │ │ │ ├── mntent.h │ │ │ ├── net │ │ │ ├── ethertypes.h │ │ │ ├── if.h │ │ │ ├── if_arp.h │ │ │ ├── if_dl.h │ │ │ ├── if_ether.h │ │ │ ├── if_ieee1394.h │ │ │ ├── if_packet.h │ │ │ ├── if_types.h │ │ │ └── route.h │ │ │ ├── netdb.h │ │ │ ├── netinet │ │ │ ├── ether.h │ │ │ ├── if_ether.h │ │ │ ├── in.h │ │ │ ├── in6.h │ │ │ ├── in_systm.h │ │ │ ├── ip.h │ │ │ ├── ip_icmp.h │ │ │ ├── tcp.h │ │ │ └── udp.h │ │ │ ├── netpacket │ │ │ └── packet.h │ │ │ ├── nsswitch.h │ │ │ ├── pathconf.h │ │ │ ├── paths.h │ │ │ ├── poll.h │ │ │ ├── pthread.h │ │ │ ├── pwd.h │ │ │ ├── regex.h │ │ │ ├── resolv.h │ │ │ ├── sched.h │ │ │ ├── semaphore.h │ │ │ ├── setjmp.h │ │ │ ├── sgtty.h │ │ │ ├── sha1.h │ │ │ ├── signal.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ ├── sys │ │ │ ├── _errdefs.h │ │ │ ├── _sigdefs.h │ │ │ ├── _system_properties.h │ │ │ ├── _types.h │ │ │ ├── atomics.h │ │ │ ├── cdefs.h │ │ │ ├── cdefs_elf.h │ │ │ ├── dirent.h │ │ │ ├── endian.h │ │ │ ├── epoll.h │ │ │ ├── errno.h │ │ │ ├── eventfd.h │ │ │ ├── exec_elf.h │ │ │ ├── file.h │ │ │ ├── fsuid.h │ │ │ ├── inotify.h │ │ │ ├── ioctl.h │ │ │ ├── ioctl_compat.h │ │ │ ├── ipc.h │ │ │ ├── klog.h │ │ │ ├── limits.h │ │ │ ├── linux-syscalls.h │ │ │ ├── linux-unistd.h │ │ │ ├── mman.h │ │ │ ├── mount.h │ │ │ ├── param.h │ │ │ ├── poll.h │ │ │ ├── prctl.h │ │ │ ├── ptrace.h │ │ │ ├── queue.h │ │ │ ├── reboot.h │ │ │ ├── resource.h │ │ │ ├── select.h │ │ │ ├── sendfile.h │ │ │ ├── socket.h │ │ │ ├── socketcalls.h │ │ │ ├── stat.h │ │ │ ├── statfs.h │ │ │ ├── syscall.h │ │ │ ├── sysconf.h │ │ │ ├── sysinfo.h │ │ │ ├── syslimits.h │ │ │ ├── sysmacros.h │ │ │ ├── system_properties.h │ │ │ ├── time.h │ │ │ ├── timeb.h │ │ │ ├── times.h │ │ │ ├── ttychars.h │ │ │ ├── ttydev.h │ │ │ ├── types.h │ │ │ ├── uio.h │ │ │ ├── un.h │ │ │ ├── utime.h │ │ │ ├── utsname.h │ │ │ ├── vfs.h │ │ │ ├── vt.h │ │ │ └── wait.h │ │ │ ├── syslog.h │ │ │ ├── termio.h │ │ │ ├── termios.h │ │ │ ├── time.h │ │ │ ├── time64.h │ │ │ ├── unistd.h │ │ │ ├── util.h │ │ │ ├── utime.h │ │ │ ├── utmp.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ ├── dalvik │ │ └── libnativehelper │ │ │ ├── Android.mk │ │ │ ├── JNIHelp.c │ │ │ ├── MODULE_LICENSE_APACHE2 │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── Register.c │ │ │ └── include │ │ │ └── nativehelper │ │ │ ├── JNIHelp.h │ │ │ └── jni.h │ │ ├── external │ │ └── skia │ │ │ └── include │ │ │ ├── animator │ │ │ ├── SkAnimator.h │ │ │ └── SkAnimatorView.h │ │ │ ├── core │ │ │ ├── Sk64.h │ │ │ ├── SkAutoKern.h │ │ │ ├── SkBitmap.h │ │ │ ├── SkBlitter.h │ │ │ ├── SkBounder.h │ │ │ ├── SkBuffer.h │ │ │ ├── SkCanvas.h │ │ │ ├── SkChunkAlloc.h │ │ │ ├── SkColor.h │ │ │ ├── SkColorFilter.h │ │ │ ├── SkColorPriv.h │ │ │ ├── SkColorShader.h │ │ │ ├── SkComposeShader.h │ │ │ ├── SkDeque.h │ │ │ ├── SkDescriptor.h │ │ │ ├── SkDevice.h │ │ │ ├── SkDither.h │ │ │ ├── SkDraw.h │ │ │ ├── SkDrawFilter.h │ │ │ ├── SkDrawLooper.h │ │ │ ├── SkEdgeClipper.h │ │ │ ├── SkEndian.h │ │ │ ├── SkFDot6.h │ │ │ ├── SkFixed.h │ │ │ ├── SkFlattenable.h │ │ │ ├── SkFloatBits.h │ │ │ ├── SkFloatingPoint.h │ │ │ ├── SkFontHost.h │ │ │ ├── SkGeometry.h │ │ │ ├── SkGlobals.h │ │ │ ├── SkGraphics.h │ │ │ ├── SkLineClipper.h │ │ │ ├── SkMMapStream.h │ │ │ ├── SkMallocPixelRef.h │ │ │ ├── SkMask.h │ │ │ ├── SkMaskFilter.h │ │ │ ├── SkMath.h │ │ │ ├── SkMatrix.h │ │ │ ├── SkOSFile.h │ │ │ ├── SkPackBits.h │ │ │ ├── SkPaint.h │ │ │ ├── SkPath.h │ │ │ ├── SkPathEffect.h │ │ │ ├── SkPathMeasure.h │ │ │ ├── SkPerspIter.h │ │ │ ├── SkPicture.h │ │ │ ├── SkPixelRef.h │ │ │ ├── SkPoint.h │ │ │ ├── SkPostConfig.h │ │ │ ├── SkPreConfig.h │ │ │ ├── SkPtrRecorder.h │ │ │ ├── SkRandom.h │ │ │ ├── SkRasterizer.h │ │ │ ├── SkReader32.h │ │ │ ├── SkRect.h │ │ │ ├── SkRefCnt.h │ │ │ ├── SkRegion.h │ │ │ ├── SkScalar.h │ │ │ ├── SkScalarCompare.h │ │ │ ├── SkScalerContext.h │ │ │ ├── SkScan.h │ │ │ ├── SkShader.h │ │ │ ├── SkShape.h │ │ │ ├── SkSize.h │ │ │ ├── SkStream.h │ │ │ ├── SkString.h │ │ │ ├── SkStroke.h │ │ │ ├── SkTDArray.h │ │ │ ├── SkTDStack.h │ │ │ ├── SkTDict.h │ │ │ ├── SkTRegistry.h │ │ │ ├── SkTSearch.h │ │ │ ├── SkTemplates.h │ │ │ ├── SkThread.h │ │ │ ├── SkThread_platform.h │ │ │ ├── SkTime.h │ │ │ ├── SkTypeface.h │ │ │ ├── SkTypes.h │ │ │ ├── SkUnPreMultiply.h │ │ │ ├── SkUnitMapper.h │ │ │ ├── SkUserConfig.h │ │ │ ├── SkUtils.h │ │ │ ├── SkWriter32.h │ │ │ └── SkXfermode.h │ │ │ ├── effects │ │ │ ├── Sk1DPathEffect.h │ │ │ ├── Sk2DPathEffect.h │ │ │ ├── SkAvoidXfermode.h │ │ │ ├── SkBlurDrawLooper.h │ │ │ ├── SkBlurMaskFilter.h │ │ │ ├── SkColorMatrix.h │ │ │ ├── SkColorMatrixFilter.h │ │ │ ├── SkCornerPathEffect.h │ │ │ ├── SkDashPathEffect.h │ │ │ ├── SkDiscretePathEffect.h │ │ │ ├── SkDrawExtraPathEffect.h │ │ │ ├── SkEmbossMaskFilter.h │ │ │ ├── SkGradientShader.h │ │ │ ├── SkKernel33MaskFilter.h │ │ │ ├── SkLayerDrawLooper.h │ │ │ ├── SkLayerRasterizer.h │ │ │ ├── SkPaintFlagsDrawFilter.h │ │ │ ├── SkPixelXorXfermode.h │ │ │ ├── SkPorterDuff.h │ │ │ ├── SkTableMaskFilter.h │ │ │ └── SkTransparentShader.h │ │ │ ├── graphics │ │ │ └── DoxygenMain.dox │ │ │ ├── images │ │ │ ├── SkBitmapRegionDecoder.h │ │ │ ├── SkFlipPixelRef.h │ │ │ ├── SkImageDecoder.h │ │ │ ├── SkImageEncoder.h │ │ │ ├── SkImageRef.h │ │ │ ├── SkImageRef_GlobalPool.h │ │ │ ├── SkJpegUtility.h │ │ │ ├── SkMovie.h │ │ │ └── SkPageFlipper.h │ │ │ ├── ports │ │ │ └── SkStream_Win.h │ │ │ ├── svg │ │ │ ├── SkSVGAttribute.h │ │ │ ├── SkSVGBase.h │ │ │ ├── SkSVGPaintState.h │ │ │ ├── SkSVGParser.h │ │ │ └── SkSVGTypes.h │ │ │ ├── utils │ │ │ ├── SkBoundaryPatch.h │ │ │ ├── SkCamera.h │ │ │ ├── SkCullPoints.h │ │ │ ├── SkDumpCanvas.h │ │ │ ├── SkGLCanvas.h │ │ │ ├── SkInterpolator.h │ │ │ ├── SkLayer.h │ │ │ ├── SkMeshUtils.h │ │ │ ├── SkNWayCanvas.h │ │ │ ├── SkNinePatch.h │ │ │ ├── SkParse.h │ │ │ ├── SkParsePaint.h │ │ │ ├── SkProxyCanvas.h │ │ │ ├── SkSfntUtils.h │ │ │ ├── SkTextBox.h │ │ │ ├── SkUnitMappers.h │ │ │ └── mac │ │ │ │ └── SkCGUtils.h │ │ │ ├── views │ │ │ ├── SkApplication.h │ │ │ ├── SkBGViewArtist.h │ │ │ ├── SkBorderView.h │ │ │ ├── SkEvent.h │ │ │ ├── SkEventSink.h │ │ │ ├── SkImageView.h │ │ │ ├── SkKey.h │ │ │ ├── SkMetaData.h │ │ │ ├── SkOSMenu.h │ │ │ ├── SkOSSound.h │ │ │ ├── SkOSWindow_Mac.h │ │ │ ├── SkOSWindow_Unix.h │ │ │ ├── SkOSWindow_Win.h │ │ │ ├── SkOSWindow_wxwidgets.h │ │ │ ├── SkProgressBarView.h │ │ │ ├── SkScrollBarView.h │ │ │ ├── SkStackViewLayout.h │ │ │ ├── SkSystemEventTypes.h │ │ │ ├── SkView.h │ │ │ ├── SkViewInflate.h │ │ │ ├── SkWidget.h │ │ │ ├── SkWidgetViews.h │ │ │ └── SkWindow.h │ │ │ └── xml │ │ │ ├── SkBML_WXMLParser.h │ │ │ ├── SkBML_XMLParser.h │ │ │ ├── SkDOM.h │ │ │ ├── SkJS.h │ │ │ ├── SkXMLParser.h │ │ │ └── SkXMLWriter.h │ │ ├── frameworks │ │ └── base │ │ │ ├── include │ │ │ ├── android_runtime │ │ │ │ ├── ActivityManager.h │ │ │ │ ├── AndroidRuntime.h │ │ │ │ ├── android_app_NativeActivity.h │ │ │ │ ├── android_content_res_Configuration.h │ │ │ │ ├── android_util_AssetManager.h │ │ │ │ └── android_view_Surface.h │ │ │ ├── binder │ │ │ │ ├── Binder.h │ │ │ │ ├── BinderService.h │ │ │ │ ├── BpBinder.h │ │ │ │ ├── IBinder.h │ │ │ │ ├── IInterface.h │ │ │ │ ├── IMemory.h │ │ │ │ ├── IPCThreadState.h │ │ │ │ ├── IPermissionController.h │ │ │ │ ├── IServiceManager.h │ │ │ │ ├── MemoryBase.h │ │ │ │ ├── MemoryDealer.h │ │ │ │ ├── MemoryHeapBase.h │ │ │ │ ├── MemoryHeapPmem.h │ │ │ │ ├── Parcel.h │ │ │ │ ├── Permission.h │ │ │ │ └── ProcessState.h │ │ │ ├── camera │ │ │ │ ├── Camera.h │ │ │ │ ├── CameraHardwareInterface.h │ │ │ │ ├── CameraParameters.h │ │ │ │ ├── ICamera.h │ │ │ │ ├── ICameraClient.h │ │ │ │ └── ICameraService.h │ │ │ ├── gui │ │ │ │ ├── ISensorEventConnection.h │ │ │ │ ├── ISensorServer.h │ │ │ │ ├── Sensor.h │ │ │ │ ├── SensorChannel.h │ │ │ │ ├── SensorEventQueue.h │ │ │ │ └── SensorManager.h │ │ │ ├── media │ │ │ │ ├── AudioEffect.h │ │ │ │ ├── AudioRecord.h │ │ │ │ ├── AudioSystem.h │ │ │ │ ├── AudioTrack.h │ │ │ │ ├── EffectApi.h │ │ │ │ ├── EffectBassBoostApi.h │ │ │ │ ├── EffectEnvironmentalReverbApi.h │ │ │ │ ├── EffectEqualizerApi.h │ │ │ │ ├── EffectPresetReverbApi.h │ │ │ │ ├── EffectVirtualizerApi.h │ │ │ │ ├── EffectVisualizerApi.h │ │ │ │ ├── EffectsFactoryApi.h │ │ │ │ ├── IAudioFlinger.h │ │ │ │ ├── IAudioFlingerClient.h │ │ │ │ ├── IAudioPolicyService.h │ │ │ │ ├── IAudioRecord.h │ │ │ │ ├── IAudioTrack.h │ │ │ │ ├── IEffect.h │ │ │ │ ├── IEffectClient.h │ │ │ │ ├── IMediaDeathNotifier.h │ │ │ │ ├── IMediaMetadataRetriever.h │ │ │ │ ├── IMediaPlayer.h │ │ │ │ ├── IMediaPlayerClient.h │ │ │ │ ├── IMediaPlayerService.h │ │ │ │ ├── IMediaRecorder.h │ │ │ │ ├── IMediaRecorderClient.h │ │ │ │ ├── IOMX.h │ │ │ │ ├── JetPlayer.h │ │ │ │ ├── MediaMetadataRetrieverInterface.h │ │ │ │ ├── MediaPlayerInterface.h │ │ │ │ ├── MediaProfiles.h │ │ │ │ ├── MediaRecorderBase.h │ │ │ │ ├── Metadata.h │ │ │ │ ├── PVMediaRecorder.h │ │ │ │ ├── PVMetadataRetriever.h │ │ │ │ ├── PVPlayer.h │ │ │ │ ├── ToneGenerator.h │ │ │ │ ├── Visualizer.h │ │ │ │ ├── mediametadataretriever.h │ │ │ │ ├── mediaplayer.h │ │ │ │ ├── mediarecorder.h │ │ │ │ ├── mediascanner.h │ │ │ │ ├── stagefright │ │ │ │ │ ├── AMRWriter.h │ │ │ │ │ ├── AudioPlayer.h │ │ │ │ │ ├── AudioSource.h │ │ │ │ │ ├── CameraSource.h │ │ │ │ │ ├── ColorConverter.h │ │ │ │ │ ├── DataSource.h │ │ │ │ │ ├── FileSource.h │ │ │ │ │ ├── HardwareAPI.h │ │ │ │ │ ├── JPEGSource.h │ │ │ │ │ ├── MPEG2TSWriter.h │ │ │ │ │ ├── MPEG4Writer.h │ │ │ │ │ ├── MediaBuffer.h │ │ │ │ │ ├── MediaBufferGroup.h │ │ │ │ │ ├── MediaDebug.h │ │ │ │ │ ├── MediaDefs.h │ │ │ │ │ ├── MediaErrors.h │ │ │ │ │ ├── MediaExtractor.h │ │ │ │ │ ├── MediaSource.h │ │ │ │ │ ├── MediaWriter.h │ │ │ │ │ ├── MetaData.h │ │ │ │ │ ├── OMXClient.h │ │ │ │ │ ├── OMXCodec.h │ │ │ │ │ ├── OMXPluginBase.h │ │ │ │ │ ├── ShoutcastSource.h │ │ │ │ │ ├── StagefrightMediaScanner.h │ │ │ │ │ ├── TimeSource.h │ │ │ │ │ ├── Utils.h │ │ │ │ │ ├── VideoRenderer.h │ │ │ │ │ ├── foundation │ │ │ │ │ │ ├── AAtomizer.h │ │ │ │ │ │ ├── ABase.h │ │ │ │ │ │ ├── ABitReader.h │ │ │ │ │ │ ├── ABuffer.h │ │ │ │ │ │ ├── ADebug.h │ │ │ │ │ │ ├── AHandler.h │ │ │ │ │ │ ├── AHandlerReflector.h │ │ │ │ │ │ ├── ALooper.h │ │ │ │ │ │ ├── ALooperRoster.h │ │ │ │ │ │ ├── AMessage.h │ │ │ │ │ │ ├── AString.h │ │ │ │ │ │ ├── base64.h │ │ │ │ │ │ └── hexdump.h │ │ │ │ │ └── openmax │ │ │ │ │ │ ├── OMX_Audio.h │ │ │ │ │ │ ├── OMX_Component.h │ │ │ │ │ │ ├── OMX_ContentPipe.h │ │ │ │ │ │ ├── OMX_Core.h │ │ │ │ │ │ ├── OMX_IVCommon.h │ │ │ │ │ │ ├── OMX_Image.h │ │ │ │ │ │ ├── OMX_Index.h │ │ │ │ │ │ ├── OMX_Other.h │ │ │ │ │ │ ├── OMX_Types.h │ │ │ │ │ │ └── OMX_Video.h │ │ │ │ └── thread_init.h │ │ │ ├── pim │ │ │ │ └── EventRecurrence.h │ │ │ ├── private │ │ │ │ ├── README │ │ │ │ ├── binder │ │ │ │ │ ├── Static.h │ │ │ │ │ └── binder_module.h │ │ │ │ ├── media │ │ │ │ │ ├── AudioEffectShared.h │ │ │ │ │ ├── AudioTrackShared.h │ │ │ │ │ └── VideoFrame.h │ │ │ │ ├── opengles │ │ │ │ │ └── gl_context.h │ │ │ │ ├── surfaceflinger │ │ │ │ │ ├── LayerState.h │ │ │ │ │ └── SharedBufferStack.h │ │ │ │ ├── ui │ │ │ │ │ ├── RegionHelper.h │ │ │ │ │ ├── android_natives_priv.h │ │ │ │ │ └── sw_gralloc_handle.h │ │ │ │ └── utils │ │ │ │ │ └── Static.h │ │ │ ├── storage │ │ │ │ ├── IMountService.h │ │ │ │ ├── IMountServiceListener.h │ │ │ │ ├── IMountShutdownObserver.h │ │ │ │ └── IObbActionListener.h │ │ │ ├── surfaceflinger │ │ │ │ ├── ISurface.h │ │ │ │ ├── ISurfaceComposer.h │ │ │ │ ├── ISurfaceComposerClient.h │ │ │ │ ├── Surface.h │ │ │ │ └── SurfaceComposerClient.h │ │ │ ├── tts │ │ │ │ └── TtsEngine.h │ │ │ ├── ui │ │ │ │ ├── DisplayInfo.h │ │ │ │ ├── EGLNativeSurface.h │ │ │ │ ├── EGLUtils.h │ │ │ │ ├── EventHub.h │ │ │ │ ├── FramebufferNativeWindow.h │ │ │ │ ├── GraphicBuffer.h │ │ │ │ ├── GraphicBufferAllocator.h │ │ │ │ ├── GraphicBufferMapper.h │ │ │ │ ├── GraphicLog.h │ │ │ │ ├── IOverlay.h │ │ │ │ ├── Input.h │ │ │ │ ├── InputDispatcher.h │ │ │ │ ├── InputManager.h │ │ │ │ ├── InputReader.h │ │ │ │ ├── InputTransport.h │ │ │ │ ├── KeyCharacterMap.h │ │ │ │ ├── KeycodeLabels.h │ │ │ │ ├── Overlay.h │ │ │ │ ├── PixelFormat.h │ │ │ │ ├── Point.h │ │ │ │ ├── PowerManager.h │ │ │ │ ├── Rect.h │ │ │ │ ├── Region.h │ │ │ │ ├── android_native_buffer.h │ │ │ │ └── egl │ │ │ │ │ └── android_natives.h │ │ │ └── utils │ │ │ │ ├── Asset.h │ │ │ │ ├── AssetDir.h │ │ │ │ ├── AssetManager.h │ │ │ │ ├── Atomic.h │ │ │ │ ├── BackupHelpers.h │ │ │ │ ├── BitSet.h │ │ │ │ ├── BufferedTextOutput.h │ │ │ │ ├── ByteOrder.h │ │ │ │ ├── CallStack.h │ │ │ │ ├── Debug.h │ │ │ │ ├── Endian.h │ │ │ │ ├── Errors.h │ │ │ │ ├── FileMap.h │ │ │ │ ├── Flattenable.h │ │ │ │ ├── KeyedVector.h │ │ │ │ ├── List.h │ │ │ │ ├── Log.h │ │ │ │ ├── Looper.h │ │ │ │ ├── ObbFile.h │ │ │ │ ├── Pool.h │ │ │ │ ├── RefBase.h │ │ │ │ ├── ResourceTypes.h │ │ │ │ ├── SharedBuffer.h │ │ │ │ ├── Singleton.h │ │ │ │ ├── SortedVector.h │ │ │ │ ├── StopWatch.h │ │ │ │ ├── StreamingZipInflater.h │ │ │ │ ├── String16.h │ │ │ │ ├── String8.h │ │ │ │ ├── StringArray.h │ │ │ │ ├── SystemClock.h │ │ │ │ ├── TextOutput.h │ │ │ │ ├── Timers.h │ │ │ │ ├── TypeHelpers.h │ │ │ │ ├── Vector.h │ │ │ │ ├── VectorImpl.h │ │ │ │ ├── ZipFileCRO.h │ │ │ │ ├── ZipFileRO.h │ │ │ │ ├── ZipUtils.h │ │ │ │ ├── ashmem.h │ │ │ │ ├── misc.h │ │ │ │ └── threads.h │ │ │ └── native │ │ │ ├── android │ │ │ ├── Android.mk │ │ │ ├── asset_manager.cpp │ │ │ ├── configuration.cpp │ │ │ ├── input.cpp │ │ │ ├── looper.cpp │ │ │ ├── native_activity.cpp │ │ │ ├── native_window.cpp │ │ │ ├── obb.cpp │ │ │ ├── sensor.cpp │ │ │ └── storage_manager.cpp │ │ │ ├── copy-to-ndk.sh │ │ │ ├── graphics │ │ │ └── jni │ │ │ │ ├── Android.mk │ │ │ │ └── bitmap.cpp │ │ │ └── include │ │ │ └── android │ │ │ ├── asset_manager.h │ │ │ ├── asset_manager_jni.h │ │ │ ├── bitmap.h │ │ │ ├── configuration.h │ │ │ ├── input.h │ │ │ ├── keycodes.h │ │ │ ├── looper.h │ │ │ ├── native_activity.h │ │ │ ├── native_window.h │ │ │ ├── native_window_jni.h │ │ │ ├── obb.h │ │ │ ├── rect.h │ │ │ ├── sensor.h │ │ │ ├── storage_manager.h │ │ │ └── window.h │ │ ├── hardware │ │ └── libhardware │ │ │ └── include │ │ │ └── hardware │ │ │ ├── copybit.h │ │ │ ├── gps.h │ │ │ ├── gralloc.h │ │ │ ├── hardware.h │ │ │ ├── lights.h │ │ │ ├── overlay.h │ │ │ ├── qemud.h │ │ │ ├── sensors.h │ │ │ └── sensors_deprecated.h │ │ ├── libOpenSLES.so │ │ ├── libandroid_runtime.so │ │ ├── libcutils.so │ │ ├── libmedia.so │ │ ├── libnativehelper.so │ │ ├── libskia.so │ │ ├── libsurfaceflinger_client.so │ │ ├── libui.so │ │ ├── libutils.so │ │ └── system │ │ ├── core │ │ └── include │ │ │ ├── acc │ │ │ └── acc.h │ │ │ ├── android │ │ │ └── log.h │ │ │ ├── arch │ │ │ ├── darwin-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── freebsd-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-arm │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-sh │ │ │ │ └── AndroidConfig.h │ │ │ ├── linux-x86 │ │ │ │ └── AndroidConfig.h │ │ │ ├── target_linux-x86 │ │ │ │ └── AndroidConfig.h │ │ │ └── windows │ │ │ │ └── AndroidConfig.h │ │ │ ├── ctest │ │ │ └── ctest.h │ │ │ ├── cutils │ │ │ ├── abort_socket.h │ │ │ ├── array.h │ │ │ ├── ashmem.h │ │ │ ├── atomic-arm.h │ │ │ ├── atomic-inline.h │ │ │ ├── atomic-x86.h │ │ │ ├── atomic.h │ │ │ ├── compiler.h │ │ │ ├── config_utils.h │ │ │ ├── cpu_info.h │ │ │ ├── dir_hash.h │ │ │ ├── event_tag_map.h │ │ │ ├── hashmap.h │ │ │ ├── iosched_policy.h │ │ │ ├── jstring.h │ │ │ ├── log.h │ │ │ ├── logd.h │ │ │ ├── logger.h │ │ │ ├── logprint.h │ │ │ ├── memory.h │ │ │ ├── misc.h │ │ │ ├── mq.h │ │ │ ├── mspace.h │ │ │ ├── native_handle.h │ │ │ ├── open_memstream.h │ │ │ ├── process_name.h │ │ │ ├── properties.h │ │ │ ├── record_stream.h │ │ │ ├── sched_policy.h │ │ │ ├── selector.h │ │ │ ├── sockets.h │ │ │ ├── threads.h │ │ │ ├── tztime.h │ │ │ ├── uio.h │ │ │ └── zygote.h │ │ │ ├── diskconfig │ │ │ └── diskconfig.h │ │ │ ├── mincrypt │ │ │ ├── rsa.h │ │ │ └── sha.h │ │ │ ├── pixelflinger │ │ │ ├── format.h │ │ │ └── pixelflinger.h │ │ │ ├── private │ │ │ ├── android_filesystem_config.h │ │ │ └── pixelflinger │ │ │ │ ├── ggl_context.h │ │ │ │ └── ggl_fixed.h │ │ │ ├── sysutils │ │ │ ├── FrameworkClient.h │ │ │ ├── FrameworkCommand.h │ │ │ ├── FrameworkListener.h │ │ │ ├── NetlinkEvent.h │ │ │ ├── NetlinkListener.h │ │ │ ├── ServiceManager.h │ │ │ ├── SocketClient.h │ │ │ └── SocketListener.h │ │ │ └── zipfile │ │ │ └── zipfile.h │ │ └── media │ │ ├── CleanSpec.mk │ │ └── opensles │ │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile │ │ ├── OpenSL_ES_Specification_1.0.1.pdf │ │ └── README.txt │ │ ├── include │ │ ├── OpenSLES.h │ │ ├── OpenSLES_Platform.h │ │ └── SLES │ │ │ ├── OpenSLES.h │ │ │ ├── OpenSLESUT.h │ │ │ ├── OpenSLES_Android.h │ │ │ ├── OpenSLES_AndroidConfiguration.h │ │ │ └── OpenSLES_Platform.h │ │ ├── libopensles │ │ ├── Android.mk │ │ ├── C3DGroup.c │ │ ├── CAudioPlayer.c │ │ ├── CAudioRecorder.c │ │ ├── CEngine.c │ │ ├── COutputMix.c │ │ ├── I3DCommit.c │ │ ├── I3DDoppler.c │ │ ├── I3DGrouping.c │ │ ├── I3DLocation.c │ │ ├── I3DMacroscopic.c │ │ ├── I3DSource.c │ │ ├── IAndroidConfiguration.c │ │ ├── IAndroidEffect.c │ │ ├── IAndroidEffectCapabilities.c │ │ ├── IAndroidEffectSend.c │ │ ├── IAudioDecoderCapabilities.c │ │ ├── IAudioEncoder.c │ │ ├── IAudioEncoderCapabilities.c │ │ ├── IAudioIODeviceCapabilities.c │ │ ├── IBassBoost.c │ │ ├── IBufferQueue.c │ │ ├── IDeviceVolume.c │ │ ├── IDynamicInterfaceManagement.c │ │ ├── IDynamicSource.c │ │ ├── IEffectSend.c │ │ ├── IEngine.c │ │ ├── IEngineCapabilities.c │ │ ├── IEnvironmentalReverb.c │ │ ├── IEqualizer.c │ │ ├── IID_to_MPH.c │ │ ├── ILEDArray.c │ │ ├── IMIDIMessage.c │ │ ├── IMIDIMuteSolo.c │ │ ├── IMIDITempo.c │ │ ├── IMIDITime.c │ │ ├── IMetadataExtraction.c │ │ ├── IMetadataTraversal.c │ │ ├── IMuteSolo.c │ │ ├── IObject.c │ │ ├── IOutputMix.c │ │ ├── IOutputMixExt.c │ │ ├── IPitch.c │ │ ├── IPlay.c │ │ ├── IPlaybackRate.c │ │ ├── IPrefetchStatus.c │ │ ├── IPresetReverb.c │ │ ├── IRatePitch.c │ │ ├── IRecord.c │ │ ├── ISeek.c │ │ ├── IThreadSync.c │ │ ├── IVibra.c │ │ ├── IVirtualizer.c │ │ ├── IVisualization.c │ │ ├── IVolume.c │ │ ├── MPH.h │ │ ├── MPH_to.c │ │ ├── MPH_to.h │ │ ├── OpenSLESUT.c │ │ ├── OpenSLESUT.h │ │ ├── OpenSLES_IID.c │ │ ├── OutputMixExt.h │ │ ├── SDL.c │ │ ├── SLSndFile.h │ │ ├── SndFile.c │ │ ├── ThreadPool.c │ │ ├── ThreadPool.h │ │ ├── android_AudioPlayer.cpp │ │ ├── android_AudioPlayer.h │ │ ├── android_AudioRecorder.cpp │ │ ├── android_AudioRecorder.h │ │ ├── android_Effect.cpp │ │ ├── android_Effect.h │ │ ├── android_OutputMix.cpp │ │ ├── android_OutputMix.h │ │ ├── android_SfPlayer.cpp │ │ ├── android_SfPlayer.h │ │ ├── android_prompts.h │ │ ├── android_sles_conversions.h │ │ ├── classes.c │ │ ├── devices.c │ │ ├── devices.h │ │ ├── interfaces.c │ │ ├── locks.c │ │ ├── locks.h │ │ ├── platform.h │ │ ├── sles.c │ │ ├── sles_allinclusive.h │ │ ├── slesutResult.c │ │ ├── sllog.c │ │ ├── sllog.h │ │ ├── sync.c │ │ └── trace.c │ │ ├── tests │ │ ├── Android.mk │ │ ├── automated │ │ │ ├── Android.mk │ │ │ └── BufferQueue_test.cpp │ │ ├── examples │ │ │ ├── Android.mk │ │ │ ├── slesTestBassBoostPath.cpp │ │ │ ├── slesTestEffectCapabilities.cpp │ │ │ ├── slesTestEqFdPath.cpp │ │ │ ├── slesTestEqOutputPath.cpp │ │ │ ├── slesTestFeedback.cpp │ │ │ ├── slesTestPlayFdPath.cpp │ │ │ ├── slesTestRecBuffQueue.cpp │ │ │ ├── slesTestSawtoothBufferQueue.cpp │ │ │ ├── slesTestSendToPresetReverb.cpp │ │ │ └── slesTestVirtualizerPath.cpp │ │ ├── listening │ │ │ ├── Android.mk │ │ │ ├── seekTorture.c │ │ │ └── slesTest_playMuteSolo.cpp │ │ ├── mimeUri │ │ │ ├── Android.mk │ │ │ ├── slesTestLoopUri.cpp │ │ │ ├── slesTestPlayStreamType.cpp │ │ │ ├── slesTestPlayUri.cpp │ │ │ ├── slesTestPlayUri2.cpp │ │ │ ├── slesTestSlowDownUri.cpp │ │ │ └── slesTest_playStates.cpp │ │ ├── mimeUri_test.cpp │ │ └── sandbox │ │ │ ├── Android.mk │ │ │ ├── configbq.c │ │ │ ├── dim.c │ │ │ ├── engine.c │ │ │ ├── getch.c │ │ │ ├── intbufq.c │ │ │ ├── monkey.c │ │ │ ├── multiplay.c │ │ │ ├── multithread.c │ │ │ ├── object.c │ │ │ ├── outputmix.c │ │ │ ├── playbq.c │ │ │ ├── reverb.c │ │ │ ├── srcsink.c │ │ │ └── urimime.c │ │ └── tools │ │ ├── hashgen │ │ ├── MPH.h │ │ ├── Makefile │ │ ├── OpenSLES_IID.c │ │ ├── README.txt │ │ ├── frag1.c │ │ ├── frag2.c │ │ ├── frag3.c │ │ ├── hash.sed │ │ ├── interfaces.c │ │ ├── part1.c │ │ ├── part4.c │ │ ├── part6.c │ │ └── part8.c │ │ └── permute │ │ ├── Makefile │ │ ├── permute.c │ │ └── readme.txt ├── jni │ ├── Android.mk │ ├── android_audioopensles_render.cpp │ ├── android_audioopensles_render.h │ ├── android_audiotrack_render.cpp │ ├── android_audiotrack_render.h │ ├── android_liveplayer.cpp │ ├── android_liveplayer.h │ ├── android_liveplayerlistener.cpp │ ├── android_liveplayerlistener.h │ ├── android_nativewindow_render.cpp │ ├── android_nativewindow_render.h │ ├── android_stub_render.cpp │ ├── android_stub_render.h │ ├── android_videosurface_render.cpp │ ├── android_videosurface_render.h │ ├── liveplayer.cpp │ └── readme.txt ├── libcpuinfo │ ├── Android.mk │ ├── cpu-features.c │ └── cpu-features.h ├── libffmpeg │ ├── .config │ ├── Android.mk │ ├── COPYING.GPLv2 │ ├── COPYING.GPLv3 │ ├── COPYING.LGPLv2.1 │ ├── COPYING.LGPLv3 │ ├── CREDITS │ ├── Doxyfile │ ├── INSTALL │ ├── LICENSE │ ├── MAINTAINERS │ ├── Makefile │ ├── README │ ├── RELEASE │ ├── VERSION │ ├── av.mk │ ├── cmdutils.c │ ├── cmdutils.h │ ├── cmdutils_common_opts.h │ ├── common.mak │ ├── config.fate │ ├── config.h │ ├── config.log │ ├── config.mak │ ├── config_armv5.h │ ├── config_armv6_vfp.h │ ├── config_armv7_neon.h │ ├── config_armv7_vfpv3.h │ ├── configure │ ├── doc │ │ ├── APIchanges │ │ ├── RELEASE_NOTES │ │ ├── TODO │ │ ├── avutil.txt │ │ ├── bitstream_filters.texi │ │ ├── build_system.txt │ │ ├── decoders.texi │ │ ├── demuxers.texi │ │ ├── developer.texi │ │ ├── encoders.texi │ │ ├── eval.texi │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── encoding-example.c │ │ │ └── muxing-example.c │ │ ├── faq.texi │ │ ├── fate.txt │ │ ├── ffmpeg.texi │ │ ├── ffplay.texi │ │ ├── ffprobe.texi │ │ ├── ffserver.conf │ │ ├── ffserver.texi │ │ ├── fftools-common-opts.texi │ │ ├── filters.texi │ │ ├── general.texi │ │ ├── git-howto.txt │ │ ├── indevs.texi │ │ ├── issue_tracker.txt │ │ ├── libavfilter.texi │ │ ├── metadata.texi │ │ ├── multithreading.txt │ │ ├── muxers.texi │ │ ├── optimization.txt │ │ ├── outdevs.texi │ │ ├── protocols.texi │ │ ├── rate_distortion.txt │ │ ├── snow.txt │ │ ├── soc.txt │ │ ├── swscale.txt │ │ ├── t2h.init │ │ ├── tablegen.txt │ │ ├── texi2pod.pl │ │ └── viterbi.txt │ ├── ffmpeg.c │ ├── ffplay.c │ ├── ffpresets │ │ ├── libvpx-1080p.ffpreset │ │ ├── libvpx-1080p50_60.ffpreset │ │ ├── libvpx-360p.ffpreset │ │ ├── libvpx-720p.ffpreset │ │ ├── libvpx-720p50_60.ffpreset │ │ ├── libx264-baseline.ffpreset │ │ ├── libx264-ipod320.ffpreset │ │ ├── libx264-ipod640.ffpreset │ │ ├── libx264-lossless_fast.ffpreset │ │ ├── libx264-lossless_max.ffpreset │ │ ├── libx264-lossless_medium.ffpreset │ │ ├── libx264-lossless_slow.ffpreset │ │ ├── libx264-lossless_slower.ffpreset │ │ └── libx264-lossless_ultrafast.ffpreset │ ├── ffprobe.c │ ├── ffserver.c │ ├── ffserver.h │ ├── libavcodec │ │ ├── 4xm.c │ │ ├── 8bps.c │ │ ├── 8svx.c │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── a64colors.h │ │ ├── a64enc.h │ │ ├── a64multienc.c │ │ ├── a64tables.h │ │ ├── aac.h │ │ ├── aac_ac3_parser.c │ │ ├── aac_ac3_parser.h │ │ ├── aac_adtstoasc_bsf.c │ │ ├── aac_parser.c │ │ ├── aac_tablegen.c │ │ ├── aac_tablegen.h │ │ ├── aac_tablegen_decl.h │ │ ├── aacadtsdec.c │ │ ├── aacadtsdec.h │ │ ├── aaccoder.c │ │ ├── aacdec.c │ │ ├── aacdectab.h │ │ ├── aacenc.c │ │ ├── aacenc.h │ │ ├── aacps.c │ │ ├── aacps.h │ │ ├── aacps_tablegen.c │ │ ├── aacps_tablegen.h │ │ ├── aacpsdata.c │ │ ├── aacpsy.c │ │ ├── aacpsy.h │ │ ├── aacsbr.c │ │ ├── aacsbr.h │ │ ├── aacsbrdata.h │ │ ├── aactab.c │ │ ├── aactab.h │ │ ├── aandcttab.c │ │ ├── aandcttab.h │ │ ├── aasc.c │ │ ├── ac3.c │ │ ├── ac3.h │ │ ├── ac3_parser.c │ │ ├── ac3_parser.h │ │ ├── ac3dec.c │ │ ├── ac3dec.h │ │ ├── ac3dec_data.c │ │ ├── ac3dec_data.h │ │ ├── ac3dsp.c │ │ ├── ac3dsp.h │ │ ├── ac3enc.c │ │ ├── ac3enc.h │ │ ├── ac3enc_combined.c │ │ ├── ac3enc_fixed.c │ │ ├── ac3enc_float.c │ │ ├── ac3enc_opts_template.c │ │ ├── ac3enc_template.c │ │ ├── ac3tab.c │ │ ├── ac3tab.h │ │ ├── acelp_filters.c │ │ ├── acelp_filters.h │ │ ├── acelp_pitch_delay.c │ │ ├── acelp_pitch_delay.h │ │ ├── acelp_vectors.c │ │ ├── acelp_vectors.h │ │ ├── adpcm.c │ │ ├── adx.h │ │ ├── adxdec.c │ │ ├── adxenc.c │ │ ├── alac.c │ │ ├── alacenc.c │ │ ├── allcodecs.c │ │ ├── alpha │ │ │ ├── Makefile │ │ │ ├── asm.h │ │ │ ├── dsputil_alpha.c │ │ │ ├── dsputil_alpha.h │ │ │ ├── dsputil_alpha_asm.S │ │ │ ├── motion_est_alpha.c │ │ │ ├── motion_est_mvi_asm.S │ │ │ ├── mpegvideo_alpha.c │ │ │ ├── regdef.h │ │ │ └── simple_idct_alpha.c │ │ ├── alsdec.c │ │ ├── amr.h │ │ ├── amrnbdata.h │ │ ├── amrnbdec.c │ │ ├── amrwbdata.h │ │ ├── amrwbdec.c │ │ ├── anm.c │ │ ├── ansi.c │ │ ├── apedec.c │ │ ├── arm │ │ │ ├── Makefile │ │ │ ├── aac.h │ │ │ ├── ac3dsp_arm.S │ │ │ ├── ac3dsp_armv6.S │ │ │ ├── ac3dsp_init_arm.c │ │ │ ├── ac3dsp_neon.S │ │ │ ├── asm-offsets.h │ │ │ ├── asm.S │ │ │ ├── dcadsp_init_arm.c │ │ │ ├── dcadsp_neon.S │ │ │ ├── dsputil_arm.S │ │ │ ├── dsputil_arm.h │ │ │ ├── dsputil_armv6.S │ │ │ ├── dsputil_init_arm.c │ │ │ ├── dsputil_init_armv5te.c │ │ │ ├── dsputil_init_armv6.c │ │ │ ├── dsputil_init_neon.c │ │ │ ├── dsputil_init_vfp.c │ │ │ ├── dsputil_iwmmxt.c │ │ │ ├── dsputil_iwmmxt_rnd_template.c │ │ │ ├── dsputil_neon.S │ │ │ ├── dsputil_vfp.S │ │ │ ├── fft_fixed_init_arm.c │ │ │ ├── fft_fixed_neon.S │ │ │ ├── fft_init_arm.c │ │ │ ├── fft_neon.S │ │ │ ├── fmtconvert_init_arm.c │ │ │ ├── fmtconvert_neon.S │ │ │ ├── fmtconvert_vfp.S │ │ │ ├── h264dsp_init_arm.c │ │ │ ├── h264dsp_neon.S │ │ │ ├── h264idct_neon.S │ │ │ ├── h264pred_init_arm.c │ │ │ ├── h264pred_neon.S │ │ │ ├── int_neon.S │ │ │ ├── jrevdct_arm.S │ │ │ ├── mathops.h │ │ │ ├── mdct_fixed_neon.S │ │ │ ├── mdct_neon.S │ │ │ ├── mpegaudiodsp_fixed_armv6.S │ │ │ ├── mpegaudiodsp_init_arm.c │ │ │ ├── mpegvideo_arm.c │ │ │ ├── mpegvideo_arm.h │ │ │ ├── mpegvideo_armv5te.c │ │ │ ├── mpegvideo_armv5te_s.S │ │ │ ├── mpegvideo_iwmmxt.c │ │ │ ├── mpegvideo_neon.S │ │ │ ├── rdft_neon.S │ │ │ ├── simple_idct_arm.S │ │ │ ├── simple_idct_armv5te.S │ │ │ ├── simple_idct_armv6.S │ │ │ ├── simple_idct_neon.S │ │ │ ├── synth_filter_neon.S │ │ │ ├── vp3dsp_neon.S │ │ │ ├── vp56_arith.h │ │ │ ├── vp56dsp_init_arm.c │ │ │ ├── vp56dsp_neon.S │ │ │ ├── vp8.h │ │ │ ├── vp8_armv6.S │ │ │ ├── vp8dsp_init_arm.c │ │ │ └── vp8dsp_neon.S │ │ ├── ass.c │ │ ├── ass.h │ │ ├── ass_split.c │ │ ├── ass_split.h │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── asv1.c │ │ ├── atrac.c │ │ ├── atrac.h │ │ ├── atrac1.c │ │ ├── atrac1data.h │ │ ├── atrac3.c │ │ ├── atrac3data.h │ │ ├── audioconvert.c │ │ ├── audioconvert.h │ │ ├── aura.c │ │ ├── avcodec.h │ │ ├── avfft.c │ │ ├── avfft.h │ │ ├── avpacket.c │ │ ├── avr32 │ │ │ └── mathops.h │ │ ├── avs.c │ │ ├── bethsoftvideo.c │ │ ├── bethsoftvideo.h │ │ ├── bfi.c │ │ ├── bfin │ │ │ ├── Makefile │ │ │ ├── config_bfin.h │ │ │ ├── dsputil_bfin.c │ │ │ ├── dsputil_bfin.h │ │ │ ├── fdct_bfin.S │ │ │ ├── idct_bfin.S │ │ │ ├── mathops.h │ │ │ ├── mpegvideo_bfin.c │ │ │ ├── pixels_bfin.S │ │ │ ├── vp3_bfin.c │ │ │ └── vp3_idct_bfin.S │ │ ├── bgmc.c │ │ ├── bgmc.h │ │ ├── bink.c │ │ ├── binkaudio.c │ │ ├── binkdata.h │ │ ├── binkidct.c │ │ ├── bitstream.c │ │ ├── bitstream_filter.c │ │ ├── bmp.c │ │ ├── bmp.h │ │ ├── bmpenc.c │ │ ├── bytestream.h │ │ ├── c93.c │ │ ├── cabac.c │ │ ├── cabac.h │ │ ├── cavs.c │ │ ├── cavs.h │ │ ├── cavs_parser.c │ │ ├── cavsdata.h │ │ ├── cavsdec.c │ │ ├── cavsdsp.c │ │ ├── cavsdsp.h │ │ ├── cbrt_tablegen.c │ │ ├── cbrt_tablegen.h │ │ ├── cdgraphics.c │ │ ├── celp_filters.c │ │ ├── celp_filters.h │ │ ├── celp_math.c │ │ ├── celp_math.h │ │ ├── cga_data.c │ │ ├── cga_data.h │ │ ├── chomp_bsf.c │ │ ├── cinepak.c │ │ ├── cljr.c │ │ ├── cook.c │ │ ├── cookdata.h │ │ ├── cos_tablegen.c │ │ ├── crystalhd.c │ │ ├── cscd.c │ │ ├── cyuv.c │ │ ├── dca.c │ │ ├── dca.h │ │ ├── dca_parser.c │ │ ├── dcadata.h │ │ ├── dcadsp.c │ │ ├── dcadsp.h │ │ ├── dcaenc.c │ │ ├── dcaenc.h │ │ ├── dcahuff.h │ │ ├── dct-test.c │ │ ├── dct.c │ │ ├── dct.h │ │ ├── dct32.c │ │ ├── dct32.h │ │ ├── dct32_fixed.c │ │ ├── dct32_float.c │ │ ├── dctref.c │ │ ├── dctref.h │ │ ├── dfa.c │ │ ├── dirac.c │ │ ├── dirac.h │ │ ├── dirac_parser.c │ │ ├── dnxhd_parser.c │ │ ├── dnxhddata.c │ │ ├── dnxhddata.h │ │ ├── dnxhddec.c │ │ ├── dnxhdenc.c │ │ ├── dnxhdenc.h │ │ ├── dpcm.c │ │ ├── dpx.c │ │ ├── dpxenc.c │ │ ├── dsicinav.c │ │ ├── dsputil.c │ │ ├── dsputil.h │ │ ├── dsputil_template.c │ │ ├── dump_extradata_bsf.c │ │ ├── dv.c │ │ ├── dv_tablegen.c │ │ ├── dv_tablegen.h │ │ ├── dv_vlc_data.h │ │ ├── dvbsub.c │ │ ├── dvbsub_parser.c │ │ ├── dvbsubdec.c │ │ ├── dvdata.c │ │ ├── dvdata.h │ │ ├── dvdsub_parser.c │ │ ├── dvdsubdec.c │ │ ├── dvdsubenc.c │ │ ├── dwt.c │ │ ├── dwt.h │ │ ├── dxa.c │ │ ├── dxva2.c │ │ ├── dxva2.h │ │ ├── dxva2_h264.c │ │ ├── dxva2_internal.h │ │ ├── dxva2_mpeg2.c │ │ ├── dxva2_vc1.c │ │ ├── eac3dec.c │ │ ├── eac3dec_data.c │ │ ├── eac3dec_data.h │ │ ├── eac3enc.c │ │ ├── eac3enc.h │ │ ├── eacmv.c │ │ ├── eaidct.c │ │ ├── eamad.c │ │ ├── eatgq.c │ │ ├── eatgv.c │ │ ├── eatqi.c │ │ ├── elbg.c │ │ ├── elbg.h │ │ ├── error_resilience.c │ │ ├── escape124.c │ │ ├── faandct.c │ │ ├── faandct.h │ │ ├── faanidct.c │ │ ├── faanidct.h │ │ ├── faxcompr.c │ │ ├── faxcompr.h │ │ ├── fft-fixed-test.c │ │ ├── fft-internal.h │ │ ├── fft-test.c │ │ ├── fft.c │ │ ├── fft.h │ │ ├── fft_fixed.c │ │ ├── fft_float.c │ │ ├── ffv1.c │ │ ├── flac.c │ │ ├── flac.h │ │ ├── flac_parser.c │ │ ├── flacdata.c │ │ ├── flacdata.h │ │ ├── flacdec.c │ │ ├── flacenc.c │ │ ├── flashsv.c │ │ ├── flashsv2enc.c │ │ ├── flashsvenc.c │ │ ├── flicvideo.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── fmtconvert.c │ │ ├── fmtconvert.h │ │ ├── fraps.c │ │ ├── frwu.c │ │ ├── g722.c │ │ ├── g726.c │ │ ├── g729data.h │ │ ├── g729dec.c │ │ ├── get_bits.h │ │ ├── gif.c │ │ ├── gifdec.c │ │ ├── golomb.c │ │ ├── golomb.h │ │ ├── gsmdec.c │ │ ├── gsmdec_data.c │ │ ├── gsmdec_data.h │ │ ├── gsmdec_template.c │ │ ├── h261.c │ │ ├── h261.h │ │ ├── h261_parser.c │ │ ├── h261data.h │ │ ├── h261dec.c │ │ ├── h261enc.c │ │ ├── h263.c │ │ ├── h263.h │ │ ├── h263_parser.c │ │ ├── h263_parser.h │ │ ├── h263data.h │ │ ├── h263dec.c │ │ ├── h264.c │ │ ├── h264.h │ │ ├── h264_cabac.c │ │ ├── h264_cavlc.c │ │ ├── h264_direct.c │ │ ├── h264_loopfilter.c │ │ ├── h264_mp4toannexb_bsf.c │ │ ├── h264_mvpred.h │ │ ├── h264_parser.c │ │ ├── h264_ps.c │ │ ├── h264_refs.c │ │ ├── h264_sei.c │ │ ├── h264data.h │ │ ├── h264dsp.c │ │ ├── h264dsp.h │ │ ├── h264dsp_template.c │ │ ├── h264idct.c │ │ ├── h264idct_template.c │ │ ├── h264pred.c │ │ ├── h264pred.h │ │ ├── h264pred_template.c │ │ ├── high_bit_depth.h │ │ ├── huffman.c │ │ ├── huffman.h │ │ ├── huffyuv.c │ │ ├── idcinvideo.c │ │ ├── iff.c │ │ ├── iirfilter.c │ │ ├── iirfilter.h │ │ ├── imc.c │ │ ├── imcdata.h │ │ ├── imgconvert.c │ │ ├── imgconvert.h │ │ ├── imx_dump_header_bsf.c │ │ ├── indeo2.c │ │ ├── indeo2data.h │ │ ├── indeo3.c │ │ ├── indeo3data.h │ │ ├── indeo5.c │ │ ├── indeo5data.h │ │ ├── intelh263dec.c │ │ ├── internal.h │ │ ├── interplayvideo.c │ │ ├── intrax8.c │ │ ├── intrax8.h │ │ ├── intrax8dsp.c │ │ ├── intrax8huf.h │ │ ├── inverse.c │ │ ├── ituh263dec.c │ │ ├── ituh263enc.c │ │ ├── ivi_common.c │ │ ├── ivi_common.h │ │ ├── ivi_dsp.c │ │ ├── ivi_dsp.h │ │ ├── j2k.c │ │ ├── j2k.h │ │ ├── j2k_dwt.c │ │ ├── j2k_dwt.h │ │ ├── j2kdec.c │ │ ├── j2kenc.c │ │ ├── jfdctfst.c │ │ ├── jfdctint.c │ │ ├── jpegls.c │ │ ├── jpegls.h │ │ ├── jpeglsdec.c │ │ ├── jpeglsdec.h │ │ ├── jpeglsenc.c │ │ ├── jrevdct.c │ │ ├── jvdec.c │ │ ├── kbdwin.c │ │ ├── kbdwin.h │ │ ├── kgv1dec.c │ │ ├── kmvc.c │ │ ├── lagarith.c │ │ ├── lagarithrac.c │ │ ├── lagarithrac.h │ │ ├── latm_parser.c │ │ ├── lcl.h │ │ ├── lcldec.c │ │ ├── lclenc.c │ │ ├── libavcodec-uninstalled.pc │ │ ├── libavcodec.pc │ │ ├── libavcodec.v │ │ ├── libcelt_dec.c │ │ ├── libdirac.h │ │ ├── libdirac_libschro.c │ │ ├── libdirac_libschro.h │ │ ├── libdiracdec.c │ │ ├── libdiracenc.c │ │ ├── libfaac.c │ │ ├── libgsm.c │ │ ├── libmp3lame.c │ │ ├── libopencore-amr.c │ │ ├── libopenjpeg.c │ │ ├── libschroedinger.c │ │ ├── libschroedinger.h │ │ ├── libschroedingerdec.c │ │ ├── libschroedingerenc.c │ │ ├── libspeexdec.c │ │ ├── libtheoraenc.c │ │ ├── libvo-aacenc.c │ │ ├── libvo-amrwbenc.c │ │ ├── libvorbis.c │ │ ├── libvpxdec.c │ │ ├── libvpxenc.c │ │ ├── libx264.c │ │ ├── libxavs.c │ │ ├── libxvid_internal.h │ │ ├── libxvid_rc.c │ │ ├── libxvidff.c │ │ ├── ljpegenc.c │ │ ├── loco.c │ │ ├── lpc.c │ │ ├── lpc.h │ │ ├── lsp.c │ │ ├── lsp.h │ │ ├── lzw.c │ │ ├── lzw.h │ │ ├── lzwenc.c │ │ ├── mace.c │ │ ├── mathops.h │ │ ├── mdct.c │ │ ├── mdct_fixed.c │ │ ├── mdct_float.c │ │ ├── mdec.c │ │ ├── mimic.c │ │ ├── mips │ │ │ ├── Makefile │ │ │ └── mathops.h │ │ ├── mjpeg.c │ │ ├── mjpeg.h │ │ ├── mjpeg2jpeg_bsf.c │ │ ├── mjpeg_parser.c │ │ ├── mjpega_dump_header_bsf.c │ │ ├── mjpegbdec.c │ │ ├── mjpegdec.c │ │ ├── mjpegdec.h │ │ ├── mjpegenc.c │ │ ├── mjpegenc.h │ │ ├── mlib │ │ │ └── dsputil_mlib.c │ │ ├── mlp.c │ │ ├── mlp.h │ │ ├── mlp_parser.c │ │ ├── mlp_parser.h │ │ ├── mlpdec.c │ │ ├── mlpdsp.c │ │ ├── mmvideo.c │ │ ├── motion-test.c │ │ ├── motion_est.c │ │ ├── motion_est_template.c │ │ ├── motionpixels.c │ │ ├── motionpixels_tablegen.c │ │ ├── motionpixels_tablegen.h │ │ ├── movsub_bsf.c │ │ ├── mp3_header_compress_bsf.c │ │ ├── mp3_header_decompress_bsf.c │ │ ├── mpc.c │ │ ├── mpc.h │ │ ├── mpc7.c │ │ ├── mpc7data.h │ │ ├── mpc8.c │ │ ├── mpc8data.h │ │ ├── mpc8huff.h │ │ ├── mpcdata.h │ │ ├── mpeg12.c │ │ ├── mpeg12.h │ │ ├── mpeg12data.c │ │ ├── mpeg12data.h │ │ ├── mpeg12decdata.h │ │ ├── mpeg12enc.c │ │ ├── mpeg4audio.c │ │ ├── mpeg4audio.h │ │ ├── mpeg4data.h │ │ ├── mpeg4video.c │ │ ├── mpeg4video.h │ │ ├── mpeg4video_parser.c │ │ ├── mpeg4video_parser.h │ │ ├── mpeg4videodec.c │ │ ├── mpeg4videoenc.c │ │ ├── mpegaudio.c │ │ ├── mpegaudio.h │ │ ├── mpegaudio_parser.c │ │ ├── mpegaudio_tablegen.c │ │ ├── mpegaudio_tablegen.h │ │ ├── mpegaudiodata.c │ │ ├── mpegaudiodata.h │ │ ├── mpegaudiodec.c │ │ ├── mpegaudiodec_float.c │ │ ├── mpegaudiodecheader.c │ │ ├── mpegaudiodecheader.h │ │ ├── mpegaudiodectab.h │ │ ├── mpegaudiodsp.c │ │ ├── mpegaudiodsp.h │ │ ├── mpegaudiodsp_fixed.c │ │ ├── mpegaudiodsp_float.c │ │ ├── mpegaudiodsp_template.c │ │ ├── mpegaudioenc.c │ │ ├── mpegaudiotab.h │ │ ├── mpegvideo.c │ │ ├── mpegvideo.h │ │ ├── mpegvideo_common.h │ │ ├── mpegvideo_enc.c │ │ ├── mpegvideo_parser.c │ │ ├── mpegvideo_xvmc.c │ │ ├── mqc.c │ │ ├── mqc.h │ │ ├── mqcdec.c │ │ ├── mqcenc.c │ │ ├── msgsmdec.c │ │ ├── msgsmdec.h │ │ ├── msmpeg4.c │ │ ├── msmpeg4.h │ │ ├── msmpeg4data.c │ │ ├── msmpeg4data.h │ │ ├── msrle.c │ │ ├── msrledec.c │ │ ├── msrledec.h │ │ ├── msvideo1.c │ │ ├── msvideo1enc.c │ │ ├── mxpegdec.c │ │ ├── nellymoser.c │ │ ├── nellymoser.h │ │ ├── nellymoserdec.c │ │ ├── nellymoserenc.c │ │ ├── noise_bsf.c │ │ ├── nuv.c │ │ ├── opt.c │ │ ├── opt.h │ │ ├── options.c │ │ ├── pamenc.c │ │ ├── parser.c │ │ ├── parser.h │ │ ├── pcm-mpeg.c │ │ ├── pcm.c │ │ ├── pcm_tablegen.c │ │ ├── pcm_tablegen.h │ │ ├── pcx.c │ │ ├── pcxenc.c │ │ ├── pgssubdec.c │ │ ├── pictordec.c │ │ ├── png.c │ │ ├── png.h │ │ ├── pngdec.c │ │ ├── pngenc.c │ │ ├── pnm.c │ │ ├── pnm.h │ │ ├── pnm_parser.c │ │ ├── pnmdec.c │ │ ├── pnmenc.c │ │ ├── ppc │ │ │ ├── Makefile │ │ │ ├── asm.S │ │ │ ├── dsputil_altivec.c │ │ │ ├── dsputil_altivec.h │ │ │ ├── dsputil_ppc.c │ │ │ ├── fdct_altivec.c │ │ │ ├── fft_altivec.c │ │ │ ├── fft_altivec_s.S │ │ │ ├── float_altivec.c │ │ │ ├── fmtconvert_altivec.c │ │ │ ├── gmc_altivec.c │ │ │ ├── h264_altivec.c │ │ │ ├── h264_template_altivec.c │ │ │ ├── idct_altivec.c │ │ │ ├── int_altivec.c │ │ │ ├── mathops.h │ │ │ ├── mpegaudiodec_altivec.c │ │ │ ├── mpegvideo_altivec.c │ │ │ ├── regs.h │ │ │ ├── types_altivec.h │ │ │ ├── util_altivec.h │ │ │ ├── vc1dsp_altivec.c │ │ │ ├── vp3dsp_altivec.c │ │ │ └── vp8dsp_altivec.c │ │ ├── ps2 │ │ │ ├── dsputil_mmi.c │ │ │ ├── idct_mmi.c │ │ │ ├── mmi.h │ │ │ └── mpegvideo_mmi.c │ │ ├── psymodel.c │ │ ├── psymodel.h │ │ ├── pthread.c │ │ ├── ptx.c │ │ ├── put_bits.h │ │ ├── qcelpdata.h │ │ ├── qcelpdec.c │ │ ├── qdm2.c │ │ ├── qdm2_tablegen.c │ │ ├── qdm2_tablegen.h │ │ ├── qdm2data.h │ │ ├── qdrw.c │ │ ├── qpeg.c │ │ ├── qtrle.c │ │ ├── qtrleenc.c │ │ ├── r210dec.c │ │ ├── ra144.c │ │ ├── ra144.h │ │ ├── ra144dec.c │ │ ├── ra144enc.c │ │ ├── ra288.c │ │ ├── ra288.h │ │ ├── rangecoder.c │ │ ├── rangecoder.h │ │ ├── ratecontrol.c │ │ ├── ratecontrol.h │ │ ├── raw.c │ │ ├── raw.h │ │ ├── rawdec.c │ │ ├── rawenc.c │ │ ├── rdft.c │ │ ├── rdft.h │ │ ├── rectangle.h │ │ ├── remove_extradata_bsf.c │ │ ├── resample.c │ │ ├── resample2.c │ │ ├── rl.h │ │ ├── rl2.c │ │ ├── rle.c │ │ ├── rle.h │ │ ├── roqaudioenc.c │ │ ├── roqvideo.c │ │ ├── roqvideo.h │ │ ├── roqvideodec.c │ │ ├── roqvideoenc.c │ │ ├── rpza.c │ │ ├── rtjpeg.c │ │ ├── rtjpeg.h │ │ ├── rv10.c │ │ ├── rv10enc.c │ │ ├── rv20enc.c │ │ ├── rv30.c │ │ ├── rv30data.h │ │ ├── rv30dsp.c │ │ ├── rv34.c │ │ ├── rv34.h │ │ ├── rv34data.h │ │ ├── rv34vlc.h │ │ ├── rv40.c │ │ ├── rv40data.h │ │ ├── rv40dsp.c │ │ ├── rv40vlc2.h │ │ ├── s302m.c │ │ ├── s3tc.c │ │ ├── s3tc.h │ │ ├── sbr.h │ │ ├── sgi.h │ │ ├── sgidec.c │ │ ├── sgienc.c │ │ ├── sh4 │ │ │ ├── Makefile │ │ │ ├── dsputil_align.c │ │ │ ├── dsputil_sh4.c │ │ │ ├── dsputil_sh4.h │ │ │ ├── idct_sh4.c │ │ │ ├── qpel.c │ │ │ └── sh4.h │ │ ├── shorten.c │ │ ├── simple_idct.c │ │ ├── simple_idct.h │ │ ├── sinewin.c │ │ ├── sinewin.h │ │ ├── sinewin_tablegen.c │ │ ├── sinewin_tablegen.h │ │ ├── sipr.c │ │ ├── sipr.h │ │ ├── sipr16k.c │ │ ├── sipr16kdata.h │ │ ├── siprdata.h │ │ ├── smacker.c │ │ ├── smc.c │ │ ├── snow.c │ │ ├── snow.h │ │ ├── sonic.c │ │ ├── sp5x.h │ │ ├── sp5xdec.c │ │ ├── sparc │ │ │ ├── Makefile │ │ │ ├── dsputil_vis.c │ │ │ ├── dsputil_vis.h │ │ │ ├── simple_idct_vis.c │ │ │ └── vis.h │ │ ├── srtdec.c │ │ ├── srtenc.c │ │ ├── sunrast.c │ │ ├── svq1.c │ │ ├── svq1.h │ │ ├── svq1_cb.h │ │ ├── svq1_vlc.h │ │ ├── svq1dec.c │ │ ├── svq1enc.c │ │ ├── svq1enc_cb.h │ │ ├── svq3.c │ │ ├── synth_filter.c │ │ ├── synth_filter.h │ │ ├── tableprint.h │ │ ├── targa.c │ │ ├── targa.h │ │ ├── targaenc.c │ │ ├── thread.h │ │ ├── tiertexseqv.c │ │ ├── tiff.c │ │ ├── tiff.h │ │ ├── tiffenc.c │ │ ├── tmv.c │ │ ├── truemotion1.c │ │ ├── truemotion1data.h │ │ ├── truemotion2.c │ │ ├── truespeech.c │ │ ├── truespeech_data.h │ │ ├── tscc.c │ │ ├── tta.c │ │ ├── twinvq.c │ │ ├── twinvq_data.h │ │ ├── txd.c │ │ ├── ulti.c │ │ ├── ulti_cb.h │ │ ├── unary.h │ │ ├── utils.c │ │ ├── v210dec.c │ │ ├── v210enc.c │ │ ├── v210x.c │ │ ├── vaapi.c │ │ ├── vaapi.h │ │ ├── vaapi_h264.c │ │ ├── vaapi_internal.h │ │ ├── vaapi_mpeg2.c │ │ ├── vaapi_mpeg4.c │ │ ├── vaapi_vc1.c │ │ ├── vb.c │ │ ├── vc1.c │ │ ├── vc1.h │ │ ├── vc1_parser.c │ │ ├── vc1acdata.h │ │ ├── vc1data.c │ │ ├── vc1data.h │ │ ├── vc1dec.c │ │ ├── vc1dsp.c │ │ ├── vc1dsp.h │ │ ├── vcr1.c │ │ ├── vdpau.c │ │ ├── vdpau.h │ │ ├── vdpau_internal.h │ │ ├── version.h │ │ ├── vmdav.c │ │ ├── vmnc.c │ │ ├── vorbis.c │ │ ├── vorbis.h │ │ ├── vorbis_data.c │ │ ├── vorbis_enc_data.h │ │ ├── vorbisdec.c │ │ ├── vorbisenc.c │ │ ├── vp3.c │ │ ├── vp3_parser.c │ │ ├── vp3data.h │ │ ├── vp3dsp.c │ │ ├── vp5.c │ │ ├── vp56.c │ │ ├── vp56.h │ │ ├── vp56data.c │ │ ├── vp56data.h │ │ ├── vp56dsp.c │ │ ├── vp56dsp.h │ │ ├── vp56rac.c │ │ ├── vp5data.h │ │ ├── vp6.c │ │ ├── vp6data.h │ │ ├── vp6dsp.c │ │ ├── vp8.c │ │ ├── vp8.h │ │ ├── vp8_parser.c │ │ ├── vp8data.h │ │ ├── vp8dsp.c │ │ ├── vp8dsp.h │ │ ├── vqavideo.c │ │ ├── w32thread.c │ │ ├── wavpack.c │ │ ├── wma.c │ │ ├── wma.h │ │ ├── wmadata.h │ │ ├── wmadec.c │ │ ├── wmaenc.c │ │ ├── wmaprodata.h │ │ ├── wmaprodec.c │ │ ├── wmavoice.c │ │ ├── wmavoice_data.h │ │ ├── wmv2.c │ │ ├── wmv2.h │ │ ├── wmv2dec.c │ │ ├── wmv2enc.c │ │ ├── wnv1.c │ │ ├── ws-snd1.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── ac3dsp.asm │ │ │ ├── ac3dsp_mmx.c │ │ │ ├── cabac.h │ │ │ ├── cavsdsp_mmx.c │ │ │ ├── dct32_sse.asm │ │ │ ├── deinterlace.asm │ │ │ ├── dnxhd_mmx.c │ │ │ ├── dsputil_mmx.c │ │ │ ├── dsputil_mmx.h │ │ │ ├── dsputil_mmx_avg_template.c │ │ │ ├── dsputil_mmx_qns_template.c │ │ │ ├── dsputil_mmx_rnd_template.c │ │ │ ├── dsputil_yasm.asm │ │ │ ├── dsputilenc_mmx.c │ │ │ ├── dsputilenc_yasm.asm │ │ │ ├── fdct_mmx.c │ │ │ ├── fft.c │ │ │ ├── fft.h │ │ │ ├── fft_3dn.c │ │ │ ├── fft_3dn2.c │ │ │ ├── fft_mmx.asm │ │ │ ├── fft_sse.c │ │ │ ├── fmtconvert.asm │ │ │ ├── fmtconvert_mmx.c │ │ │ ├── h264_chromamc.asm │ │ │ ├── h264_chromamc_10bit.asm │ │ │ ├── h264_deblock.asm │ │ │ ├── h264_deblock_10bit.asm │ │ │ ├── h264_i386.h │ │ │ ├── h264_idct.asm │ │ │ ├── h264_idct_10bit.asm │ │ │ ├── h264_intrapred.asm │ │ │ ├── h264_intrapred_10bit.asm │ │ │ ├── h264_intrapred_init.c │ │ │ ├── h264_qpel_mmx.c │ │ │ ├── h264_weight.asm │ │ │ ├── h264dsp_mmx.c │ │ │ ├── idct_mmx.c │ │ │ ├── idct_mmx_xvid.c │ │ │ ├── idct_sse2_xvid.c │ │ │ ├── idct_xvid.h │ │ │ ├── lpc_mmx.c │ │ │ ├── mathops.h │ │ │ ├── mlpdsp.c │ │ │ ├── motion_est_mmx.c │ │ │ ├── mpegaudiodec_mmx.c │ │ │ ├── mpegvideo_mmx.c │ │ │ ├── mpegvideo_mmx_template.c │ │ │ ├── png_mmx.c │ │ │ ├── simple_idct_mmx.c │ │ │ ├── snowdsp_mmx.c │ │ │ ├── vc1dsp_mmx.c │ │ │ ├── vc1dsp_yasm.asm │ │ │ ├── vp3dsp.asm │ │ │ ├── vp56_arith.h │ │ │ ├── vp56dsp.asm │ │ │ ├── vp56dsp_init.c │ │ │ ├── vp8dsp-init.c │ │ │ ├── vp8dsp.asm │ │ │ ├── x86inc.asm │ │ │ └── x86util.asm │ │ ├── xan.c │ │ ├── xiph.c │ │ ├── xiph.h │ │ ├── xl.c │ │ ├── xsubdec.c │ │ ├── xsubenc.c │ │ ├── xvmc.h │ │ ├── xvmc_internal.h │ │ ├── xxan.c │ │ ├── yop.c │ │ ├── zmbv.c │ │ └── zmbvenc.c │ ├── libavdevice │ │ ├── Makefile │ │ ├── alldevices.c │ │ ├── alsa-audio-common.c │ │ ├── alsa-audio-dec.c │ │ ├── alsa-audio-enc.c │ │ ├── alsa-audio.h │ │ ├── avdevice.c │ │ ├── avdevice.h │ │ ├── bktr.c │ │ ├── dshow.c │ │ ├── dshow.h │ │ ├── dshow_common.c │ │ ├── dshow_enummediatypes.c │ │ ├── dshow_enumpins.c │ │ ├── dshow_filter.c │ │ ├── dshow_pin.c │ │ ├── dv1394.c │ │ ├── dv1394.h │ │ ├── fbdev.c │ │ ├── jack_audio.c │ │ ├── libavdevice.v │ │ ├── libdc1394.c │ │ ├── oss_audio.c │ │ ├── sdl.c │ │ ├── sndio_common.c │ │ ├── sndio_common.h │ │ ├── sndio_dec.c │ │ ├── sndio_enc.c │ │ ├── v4l.c │ │ ├── v4l2.c │ │ ├── vfwcap.c │ │ └── x11grab.c │ ├── libavfilter │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── af_anull.c │ │ ├── allfilters.c │ │ ├── asink_anullsink.c │ │ ├── asrc_anullsrc.c │ │ ├── avcodec.c │ │ ├── avcodec.h │ │ ├── avfilter.c │ │ ├── avfilter.h │ │ ├── avfiltergraph.c │ │ ├── avfiltergraph.h │ │ ├── defaults.c │ │ ├── drawutils.c │ │ ├── drawutils.h │ │ ├── formats.c │ │ ├── gradfun.h │ │ ├── graphparser.c │ │ ├── internal.h │ │ ├── libavfilter-uninstalled.pc │ │ ├── libavfilter.pc │ │ ├── libavfilter.v │ │ ├── libmpcodecs │ │ │ ├── cpudetect.h │ │ │ ├── help_mp.h │ │ │ ├── img_format.c │ │ │ ├── img_format.h │ │ │ ├── libvo │ │ │ │ ├── fastmemcpy.h │ │ │ │ └── video_out.h │ │ │ ├── mp_image.c │ │ │ ├── mp_image.h │ │ │ ├── mp_msg.h │ │ │ ├── mpbswap.h │ │ │ ├── mpc_info.h │ │ │ ├── pullup.c │ │ │ ├── pullup.h │ │ │ ├── vd_ffmpeg.h │ │ │ ├── vf.h │ │ │ ├── vf_2xsai.c │ │ │ ├── vf_blackframe.c │ │ │ ├── vf_boxblur.c │ │ │ ├── vf_cropdetect.c │ │ │ ├── vf_decimate.c │ │ │ ├── vf_delogo.c │ │ │ ├── vf_denoise3d.c │ │ │ ├── vf_detc.c │ │ │ ├── vf_dint.c │ │ │ ├── vf_divtc.c │ │ │ ├── vf_down3dright.c │ │ │ ├── vf_dsize.c │ │ │ ├── vf_eq.c │ │ │ ├── vf_eq2.c │ │ │ ├── vf_field.c │ │ │ ├── vf_fil.c │ │ │ ├── vf_filmdint.c │ │ │ ├── vf_fixpts.c │ │ │ ├── vf_framestep.c │ │ │ ├── vf_fspp.c │ │ │ ├── vf_geq.c │ │ │ ├── vf_gradfun.c │ │ │ ├── vf_harddup.c │ │ │ ├── vf_hqdn3d.c │ │ │ ├── vf_hue.c │ │ │ ├── vf_il.c │ │ │ ├── vf_ilpack.c │ │ │ ├── vf_ivtc.c │ │ │ ├── vf_kerndeint.c │ │ │ ├── vf_mcdeint.c │ │ │ ├── vf_mirror.c │ │ │ ├── vf_noise.c │ │ │ ├── vf_ow.c │ │ │ ├── vf_palette.c │ │ │ ├── vf_perspective.c │ │ │ ├── vf_phase.c │ │ │ ├── vf_pp7.c │ │ │ ├── vf_pullup.c │ │ │ ├── vf_qp.c │ │ │ ├── vf_rectangle.c │ │ │ ├── vf_remove_logo.c │ │ │ ├── vf_rgbtest.c │ │ │ ├── vf_rotate.c │ │ │ ├── vf_sab.c │ │ │ ├── vf_scale.h │ │ │ ├── vf_screenshot.c │ │ │ ├── vf_smartblur.c │ │ │ ├── vf_softpulldown.c │ │ │ ├── vf_softskip.c │ │ │ ├── vf_spp.c │ │ │ ├── vf_swapuv.c │ │ │ ├── vf_telecine.c │ │ │ ├── vf_test.c │ │ │ ├── vf_tile.c │ │ │ ├── vf_tinterlace.c │ │ │ ├── vf_unsharp.c │ │ │ ├── vf_uspp.c │ │ │ ├── vf_yuvcsp.c │ │ │ ├── vf_yvu9.c │ │ │ └── vfcap.h │ │ ├── vf_aspect.c │ │ ├── vf_blackframe.c │ │ ├── vf_copy.c │ │ ├── vf_crop.c │ │ ├── vf_cropdetect.c │ │ ├── vf_drawbox.c │ │ ├── vf_drawtext.c │ │ ├── vf_fade.c │ │ ├── vf_fieldorder.c │ │ ├── vf_fifo.c │ │ ├── vf_format.c │ │ ├── vf_frei0r.c │ │ ├── vf_gradfun.c │ │ ├── vf_hflip.c │ │ ├── vf_hqdn3d.c │ │ ├── vf_libopencv.c │ │ ├── vf_lut.c │ │ ├── vf_mp.c │ │ ├── vf_null.c │ │ ├── vf_overlay.c │ │ ├── vf_pad.c │ │ ├── vf_pixdesctest.c │ │ ├── vf_scale.c │ │ ├── vf_select.c │ │ ├── vf_setpts.c │ │ ├── vf_settb.c │ │ ├── vf_showinfo.c │ │ ├── vf_slicify.c │ │ ├── vf_split.c │ │ ├── vf_transpose.c │ │ ├── vf_unsharp.c │ │ ├── vf_vflip.c │ │ ├── vf_yadif.c │ │ ├── vsink_buffer.c │ │ ├── vsink_buffer.h │ │ ├── vsink_nullsink.c │ │ ├── vsrc_buffer.c │ │ ├── vsrc_buffer.h │ │ ├── vsrc_color.c │ │ ├── vsrc_movie.c │ │ ├── vsrc_nullsrc.c │ │ ├── x86 │ │ │ ├── Makefile │ │ │ ├── gradfun.c │ │ │ ├── yadif.c │ │ │ └── yadif_template.c │ │ └── yadif.h │ ├── libavformat │ │ ├── 4xm.c │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── a64.c │ │ ├── aacdec.c │ │ ├── ac3dec.c │ │ ├── adts.h │ │ ├── adtsenc.c │ │ ├── aea.c │ │ ├── aiff.h │ │ ├── aiffdec.c │ │ ├── aiffenc.c │ │ ├── allformats.c │ │ ├── amr.c │ │ ├── anm.c │ │ ├── apc.c │ │ ├── ape.c │ │ ├── apetag.c │ │ ├── apetag.h │ │ ├── applehttp.c │ │ ├── applehttpproto.c │ │ ├── asf.c │ │ ├── asf.h │ │ ├── asfcrypt.c │ │ ├── asfcrypt.h │ │ ├── asfdec.c │ │ ├── asfenc.c │ │ ├── assdec.c │ │ ├── assenc.c │ │ ├── au.c │ │ ├── audiointerleave.c │ │ ├── audiointerleave.h │ │ ├── avc.c │ │ ├── avc.h │ │ ├── avformat.h │ │ ├── avi.c │ │ ├── avi.h │ │ ├── avidec.c │ │ ├── avienc.c │ │ ├── avio.c │ │ ├── avio.h │ │ ├── avio_internal.h │ │ ├── aviobuf.c │ │ ├── avisynth.c │ │ ├── avlanguage.c │ │ ├── avlanguage.h │ │ ├── avs.c │ │ ├── bethsoftvid.c │ │ ├── bfi.c │ │ ├── bink.c │ │ ├── c93.c │ │ ├── caf.c │ │ ├── caf.h │ │ ├── cafdec.c │ │ ├── cafenc.c │ │ ├── cavsvideodec.c │ │ ├── cdg.c │ │ ├── concat.c │ │ ├── crcenc.c │ │ ├── crypto.c │ │ ├── cutils.c │ │ ├── daud.c │ │ ├── dfa.c │ │ ├── diracdec.c │ │ ├── dnxhddec.c │ │ ├── dsicin.c │ │ ├── dtsdec.c │ │ ├── dv.c │ │ ├── dv.h │ │ ├── dvenc.c │ │ ├── dxa.c │ │ ├── eacdata.c │ │ ├── electronicarts.c │ │ ├── ffm.h │ │ ├── ffmdec.c │ │ ├── ffmenc.c │ │ ├── ffmeta.h │ │ ├── ffmetadec.c │ │ ├── ffmetaenc.c │ │ ├── file.c │ │ ├── filmstripdec.c │ │ ├── filmstripenc.c │ │ ├── flacdec.c │ │ ├── flacenc.c │ │ ├── flacenc.h │ │ ├── flacenc_header.c │ │ ├── flic.c │ │ ├── flv.h │ │ ├── flvdec.c │ │ ├── flvenc.c │ │ ├── framecrcenc.c │ │ ├── gif.c │ │ ├── gopher.c │ │ ├── gxf.c │ │ ├── gxf.h │ │ ├── gxfenc.c │ │ ├── h261dec.c │ │ ├── h263dec.c │ │ ├── h264dec.c │ │ ├── http.c │ │ ├── http.h │ │ ├── httpauth.c │ │ ├── httpauth.h │ │ ├── id3v1.c │ │ ├── id3v1.h │ │ ├── id3v2.c │ │ ├── id3v2.h │ │ ├── idcin.c │ │ ├── idroqdec.c │ │ ├── idroqenc.c │ │ ├── iff.c │ │ ├── img2.c │ │ ├── ingenientdec.c │ │ ├── internal.h │ │ ├── ipmovie.c │ │ ├── isom.c │ │ ├── isom.h │ │ ├── iss.c │ │ ├── iv8.c │ │ ├── ivfdec.c │ │ ├── ivfenc.c │ │ ├── jvdec.c │ │ ├── libavformat-uninstalled.pc │ │ ├── libavformat.pc │ │ ├── libavformat.v │ │ ├── libnut.c │ │ ├── librtmp.c │ │ ├── lmlm4.c │ │ ├── lxfdec.c │ │ ├── m4vdec.c │ │ ├── matroska.c │ │ ├── matroska.h │ │ ├── matroskadec.c │ │ ├── matroskaenc.c │ │ ├── md5enc.c │ │ ├── md5proto.c │ │ ├── metadata-example.c │ │ ├── metadata.c │ │ ├── metadata.h │ │ ├── metadata_compat.c │ │ ├── microdvddec.c │ │ ├── microdvdenc.c │ │ ├── mm.c │ │ ├── mmf.c │ │ ├── mms.c │ │ ├── mms.h │ │ ├── mmsh.c │ │ ├── mmst.c │ │ ├── mov.c │ │ ├── movenc.c │ │ ├── movenc.h │ │ ├── movenchint.c │ │ ├── mp3dec.c │ │ ├── mp3enc.c │ │ ├── mpc.c │ │ ├── mpc8.c │ │ ├── mpeg.c │ │ ├── mpeg.h │ │ ├── mpegenc.c │ │ ├── mpegts.c │ │ ├── mpegts.h │ │ ├── mpegtsenc.c │ │ ├── mpegvideodec.c │ │ ├── mpjpeg.c │ │ ├── msnwc_tcp.c │ │ ├── mtv.c │ │ ├── mvi.c │ │ ├── mxf.c │ │ ├── mxf.h │ │ ├── mxfdec.c │ │ ├── mxfenc.c │ │ ├── mxg.c │ │ ├── ncdec.c │ │ ├── network.h │ │ ├── nsvdec.c │ │ ├── nullenc.c │ │ ├── nut.c │ │ ├── nut.h │ │ ├── nutdec.c │ │ ├── nutenc.c │ │ ├── nuv.c │ │ ├── oggdec.c │ │ ├── oggdec.h │ │ ├── oggenc.c │ │ ├── oggparsecelt.c │ │ ├── oggparsedirac.c │ │ ├── oggparseflac.c │ │ ├── oggparseogm.c │ │ ├── oggparseskeleton.c │ │ ├── oggparsespeex.c │ │ ├── oggparsetheora.c │ │ ├── oggparsevorbis.c │ │ ├── oma.c │ │ ├── options.c │ │ ├── os_support.c │ │ ├── os_support.h │ │ ├── pcm.c │ │ ├── pcm.h │ │ ├── pcmdec.c │ │ ├── pcmenc.c │ │ ├── pmpdec.c │ │ ├── psxstr.c │ │ ├── pva.c │ │ ├── qcp.c │ │ ├── qtpalette.h │ │ ├── r3d.c │ │ ├── rawdec.c │ │ ├── rawdec.h │ │ ├── rawenc.c │ │ ├── rawenc.h │ │ ├── rawvideodec.c │ │ ├── rdt.c │ │ ├── rdt.h │ │ ├── riff.c │ │ ├── riff.h │ │ ├── rl2.c │ │ ├── rm.c │ │ ├── rm.h │ │ ├── rmdec.c │ │ ├── rmenc.c │ │ ├── rpl.c │ │ ├── rso.c │ │ ├── rso.h │ │ ├── rsodec.c │ │ ├── rsoenc.c │ │ ├── rtmp.h │ │ ├── rtmppkt.c │ │ ├── rtmppkt.h │ │ ├── rtmpproto.c │ │ ├── rtp.c │ │ ├── rtp.h │ │ ├── rtpdec.c │ │ ├── rtpdec.h │ │ ├── rtpdec_amr.c │ │ ├── rtpdec_asf.c │ │ ├── rtpdec_formats.h │ │ ├── rtpdec_h263.c │ │ ├── rtpdec_h264.c │ │ ├── rtpdec_latm.c │ │ ├── rtpdec_mpeg4.c │ │ ├── rtpdec_qcelp.c │ │ ├── rtpdec_qdm2.c │ │ ├── rtpdec_qt.c │ │ ├── rtpdec_svq3.c │ │ ├── rtpdec_vp8.c │ │ ├── rtpdec_xiph.c │ │ ├── rtpenc.c │ │ ├── rtpenc.h │ │ ├── rtpenc_aac.c │ │ ├── rtpenc_amr.c │ │ ├── rtpenc_chain.c │ │ ├── rtpenc_chain.h │ │ ├── rtpenc_h263.c │ │ ├── rtpenc_h264.c │ │ ├── rtpenc_latm.c │ │ ├── rtpenc_mpv.c │ │ ├── rtpenc_vp8.c │ │ ├── rtpenc_xiph.c │ │ ├── rtpproto.c │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── rtspcodes.h │ │ ├── rtspdec.c │ │ ├── rtspenc.c │ │ ├── sapdec.c │ │ ├── sapenc.c │ │ ├── sauce.c │ │ ├── sauce.h │ │ ├── sdp.c │ │ ├── seek.c │ │ ├── seek.h │ │ ├── segafilm.c │ │ ├── sierravmd.c │ │ ├── siff.c │ │ ├── smacker.c │ │ ├── sol.c │ │ ├── sox.h │ │ ├── soxdec.c │ │ ├── soxenc.c │ │ ├── spdif.c │ │ ├── spdif.h │ │ ├── spdifdec.c │ │ ├── spdifenc.c │ │ ├── srtdec.c │ │ ├── swf.h │ │ ├── swfdec.c │ │ ├── swfenc.c │ │ ├── tcp.c │ │ ├── thp.c │ │ ├── tiertexseq.c │ │ ├── timefilter.c │ │ ├── timefilter.h │ │ ├── tmv.c │ │ ├── tta.c │ │ ├── tty.c │ │ ├── txd.c │ │ ├── udp.c │ │ ├── url.h │ │ ├── utils.c │ │ ├── vc1test.c │ │ ├── vc1testenc.c │ │ ├── version.h │ │ ├── voc.c │ │ ├── voc.h │ │ ├── vocdec.c │ │ ├── vocenc.c │ │ ├── vorbiscomment.c │ │ ├── vorbiscomment.h │ │ ├── vqf.c │ │ ├── wav.c │ │ ├── wc3movie.c │ │ ├── westwood.c │ │ ├── wtv.c │ │ ├── wtv.h │ │ ├── wtvdec.c │ │ ├── wv.c │ │ ├── xa.c │ │ ├── xwma.c │ │ ├── yop.c │ │ └── yuv4mpeg.c │ ├── libavutil │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── adler32.c │ │ ├── adler32.h │ │ ├── aes.c │ │ ├── aes.h │ │ ├── arm │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ └── timer.h │ │ ├── attributes.h │ │ ├── audioconvert.c │ │ ├── audioconvert.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avr32 │ │ │ ├── bswap.h │ │ │ └── intreadwrite.h │ │ ├── avstring.c │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.c │ │ ├── base64.h │ │ ├── bfin │ │ │ ├── bswap.h │ │ │ └── timer.h │ │ ├── bswap.h │ │ ├── colorspace.h │ │ ├── common.h │ │ ├── cpu.c │ │ ├── cpu.h │ │ ├── crc.c │ │ ├── crc.h │ │ ├── crc_data.h │ │ ├── des.c │ │ ├── des.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── error.c │ │ ├── error.h │ │ ├── eval.c │ │ ├── eval.h │ │ ├── fifo.c │ │ ├── fifo.h │ │ ├── file.c │ │ ├── file.h │ │ ├── imgutils.c │ │ ├── imgutils.h │ │ ├── integer.c │ │ ├── integer.h │ │ ├── internal.h │ │ ├── intfloat_readwrite.c │ │ ├── intfloat_readwrite.h │ │ ├── intmath.h │ │ ├── intreadwrite.h │ │ ├── inverse.c │ │ ├── lfg.c │ │ ├── lfg.h │ │ ├── libavutil-uninstalled.pc │ │ ├── libavutil.pc │ │ ├── libavutil.v │ │ ├── libm.h │ │ ├── lls.c │ │ ├── lls.h │ │ ├── log.c │ │ ├── log.h │ │ ├── lzo.c │ │ ├── lzo.h │ │ ├── mathematics.c │ │ ├── mathematics.h │ │ ├── md5.c │ │ ├── md5.h │ │ ├── mem.c │ │ ├── mem.h │ │ ├── mips │ │ │ └── intreadwrite.h │ │ ├── opt.c │ │ ├── opt.h │ │ ├── parseutils.c │ │ ├── parseutils.h │ │ ├── pca.c │ │ ├── pca.h │ │ ├── pixdesc.c │ │ ├── pixdesc.h │ │ ├── pixfmt.h │ │ ├── ppc │ │ │ ├── cpu.c │ │ │ ├── intreadwrite.h │ │ │ └── timer.h │ │ ├── random_seed.c │ │ ├── random_seed.h │ │ ├── rational.c │ │ ├── rational.h │ │ ├── rc4.c │ │ ├── rc4.h │ │ ├── samplefmt.c │ │ ├── samplefmt.h │ │ ├── sh4 │ │ │ └── bswap.h │ │ ├── sha.c │ │ ├── sha.h │ │ ├── sha1.h │ │ ├── softfloat.c │ │ ├── softfloat.h │ │ ├── timer.h │ │ ├── tomi │ │ │ └── intreadwrite.h │ │ ├── tree.c │ │ ├── tree.h │ │ ├── utils.c │ │ ├── x86 │ │ │ ├── bswap.h │ │ │ ├── cpu.c │ │ │ ├── intmath.h │ │ │ ├── intreadwrite.h │ │ │ └── timer.h │ │ └── x86_cpu.h │ ├── libpostproc │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── libpostproc.v │ │ ├── postprocess.c │ │ ├── postprocess.h │ │ ├── postprocess_altivec_template.c │ │ ├── postprocess_internal.h │ │ └── postprocess_template.c │ ├── libswscale │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── bfin │ │ │ ├── internal_bfin.S │ │ │ ├── swscale_bfin.c │ │ │ └── yuv2rgb_bfin.c │ │ ├── colorspace-test.c │ │ ├── libswscale-uninstalled.pc │ │ ├── libswscale.pc │ │ ├── libswscale.v │ │ ├── mlib │ │ │ └── yuv2rgb_mlib.c │ │ ├── options.c │ │ ├── ppc │ │ │ ├── swscale_altivec.c │ │ │ ├── yuv2rgb_altivec.c │ │ │ ├── yuv2rgb_altivec.h │ │ │ └── yuv2yuv_altivec.c │ │ ├── rgb2rgb.c │ │ ├── rgb2rgb.h │ │ ├── rgb2rgb_template.c │ │ ├── sparc │ │ │ └── yuv2rgb_vis.c │ │ ├── swscale-test.c │ │ ├── swscale.c │ │ ├── swscale.h │ │ ├── swscale_internal.h │ │ ├── swscale_template.c │ │ ├── swscale_unscaled.c │ │ ├── utils.c │ │ ├── x86 │ │ │ ├── rgb2rgb.c │ │ │ ├── rgb2rgb_template.c │ │ │ ├── swscale_mmx.c │ │ │ ├── swscale_template.c │ │ │ ├── yuv2rgb_mmx.c │ │ │ └── yuv2rgb_template.c │ │ └── yuv2rgb.c │ ├── mt-work │ │ ├── email.sh │ │ ├── mplayer.diff │ │ ├── raw.sh │ │ ├── test.sh │ │ ├── todo.txt │ │ ├── valgrind-check.sh │ │ └── yuvcmp.c │ ├── settings.c │ ├── settings.h │ ├── subdir.mak │ ├── tests │ │ ├── audiogen.c │ │ ├── base64.c │ │ ├── codec-regression.sh │ │ ├── copy.regression.ref │ │ ├── copycooker.sh │ │ ├── fate-run.sh │ │ ├── fate-update.sh │ │ ├── fate.mak │ │ ├── fate.sh │ │ ├── fate │ │ │ ├── aac.mak │ │ │ ├── als.mak │ │ │ ├── fft.mak │ │ │ ├── h264.mak │ │ │ ├── mp3.mak │ │ │ ├── vorbis.mak │ │ │ └── vp8.mak │ │ ├── fate2.mak │ │ ├── ffserver-regression.sh │ │ ├── ffserver.conf │ │ ├── ffserver.regression.ref │ │ ├── lavf-regression.sh │ │ ├── lavfi-regression.sh │ │ ├── lena.pnm │ │ ├── md5.sh │ │ ├── ref │ │ │ ├── acodec │ │ │ │ ├── ac3_fixed │ │ │ │ ├── adpcm_ima_qt │ │ │ │ ├── adpcm_ima_wav │ │ │ │ ├── adpcm_ms │ │ │ │ ├── adpcm_swf │ │ │ │ ├── adpcm_yam │ │ │ │ ├── alac │ │ │ │ ├── aref │ │ │ │ ├── flac │ │ │ │ ├── g726 │ │ │ │ ├── mp2 │ │ │ │ ├── pcm │ │ │ │ ├── wmav1 │ │ │ │ └── wmav2 │ │ │ ├── fate │ │ │ │ ├── 4xm-1 │ │ │ │ ├── 4xm-2 │ │ │ │ ├── 8bps │ │ │ │ ├── aac-demux │ │ │ │ ├── aasc │ │ │ │ ├── adpcm-ea-r2 │ │ │ │ ├── adpcm-ea-r3 │ │ │ │ ├── aea-demux │ │ │ │ ├── alg-mm │ │ │ │ ├── amv │ │ │ │ ├── ansi │ │ │ │ ├── armovie-escape124 │ │ │ │ ├── auravision │ │ │ │ ├── auravision-v2 │ │ │ │ ├── bethsoft-vid │ │ │ │ ├── bfi │ │ │ │ ├── bink-demux │ │ │ │ ├── bink-demux-video │ │ │ │ ├── caf │ │ │ │ ├── cdgraphics │ │ │ │ ├── cljr │ │ │ │ ├── corepng │ │ │ │ ├── creative-adpcm │ │ │ │ ├── creative-adpcm-8-2.6bit │ │ │ │ ├── creative-adpcm-8-2bit │ │ │ │ ├── creative-adpcm-8-4bit │ │ │ │ ├── creatureshock-avs │ │ │ │ ├── cryo-apc │ │ │ │ ├── cscd │ │ │ │ ├── cvid │ │ │ │ ├── cvid-palette │ │ │ │ ├── cyberia-c93 │ │ │ │ ├── cyuv │ │ │ │ ├── d-cinema-demux │ │ │ │ ├── delphine-cin │ │ │ │ ├── deluxepaint-anm │ │ │ │ ├── dpx │ │ │ │ ├── duck-dk3 │ │ │ │ ├── duck-dk4 │ │ │ │ ├── duck-tm2 │ │ │ │ ├── dxa-scummvm │ │ │ │ ├── ea-cdata │ │ │ │ ├── ea-cmv │ │ │ │ ├── ea-dct │ │ │ │ ├── ea-mad-adpcm-ea-r1 │ │ │ │ ├── ea-mad-pcm-planar │ │ │ │ ├── ea-tgq │ │ │ │ ├── ea-tgv-ima-ea-eacs │ │ │ │ ├── ea-tgv-ima-ea-sead │ │ │ │ ├── ea-tqi-adpcm │ │ │ │ ├── ea-vp60 │ │ │ │ ├── ea-vp61 │ │ │ │ ├── fax-g3 │ │ │ │ ├── fax-g3s │ │ │ │ ├── feeble-dxa │ │ │ │ ├── film-cvid-pcm-stereo-8bit │ │ │ │ ├── flic-af11-palette-change │ │ │ │ ├── flic-af12 │ │ │ │ ├── flic-magiccarpet │ │ │ │ ├── fraps-v0 │ │ │ │ ├── fraps-v1 │ │ │ │ ├── fraps-v2 │ │ │ │ ├── fraps-v3 │ │ │ │ ├── fraps-v4 │ │ │ │ ├── fraps-v5 │ │ │ │ ├── frwu │ │ │ │ ├── funcom-iss │ │ │ │ ├── g722dec-1 │ │ │ │ ├── gsm │ │ │ │ ├── gsm-ms │ │ │ │ ├── h264-conformance-aud_mw_e │ │ │ │ ├── h264-conformance-ba1_ft_c │ │ │ │ ├── h264-conformance-ba1_sony_d │ │ │ │ ├── h264-conformance-ba2_sony_f │ │ │ │ ├── h264-conformance-ba3_sva_c │ │ │ │ ├── h264-conformance-ba_mw_d │ │ │ │ ├── h264-conformance-bamq1_jvc_c │ │ │ │ ├── h264-conformance-bamq2_jvc_c │ │ │ │ ├── h264-conformance-banm_mw_d │ │ │ │ ├── h264-conformance-basqp1_sony_c │ │ │ │ ├── h264-conformance-caba1_sony_d │ │ │ │ ├── h264-conformance-caba1_sva_b │ │ │ │ ├── h264-conformance-caba2_sony_e │ │ │ │ ├── h264-conformance-caba2_sva_b │ │ │ │ ├── h264-conformance-caba3_sony_c │ │ │ │ ├── h264-conformance-caba3_sva_b │ │ │ │ ├── h264-conformance-caba3_toshiba_e │ │ │ │ ├── h264-conformance-cabac_mot_fld0_full │ │ │ │ ├── h264-conformance-cabac_mot_frm0_full │ │ │ │ ├── h264-conformance-cabac_mot_mbaff0_full │ │ │ │ ├── h264-conformance-cabac_mot_picaff0_full │ │ │ │ ├── h264-conformance-cabaci3_sony_b │ │ │ │ ├── h264-conformance-cabast3_sony_e │ │ │ │ ├── h264-conformance-cabastbr3_sony_b │ │ │ │ ├── h264-conformance-cabref3_sand_d │ │ │ │ ├── h264-conformance-cacqp3_sony_d │ │ │ │ ├── h264-conformance-cafi1_sva_c │ │ │ │ ├── h264-conformance-cama1_sony_c │ │ │ │ ├── h264-conformance-cama1_toshiba_b │ │ │ │ ├── h264-conformance-cama1_vtc_c │ │ │ │ ├── h264-conformance-cama2_vtc_b │ │ │ │ ├── h264-conformance-cama3_sand_e │ │ │ │ ├── h264-conformance-cama3_vtc_b │ │ │ │ ├── h264-conformance-camaci3_sony_c │ │ │ │ ├── h264-conformance-camanl1_toshiba_b │ │ │ │ ├── h264-conformance-camanl2_toshiba_b │ │ │ │ ├── h264-conformance-camanl3_sand_e │ │ │ │ ├── h264-conformance-camasl3_sony_b │ │ │ │ ├── h264-conformance-camp_mot_mbaff_l30 │ │ │ │ ├── h264-conformance-camp_mot_mbaff_l31 │ │ │ │ ├── h264-conformance-canl1_sony_e │ │ │ │ ├── h264-conformance-canl1_sva_b │ │ │ │ ├── h264-conformance-canl1_toshiba_g │ │ │ │ ├── h264-conformance-canl2_sony_e │ │ │ │ ├── h264-conformance-canl2_sva_b │ │ │ │ ├── h264-conformance-canl3_sony_c │ │ │ │ ├── h264-conformance-canl3_sva_b │ │ │ │ ├── h264-conformance-canl4_sva_b │ │ │ │ ├── h264-conformance-canlma2_sony_c │ │ │ │ ├── h264-conformance-canlma3_sony_c │ │ │ │ ├── h264-conformance-capa1_toshiba_b │ │ │ │ ├── h264-conformance-capama3_sand_f │ │ │ │ ├── h264-conformance-capcm1_sand_e │ │ │ │ ├── h264-conformance-capcmnl1_sand_e │ │ │ │ ├── h264-conformance-capm3_sony_d │ │ │ │ ├── h264-conformance-caqp1_sony_b │ │ │ │ ├── h264-conformance-cavlc_mot_fld0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_frm0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_mbaff0_full_b │ │ │ │ ├── h264-conformance-cavlc_mot_picaff0_full_b │ │ │ │ ├── h264-conformance-cawp1_toshiba_e │ │ │ │ ├── h264-conformance-cawp5_toshiba_e │ │ │ │ ├── h264-conformance-ci1_ft_b │ │ │ │ ├── h264-conformance-ci_mw_d │ │ │ │ ├── h264-conformance-cvbs3_sony_c │ │ │ │ ├── h264-conformance-cvcanlma2_sony_c │ │ │ │ ├── h264-conformance-cvfi1_sony_d │ │ │ │ ├── h264-conformance-cvfi1_sva_c │ │ │ │ ├── h264-conformance-cvfi2_sony_h │ │ │ │ ├── h264-conformance-cvfi2_sva_c │ │ │ │ ├── h264-conformance-cvma1_sony_d │ │ │ │ ├── h264-conformance-cvma1_toshiba_b │ │ │ │ ├── h264-conformance-cvmanl1_toshiba_b │ │ │ │ ├── h264-conformance-cvmanl2_toshiba_b │ │ │ │ ├── h264-conformance-cvmapaqp3_sony_e │ │ │ │ ├── h264-conformance-cvmaqp2_sony_g │ │ │ │ ├── h264-conformance-cvmaqp3_sony_d │ │ │ │ ├── h264-conformance-cvmp_mot_fld_l30_b │ │ │ │ ├── h264-conformance-cvmp_mot_frm_l31_b │ │ │ │ ├── h264-conformance-cvnlfi1_sony_c │ │ │ │ ├── h264-conformance-cvnlfi2_sony_h │ │ │ │ ├── h264-conformance-cvpa1_toshiba_b │ │ │ │ ├── h264-conformance-cvpcmnl1_sva_c │ │ │ │ ├── h264-conformance-cvpcmnl2_sva_c │ │ │ │ ├── h264-conformance-cvwp1_toshiba_e │ │ │ │ ├── h264-conformance-cvwp2_toshiba_e │ │ │ │ ├── h264-conformance-cvwp3_toshiba_e │ │ │ │ ├── h264-conformance-cvwp5_toshiba_e │ │ │ │ ├── h264-conformance-fi1_sony_e │ │ │ │ ├── h264-conformance-frext-alphaconformanceg │ │ │ │ ├── h264-conformance-frext-bcrm_freh10 │ │ │ │ ├── h264-conformance-frext-brcm_freh11 │ │ │ │ ├── h264-conformance-frext-brcm_freh3 │ │ │ │ ├── h264-conformance-frext-brcm_freh4 │ │ │ │ ├── h264-conformance-frext-brcm_freh5 │ │ │ │ ├── h264-conformance-frext-brcm_freh8 │ │ │ │ ├── h264-conformance-frext-brcm_freh9 │ │ │ │ ├── h264-conformance-frext-freh12_b │ │ │ │ ├── h264-conformance-frext-freh1_b │ │ │ │ ├── h264-conformance-frext-freh2_b │ │ │ │ ├── h264-conformance-frext-freh6 │ │ │ │ ├── h264-conformance-frext-freh7_b │ │ │ │ ├── h264-conformance-frext-frext01_jvc_d │ │ │ │ ├── h264-conformance-frext-frext02_jvc_c │ │ │ │ ├── h264-conformance-frext-frext1_panasonic_c │ │ │ │ ├── h264-conformance-frext-frext2_panasonic_b │ │ │ │ ├── h264-conformance-frext-frext3_panasonic_d │ │ │ │ ├── h264-conformance-frext-frext4_panasonic_a │ │ │ │ ├── h264-conformance-frext-frext_mmco4_sony_b │ │ │ │ ├── h264-conformance-frext-hcaff1_hhi_b │ │ │ │ ├── h264-conformance-frext-hcafr1_hhi_c │ │ │ │ ├── h264-conformance-frext-hcafr2_hhi_a │ │ │ │ ├── h264-conformance-frext-hcafr3_hhi_a │ │ │ │ ├── h264-conformance-frext-hcafr4_hhi_a │ │ │ │ ├── h264-conformance-frext-hcamff1_hhi_b │ │ │ │ ├── h264-conformance-frext-hpca_brcm_c │ │ │ │ ├── h264-conformance-frext-hpcadq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcafl_bcrm_c │ │ │ │ ├── h264-conformance-frext-hpcaflnl_bcrm_c │ │ │ │ ├── h264-conformance-frext-hpcalq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcamapalq_bcrm_b │ │ │ │ ├── h264-conformance-frext-hpcamolq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcanl_brcm_c │ │ │ │ ├── h264-conformance-frext-hpcaq2lq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcv_brcm_a │ │ │ │ ├── h264-conformance-frext-hpcvfl_bcrm_a │ │ │ │ ├── h264-conformance-frext-hpcvflnl_bcrm_a │ │ │ │ ├── h264-conformance-frext-hpcvmolq_brcm_b │ │ │ │ ├── h264-conformance-frext-hpcvnl_brcm_a │ │ │ │ ├── h264-conformance-frext-pph10i1_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i2_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i3_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i4_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i5_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i6_panasonic_a │ │ │ │ ├── h264-conformance-frext-pph10i7_panasonic_a │ │ │ │ ├── h264-conformance-hcbp2_hhi_a │ │ │ │ ├── h264-conformance-hcmp1_hhi_a │ │ │ │ ├── h264-conformance-ls_sva_d │ │ │ │ ├── h264-conformance-midr_mw_d │ │ │ │ ├── h264-conformance-mps_mw_a │ │ │ │ ├── h264-conformance-mr1_bt_a │ │ │ │ ├── h264-conformance-mr1_mw_a │ │ │ │ ├── h264-conformance-mr2_mw_a │ │ │ │ ├── h264-conformance-mr2_tandberg_e │ │ │ │ ├── h264-conformance-mr3_tandberg_b │ │ │ │ ├── h264-conformance-mr4_tandberg_c │ │ │ │ ├── h264-conformance-mr5_tandberg_c │ │ │ │ ├── h264-conformance-mr6_bt_b │ │ │ │ ├── h264-conformance-mr7_bt_b │ │ │ │ ├── h264-conformance-mr8_bt_b │ │ │ │ ├── h264-conformance-mr9_bt_b │ │ │ │ ├── h264-conformance-mv1_brcm_d │ │ │ │ ├── h264-conformance-nl1_sony_d │ │ │ │ ├── h264-conformance-nl2_sony_h │ │ │ │ ├── h264-conformance-nl3_sva_e │ │ │ │ ├── h264-conformance-nlmq1_jvc_c │ │ │ │ ├── h264-conformance-nlmq2_jvc_c │ │ │ │ ├── h264-conformance-nrf_mw_e │ │ │ │ ├── h264-conformance-sharp_mp_field_1_b │ │ │ │ ├── h264-conformance-sharp_mp_field_2_b │ │ │ │ ├── h264-conformance-sharp_mp_field_3_b │ │ │ │ ├── h264-conformance-sharp_mp_paff_1r2 │ │ │ │ ├── h264-conformance-sharp_mp_paff_2r │ │ │ │ ├── h264-conformance-sl1_sva_b │ │ │ │ ├── h264-conformance-sva_ba1_b │ │ │ │ ├── h264-conformance-sva_ba2_d │ │ │ │ ├── h264-conformance-sva_base_b │ │ │ │ ├── h264-conformance-sva_cl1_e │ │ │ │ ├── h264-conformance-sva_fm1_e │ │ │ │ ├── h264-conformance-sva_nl1_b │ │ │ │ ├── h264-conformance-sva_nl2_e │ │ │ │ ├── h264-extreme-plane-pred │ │ │ │ ├── h264-interlace-crop │ │ │ │ ├── h264-lossless │ │ │ │ ├── id-cin-video │ │ │ │ ├── idroq-video-dpcm │ │ │ │ ├── idroq-video-encode │ │ │ │ ├── iff-byterun1 │ │ │ │ ├── iff-fibonacci │ │ │ │ ├── iff-ilbm │ │ │ │ ├── iff-pcm │ │ │ │ ├── indeo2 │ │ │ │ ├── indeo3 │ │ │ │ ├── indeo5 │ │ │ │ ├── interplay-mve-16bit │ │ │ │ ├── interplay-mve-8bit │ │ │ │ ├── iv8-demux │ │ │ │ ├── kmvc │ │ │ │ ├── lmlm4-demux │ │ │ │ ├── loco-rgb │ │ │ │ ├── loco-yuy2 │ │ │ │ ├── lossless-appleaudio │ │ │ │ ├── lossless-meridianaudio │ │ │ │ ├── lossless-monkeysaudio │ │ │ │ ├── lossless-shortenaudio │ │ │ │ ├── lossless-tta │ │ │ │ ├── lossless-wavpackaudio │ │ │ │ ├── maxis-xa │ │ │ │ ├── mimic │ │ │ │ ├── mjpegb │ │ │ │ ├── motionpixels │ │ │ │ ├── mpc7-demux │ │ │ │ ├── mpc8-demux │ │ │ │ ├── mpeg2-field-enc │ │ │ │ ├── mpeg4-als-conformance-00 │ │ │ │ ├── mpeg4-als-conformance-01 │ │ │ │ ├── mpeg4-als-conformance-02 │ │ │ │ ├── mpeg4-als-conformance-03 │ │ │ │ ├── mpeg4-als-conformance-04 │ │ │ │ ├── mpeg4-als-conformance-05 │ │ │ │ ├── msmpeg4v1 │ │ │ │ ├── msrle-8bit │ │ │ │ ├── msvideo1-16bit │ │ │ │ ├── msvideo1-8bit │ │ │ │ ├── mszh │ │ │ │ ├── mtv │ │ │ │ ├── mxf-demux │ │ │ │ ├── nc-demux │ │ │ │ ├── nsv-demux │ │ │ │ ├── nuv │ │ │ │ ├── oma-demux │ │ │ │ ├── pcm_dvd │ │ │ │ ├── pictor │ │ │ │ ├── psx-str │ │ │ │ ├── psx-str-v3-adpcm_xa │ │ │ │ ├── psx-str-v3-mdec │ │ │ │ ├── ptx │ │ │ │ ├── pva-demux │ │ │ │ ├── qcp-demux │ │ │ │ ├── qpeg │ │ │ │ ├── qt-alaw-mono │ │ │ │ ├── qt-alaw-stereo │ │ │ │ ├── qt-ima4-mono │ │ │ │ ├── qt-ima4-stereo │ │ │ │ ├── qt-mac3-mono │ │ │ │ ├── qt-mac3-stereo │ │ │ │ ├── qt-mac6-mono │ │ │ │ ├── qt-mac6-stereo │ │ │ │ ├── qt-msadpcm-stereo │ │ │ │ ├── qt-msimaadpcm-stereo │ │ │ │ ├── qt-rawpcm-16bit-stereo-signed-be │ │ │ │ ├── qt-rawpcm-16bit-stereo-signed-le │ │ │ │ ├── qt-rawpcm-8bit-mono-unsigned │ │ │ │ ├── qt-rawpcm-8bit-stereo-unsigned │ │ │ │ ├── qt-ulaw-mono │ │ │ │ ├── qt-ulaw-stereo │ │ │ │ ├── qtrle-16bit │ │ │ │ ├── qtrle-1bit │ │ │ │ ├── qtrle-24bit │ │ │ │ ├── qtrle-2bit │ │ │ │ ├── qtrle-32bit │ │ │ │ ├── qtrle-4bit │ │ │ │ ├── qtrle-8bit │ │ │ │ ├── quickdraw │ │ │ │ ├── real-14_4 │ │ │ │ ├── real-rv40 │ │ │ │ ├── redcode-demux │ │ │ │ ├── rl2 │ │ │ │ ├── rpza │ │ │ │ ├── rv30 │ │ │ │ ├── sha │ │ │ │ ├── sierra-audio │ │ │ │ ├── sierra-vmd │ │ │ │ ├── siff │ │ │ │ ├── smacker │ │ │ │ ├── smc │ │ │ │ ├── sp5x │ │ │ │ ├── sub-srt │ │ │ │ ├── sunraster-1bit-raw │ │ │ │ ├── sunraster-1bit-rle │ │ │ │ ├── sunraster-24bit-raw │ │ │ │ ├── sunraster-24bit-rle │ │ │ │ ├── sunraster-8bit-raw │ │ │ │ ├── sunraster-8bit-rle │ │ │ │ ├── svq1 │ │ │ │ ├── svq3 │ │ │ │ ├── thp-mjpeg-adpcm │ │ │ │ ├── tiertex-seq │ │ │ │ ├── tmv │ │ │ │ ├── truemotion1-15 │ │ │ │ ├── truemotion1-24 │ │ │ │ ├── tscc-15bit │ │ │ │ ├── tscc-32bit │ │ │ │ ├── txd-16bpp │ │ │ │ ├── txd-pal8 │ │ │ │ ├── ulti │ │ │ │ ├── v210 │ │ │ │ ├── vc1 │ │ │ │ ├── vcr1 │ │ │ │ ├── video-xl │ │ │ │ ├── vmnc-16bit │ │ │ │ ├── vmnc-32bit │ │ │ │ ├── vp3 │ │ │ │ ├── vp5 │ │ │ │ ├── vp6a │ │ │ │ ├── vp6f │ │ │ │ ├── vp8-sign-bias │ │ │ │ ├── vp8-test-vector-001 │ │ │ │ ├── vp8-test-vector-002 │ │ │ │ ├── vp8-test-vector-003 │ │ │ │ ├── vp8-test-vector-004 │ │ │ │ ├── vp8-test-vector-005 │ │ │ │ ├── vp8-test-vector-006 │ │ │ │ ├── vp8-test-vector-007 │ │ │ │ ├── vp8-test-vector-008 │ │ │ │ ├── vp8-test-vector-009 │ │ │ │ ├── vp8-test-vector-010 │ │ │ │ ├── vp8-test-vector-011 │ │ │ │ ├── vp8-test-vector-012 │ │ │ │ ├── vp8-test-vector-013 │ │ │ │ ├── vp8-test-vector-014 │ │ │ │ ├── vp8-test-vector-015 │ │ │ │ ├── vp8-test-vector-016 │ │ │ │ ├── vp8-test-vector-017 │ │ │ │ ├── vqa-cc │ │ │ │ ├── vqf-demux │ │ │ │ ├── w64 │ │ │ │ ├── wc3movie-xan │ │ │ │ ├── westwood-aud │ │ │ │ ├── wmv8-drm │ │ │ │ ├── wmv8-drm-nodec │ │ │ │ ├── wnv1 │ │ │ │ ├── ws_snd │ │ │ │ ├── xan-dpcm │ │ │ │ ├── yop │ │ │ │ ├── zlib │ │ │ │ ├── zmbv-15bit │ │ │ │ ├── zmbv-16bit │ │ │ │ ├── zmbv-32bit │ │ │ │ └── zmbv-8bit │ │ │ ├── lavf │ │ │ │ ├── aiff │ │ │ │ ├── alaw │ │ │ │ ├── asf │ │ │ │ ├── au │ │ │ │ ├── avi │ │ │ │ ├── bmp │ │ │ │ ├── dv_fmt │ │ │ │ ├── ffm │ │ │ │ ├── flv_fmt │ │ │ │ ├── gif │ │ │ │ ├── gxf │ │ │ │ ├── jpg │ │ │ │ ├── mkv │ │ │ │ ├── mmf │ │ │ │ ├── mov │ │ │ │ ├── mpg │ │ │ │ ├── mulaw │ │ │ │ ├── mxf │ │ │ │ ├── nut │ │ │ │ ├── ogg │ │ │ │ ├── pbmpipe │ │ │ │ ├── pcx │ │ │ │ ├── pgm │ │ │ │ ├── pgmpipe │ │ │ │ ├── pixfmt │ │ │ │ ├── png │ │ │ │ ├── ppm │ │ │ │ ├── ppmpipe │ │ │ │ ├── rm │ │ │ │ ├── sgi │ │ │ │ ├── swf │ │ │ │ ├── tga │ │ │ │ ├── tiff │ │ │ │ ├── ts │ │ │ │ ├── voc │ │ │ │ ├── voc_s16 │ │ │ │ ├── wav │ │ │ │ └── yuv4mpeg │ │ │ ├── lavfi │ │ │ │ ├── crop │ │ │ │ ├── crop_scale │ │ │ │ ├── crop_scale_vflip │ │ │ │ ├── crop_vflip │ │ │ │ ├── null │ │ │ │ ├── pixdesc_be │ │ │ │ ├── pixdesc_le │ │ │ │ ├── pixfmts_copy_le │ │ │ │ ├── pixfmts_crop_le │ │ │ │ ├── pixfmts_hflip_le │ │ │ │ ├── pixfmts_null_le │ │ │ │ ├── pixfmts_pad_le │ │ │ │ ├── pixfmts_scale_le │ │ │ │ ├── pixfmts_vflip_le │ │ │ │ ├── scale200 │ │ │ │ ├── scale500 │ │ │ │ ├── vflip │ │ │ │ ├── vflip_crop │ │ │ │ └── vflip_vflip │ │ │ ├── seek │ │ │ │ ├── ac3_rm │ │ │ │ ├── adpcm_ima_wav │ │ │ │ ├── adpcm_ms_wav │ │ │ │ ├── adpcm_qt_aiff │ │ │ │ ├── adpcm_swf_flv │ │ │ │ ├── adpcm_yam_wav │ │ │ │ ├── alac_m4a │ │ │ │ ├── asv1_avi │ │ │ │ ├── asv2_avi │ │ │ │ ├── dnxhd_1080i_mov │ │ │ │ ├── dnxhd_720p_dnxhd │ │ │ │ ├── dnxhd_720p_rd_dnxhd │ │ │ │ ├── dv411_dv │ │ │ │ ├── dv50_dv │ │ │ │ ├── dv_dv │ │ │ │ ├── error_mpeg4_adv_avi │ │ │ │ ├── ffv1_avi │ │ │ │ ├── flac_flac │ │ │ │ ├── flashsv_flv │ │ │ │ ├── flv_flv │ │ │ │ ├── g726_wav │ │ │ │ ├── h261_avi │ │ │ │ ├── h263_avi │ │ │ │ ├── h263p_avi │ │ │ │ ├── huffyuv_avi │ │ │ │ ├── image_bmp │ │ │ │ ├── image_jpg │ │ │ │ ├── image_pcx │ │ │ │ ├── image_pgm │ │ │ │ ├── image_ppm │ │ │ │ ├── image_sgi │ │ │ │ ├── image_tga │ │ │ │ ├── image_tiff │ │ │ │ ├── jpegls_avi │ │ │ │ ├── lavf_aif │ │ │ │ ├── lavf_al │ │ │ │ ├── lavf_asf │ │ │ │ ├── lavf_au │ │ │ │ ├── lavf_avi │ │ │ │ ├── lavf_dv │ │ │ │ ├── lavf_ffm │ │ │ │ ├── lavf_flv │ │ │ │ ├── lavf_gif │ │ │ │ ├── lavf_gxf │ │ │ │ ├── lavf_mkv │ │ │ │ ├── lavf_mmf │ │ │ │ ├── lavf_mov │ │ │ │ ├── lavf_mpg │ │ │ │ ├── lavf_mxf │ │ │ │ ├── lavf_mxf_d10 │ │ │ │ ├── lavf_nut │ │ │ │ ├── lavf_ogg │ │ │ │ ├── lavf_rm │ │ │ │ ├── lavf_swf │ │ │ │ ├── lavf_ts │ │ │ │ ├── lavf_ul │ │ │ │ ├── lavf_voc │ │ │ │ ├── lavf_wav │ │ │ │ ├── lavf_y4m │ │ │ │ ├── ljpeg_avi │ │ │ │ ├── mjpeg_avi │ │ │ │ ├── mp2_mp2 │ │ │ │ ├── mpeg1_mpg │ │ │ │ ├── mpeg1b_mpg │ │ │ │ ├── mpeg2_422_mpg │ │ │ │ ├── mpeg2_mpg │ │ │ │ ├── mpeg2i_mpg │ │ │ │ ├── mpeg2ivlc_qprd_mpg │ │ │ │ ├── mpeg2reuse_mpg │ │ │ │ ├── mpeg2thread_mpg │ │ │ │ ├── mpeg2threadivlc_mpg │ │ │ │ ├── mpeg4_Q_avi │ │ │ │ ├── mpeg4_adap_avi │ │ │ │ ├── mpeg4_adv_avi │ │ │ │ ├── mpeg4_nr_avi │ │ │ │ ├── mpeg4_qprd_avi │ │ │ │ ├── mpeg4_rc_avi │ │ │ │ ├── mpeg4_thread_avi │ │ │ │ ├── msmpeg4_avi │ │ │ │ ├── msmpeg4v2_avi │ │ │ │ ├── odivx_mp4 │ │ │ │ ├── pbmpipe_pbm │ │ │ │ ├── pcm_alaw_wav │ │ │ │ ├── pcm_f32be_au │ │ │ │ ├── pcm_f32le_wav │ │ │ │ ├── pcm_f64be_au │ │ │ │ ├── pcm_f64le_wav │ │ │ │ ├── pcm_mulaw_wav │ │ │ │ ├── pcm_s16be_mkv │ │ │ │ ├── pcm_s16be_mov │ │ │ │ ├── pcm_s16le_mkv │ │ │ │ ├── pcm_s16le_wav │ │ │ │ ├── pcm_s24be_mov │ │ │ │ ├── pcm_s24daud_302 │ │ │ │ ├── pcm_s24le_wav │ │ │ │ ├── pcm_s32be_mov │ │ │ │ ├── pcm_s32le_wav │ │ │ │ ├── pcm_s8_mov │ │ │ │ ├── pcm_u8_wav │ │ │ │ ├── pcm_zork_wav │ │ │ │ ├── pgmpipe_pgm │ │ │ │ ├── ppmpipe_ppm │ │ │ │ ├── rgb_avi │ │ │ │ ├── roqav_roq │ │ │ │ ├── rv10_rm │ │ │ │ ├── rv20_rm │ │ │ │ ├── snow53_avi │ │ │ │ ├── snow_avi │ │ │ │ ├── svq1_mov │ │ │ │ ├── wmav1_asf │ │ │ │ ├── wmav2_asf │ │ │ │ ├── wmv1_avi │ │ │ │ ├── wmv2_avi │ │ │ │ └── yuv_avi │ │ │ ├── vsynth1 │ │ │ │ ├── asv1 │ │ │ │ ├── asv2 │ │ │ │ ├── dnxhd_1080i │ │ │ │ ├── dnxhd_720p │ │ │ │ ├── dnxhd_720p_rd │ │ │ │ ├── dv │ │ │ │ ├── dv50 │ │ │ │ ├── error │ │ │ │ ├── ffv1 │ │ │ │ ├── flashsv │ │ │ │ ├── flashsv2 │ │ │ │ ├── flv │ │ │ │ ├── h261 │ │ │ │ ├── h263 │ │ │ │ ├── h263p │ │ │ │ ├── huffyuv │ │ │ │ ├── jpegls │ │ │ │ ├── ljpeg │ │ │ │ ├── mjpeg │ │ │ │ ├── mpeg │ │ │ │ ├── mpeg1b │ │ │ │ ├── mpeg2 │ │ │ │ ├── mpeg2thread │ │ │ │ ├── mpeg4 │ │ │ │ ├── mpeg4adv │ │ │ │ ├── mpeg4nr │ │ │ │ ├── mpeg4thread │ │ │ │ ├── msmpeg4 │ │ │ │ ├── msmpeg4v2 │ │ │ │ ├── msvideo1 │ │ │ │ ├── qtrle │ │ │ │ ├── qtrlegray │ │ │ │ ├── rc │ │ │ │ ├── rgb │ │ │ │ ├── roq │ │ │ │ ├── rv10 │ │ │ │ ├── rv20 │ │ │ │ ├── snow │ │ │ │ ├── snowll │ │ │ │ ├── svq1 │ │ │ │ ├── vref │ │ │ │ ├── wmv1 │ │ │ │ ├── wmv2 │ │ │ │ └── yuv │ │ │ └── vsynth2 │ │ │ │ ├── asv1 │ │ │ │ ├── asv2 │ │ │ │ ├── dnxhd_1080i │ │ │ │ ├── dnxhd_720p │ │ │ │ ├── dnxhd_720p_rd │ │ │ │ ├── dv │ │ │ │ ├── dv50 │ │ │ │ ├── error │ │ │ │ ├── ffv1 │ │ │ │ ├── flashsv │ │ │ │ ├── flashsv2 │ │ │ │ ├── flv │ │ │ │ ├── h261 │ │ │ │ ├── h263 │ │ │ │ ├── h263p │ │ │ │ ├── huffyuv │ │ │ │ ├── jpegls │ │ │ │ ├── ljpeg │ │ │ │ ├── mjpeg │ │ │ │ ├── mpeg │ │ │ │ ├── mpeg1b │ │ │ │ ├── mpeg2 │ │ │ │ ├── mpeg2thread │ │ │ │ ├── mpeg4 │ │ │ │ ├── mpeg4adv │ │ │ │ ├── mpeg4nr │ │ │ │ ├── mpeg4thread │ │ │ │ ├── msmpeg4 │ │ │ │ ├── msmpeg4v2 │ │ │ │ ├── msvideo1 │ │ │ │ ├── qtrle │ │ │ │ ├── qtrlegray │ │ │ │ ├── rc │ │ │ │ ├── rgb │ │ │ │ ├── roq │ │ │ │ ├── rv10 │ │ │ │ ├── rv20 │ │ │ │ ├── snow │ │ │ │ ├── snowll │ │ │ │ ├── svq1 │ │ │ │ ├── vref │ │ │ │ ├── wmv1 │ │ │ │ ├── wmv2 │ │ │ │ └── yuv │ │ ├── regression-funcs.sh │ │ ├── rotozoom.c │ │ ├── seek_test.c │ │ ├── tiny_psnr.c │ │ └── videogen.c │ ├── tools │ │ ├── clean-diff │ │ ├── cws2fws.c │ │ ├── graph2dot.c │ │ ├── lavfi-showfiltfmts.c │ │ ├── patcheck │ │ ├── pktdumper.c │ │ ├── probetest.c │ │ ├── qt-faststart.c │ │ ├── trasher.c │ │ └── unwrap-diff │ └── version.sh ├── libffplaycore │ ├── Android.mk │ ├── adecoder.cpp │ ├── adecoder.h │ ├── audio.h │ ├── audioresample.cpp │ ├── audioresample.h │ ├── baseaudiorender.cpp │ ├── baseaudiorender.h │ ├── basedecoder.cpp │ ├── basedecoder.h │ ├── baseplayer.cpp │ ├── baseplayer.h │ ├── common.h │ ├── cpu.cpp │ ├── cpu.h │ ├── decoder_impl.cpp │ ├── decoder_impl.h │ ├── demux.cpp │ ├── demux.h │ ├── err.h │ ├── ffmpeg.h │ ├── iaudiorender.h │ ├── ivideorender.h │ ├── masterclock.cpp │ ├── masterclock.h │ ├── packetList.cpp │ ├── packetList.h │ ├── playcore.cpp │ ├── playcore.h │ ├── timeshift.cpp │ ├── timeshift.h │ ├── timeshiftbase.h │ ├── vdecoder.cpp │ └── vdecoder.h ├── libutils │ ├── Android.mk │ ├── CMakeLists.txt │ ├── config │ │ └── stl_config.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── crc.txt │ │ ├── md5.txt │ │ ├── test_crc32.cpp │ │ ├── test_fsinfo.cpp │ │ ├── test_md5.cpp │ │ └── test_timer.cpp │ ├── util_argument.cpp │ ├── util_argument.h │ ├── util_cmdline.cpp │ ├── util_cmdline.h │ ├── util_crc32.cpp │ ├── util_crc32.cpp_bak │ ├── util_crc32.h │ ├── util_crc32.h_bak │ ├── util_disk.cpp │ ├── util_disk.h │ ├── util_eventloop.cpp │ ├── util_eventloop.h │ ├── util_file.cpp │ ├── util_file.h │ ├── util_folder.cpp │ ├── util_folder.h │ ├── util_format.cpp │ ├── util_format.h │ ├── util_fsinfo.cpp │ ├── util_fsinfo.h │ ├── util_lock.cpp │ ├── util_lock.h │ ├── util_log.cpp │ ├── util_log.h │ ├── util_log4cpp.cpp │ ├── util_log4cpp.h │ ├── util_log_android.cpp │ ├── util_log_android.h │ ├── util_log_v1.cpp │ ├── util_log_v1.h │ ├── util_log_v2.cpp │ ├── util_log_v2.h │ ├── util_md5sum.cpp │ ├── util_md5sum.h │ ├── util_network.cpp │ ├── util_network.h │ ├── util_ringbuffer.cpp │ ├── util_ringbuffer.h │ ├── util_thread.cpp │ ├── util_thread.h │ ├── util_time.cpp │ ├── util_time.h │ ├── util_timer.cpp │ ├── util_timer.h │ ├── util_types.h │ ├── util_uri.cpp │ ├── util_uri.h │ └── utils.h ├── libyuv │ ├── AUTHORS │ ├── Android.mk │ ├── DEPS │ ├── LICENSE │ ├── PATENTS │ ├── README.chromium │ ├── codereview.settings │ ├── include │ │ ├── libyuv.h │ │ └── libyuv │ │ │ ├── basic_types.h │ │ │ ├── compare.h │ │ │ ├── convert.h │ │ │ ├── convert_argb.h │ │ │ ├── convert_from.h │ │ │ ├── convert_from_argb.h │ │ │ ├── cpu_id.h │ │ │ ├── format_conversion.h │ │ │ ├── mjpeg_decoder.h │ │ │ ├── planar_functions.h │ │ │ ├── rotate.h │ │ │ ├── rotate_argb.h │ │ │ ├── row.h │ │ │ ├── scale.h │ │ │ ├── scale_argb.h │ │ │ ├── version.h │ │ │ └── video_common.h │ ├── libyuv.gyp │ ├── libyuv_test.gyp │ ├── public.mk │ ├── source │ │ ├── compare.cc │ │ ├── compare_common.cc │ │ ├── compare_neon.cc │ │ ├── compare_posix.cc │ │ ├── compare_win.cc │ │ ├── convert.cc │ │ ├── convert_argb.cc │ │ ├── convert_from.cc │ │ ├── convert_from_argb.cc │ │ ├── cpu_id.cc │ │ ├── format_conversion.cc │ │ ├── mjpeg_decoder.cc │ │ ├── planar_functions.cc │ │ ├── rotate.cc │ │ ├── rotate_argb.cc │ │ ├── rotate_neon.cc │ │ ├── row_common.cc │ │ ├── row_mips.cc │ │ ├── row_neon.cc │ │ ├── row_posix.cc │ │ ├── row_win.cc │ │ ├── row_x86.asm │ │ ├── scale.cc │ │ ├── scale_argb.cc │ │ ├── scale_mips.cc │ │ ├── scale_neon.cc │ │ ├── video_common.cc │ │ └── x86inc.asm │ ├── unit_test │ │ ├── compare_test.cc │ │ ├── convert_test.cc │ │ ├── cpu_test.cc │ │ ├── planar_test.cc │ │ ├── rotate_argb_test.cc │ │ ├── rotate_test.cc │ │ ├── scale_argb_test.cc │ │ ├── scale_test.cc │ │ ├── testdata │ │ │ ├── arm_v7.txt │ │ │ └── tegra3.txt │ │ ├── unit_test.cc │ │ ├── unit_test.h │ │ └── version_test.cc │ └── util │ │ └── compare.cc ├── ustl-1.0 │ ├── Android.mk │ ├── bktrace.cpp │ ├── bktrace.h │ ├── bsconf.h │ ├── cmemlink.cpp │ ├── cmemlink.h │ ├── config.h │ ├── fstream.cpp │ ├── fstream.h │ ├── memblock.cpp │ ├── memblock.h │ ├── memlink.cpp │ ├── memlink.h │ ├── mistream.cpp │ ├── mistream.h │ ├── mostream.h │ ├── ofstream.cpp │ ├── ofstream.h │ ├── simd.h │ ├── sistream.cpp │ ├── sistream.h │ ├── sostream.cpp │ ├── sostream.h │ ├── strmsize.h │ ├── ualgo.h │ ├── ualgobase.cpp │ ├── ualgobase.h │ ├── uassert.h │ ├── ubitset.cpp │ ├── ubitset.h │ ├── uctralgo.h │ ├── uctrstrm.h │ ├── uexception.cpp │ ├── uexception.h │ ├── ufunction.h │ ├── uheap.h │ ├── uios.h │ ├── uiosfunc.h │ ├── uiterator.h │ ├── ulaalgo.h │ ├── ulimits.h │ ├── ulist.h │ ├── umap.h │ ├── umatrix.h │ ├── umemory.h │ ├── umultimap.h │ ├── umultiset.h │ ├── unew.cpp │ ├── unew.h │ ├── unumeric.h │ ├── upair.h │ ├── upredalgo.h │ ├── uqueue.h │ ├── uset.h │ ├── uspecial.h │ ├── ustack.h │ ├── ustdxept.cpp │ ├── ustdxept.h │ ├── ustl.tbff │ ├── ustring.cpp │ ├── ustring.h │ ├── utf8.h │ ├── utuple.h │ ├── utypes.h │ ├── uutility.h │ └── uvector.h └── yuv2rgb │ ├── Android.mk │ ├── include │ └── yuv2rgb.h │ └── src │ ├── COPYING │ ├── README │ ├── out.yuv │ ├── test.c │ ├── yuv2rgb16tab.c │ ├── yuv2rgb555.s │ ├── yuv2rgbX.s │ ├── yuv420rgb565.s │ ├── yuv420rgb565c.c │ ├── yuv420rgb888.s │ ├── yuv420rgb8888.s │ ├── yuv420rgb8888c.c │ ├── yuv420rgb888c.c │ ├── yuv422rgb565.s │ ├── yuv422rgb565c.c │ ├── yuv422rgb888.s │ ├── yuv422rgb8888.s │ ├── yuv422rgb8888c.c │ ├── yuv422rgb888c.c │ ├── yuv444rgb565.s │ ├── yuv444rgb565c.c │ ├── yuv444rgb888.s │ ├── yuv444rgb8888.s │ ├── yuv444rgb8888c.c │ └── yuv444rgb888c.c ├── libs └── armeabi │ ├── libffmpeg_armv5.so │ ├── libffmpeg_armv6_vfp.so │ ├── libffmpeg_armv7_neon.so │ ├── libffpcore.so │ ├── libffplay-14-jni.so │ ├── libffplay-16-jni.so │ ├── libffplay-18-jni.so │ ├── libffplay-4-jni.so │ ├── libffplay-8-jni.so │ └── libffplay-9-jni.so ├── readme ├── res ├── drawable │ ├── file_48.png │ ├── folder_48.png │ ├── icon.png │ ├── pause.png │ └── play.png ├── layout │ ├── ffplay_file_explorer.xml │ ├── ffplay_file_row.xml │ └── main.xml └── values │ ├── attrs.xml │ ├── color.xml │ └── strings.xml └── src └── com └── pbi ├── live ├── FFPlayFileExplorer.java ├── FileExplorerAdapter.java ├── VideoPlayerActivity.java └── VideoView.java └── player └── LivePlayer.java /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/README.md -------------------------------------------------------------------------------- /default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/default.properties -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := armeabi -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/lastlog.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/memory.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/net/if_arp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/net/if_packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/net/route.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/netpacket/packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/sys/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/sys/statfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/sys/syslimits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/sys/ttychars.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/sys/ttydev.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-14/bionic/libc/include/wctype.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-14/libOpenSLES.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-14/libOpenSLES.so -------------------------------------------------------------------------------- /jni/include/aosp-14/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-14/libcutils.so -------------------------------------------------------------------------------- /jni/include/aosp-14/libgui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-14/libgui.so -------------------------------------------------------------------------------- /jni/include/aosp-14/libmedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-14/libmedia.so -------------------------------------------------------------------------------- /jni/include/aosp-14/libskia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-14/libskia.so -------------------------------------------------------------------------------- /jni/include/aosp-14/libui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-14/libui.so -------------------------------------------------------------------------------- /jni/include/aosp-14/libutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-14/libutils.so -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/lastlog.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/memory.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/net/if_arp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/net/if_packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/net/route.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/netpacket/packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/sys/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/sys/statfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/sys/syslimits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/sys/ttychars.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/sys/ttydev.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-16/bionic/libc/include/wctype.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-16/libOpenSLES.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-16/libOpenSLES.so -------------------------------------------------------------------------------- /jni/include/aosp-16/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-16/libcutils.so -------------------------------------------------------------------------------- /jni/include/aosp-16/libgui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-16/libgui.so -------------------------------------------------------------------------------- /jni/include/aosp-16/libmedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-16/libmedia.so -------------------------------------------------------------------------------- /jni/include/aosp-16/libnativehelper/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-16/libskia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-16/libskia.so -------------------------------------------------------------------------------- /jni/include/aosp-16/libui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-16/libui.so -------------------------------------------------------------------------------- /jni/include/aosp-16/libutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-16/libutils.so -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/lastlog.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/memory.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/net/if_packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/net/route.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/netpacket/packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/sys/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/sys/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/sys/statfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/sys/syslimits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/sys/ttychars.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/sys/ttydev.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-18/bionic/libc/include/wctype.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/frameworks/native/opengl/include/MODULE_LICENSE_MIT: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-18/hardware/libhardware/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-18/hardware/libhardware/tests/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /jni/include/aosp-18/libOpenSLES.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-18/libOpenSLES.so -------------------------------------------------------------------------------- /jni/include/aosp-18/libandroid.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-18/libandroid.so -------------------------------------------------------------------------------- /jni/include/aosp-18/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-18/libcutils.so -------------------------------------------------------------------------------- /jni/include/aosp-18/libgui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-18/libgui.so -------------------------------------------------------------------------------- /jni/include/aosp-18/libmedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-18/libmedia.so -------------------------------------------------------------------------------- /jni/include/aosp-18/libnativehelper/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-18/libskia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-18/libskia.so -------------------------------------------------------------------------------- /jni/include/aosp-18/libui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-18/libui.so -------------------------------------------------------------------------------- /jni/include/aosp-18/libutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-18/libutils.so -------------------------------------------------------------------------------- /jni/include/aosp-4/libcorecg.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-4/libcorecg.so -------------------------------------------------------------------------------- /jni/include/aosp-4/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-4/libcutils.so -------------------------------------------------------------------------------- /jni/include/aosp-4/libmedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-4/libmedia.so -------------------------------------------------------------------------------- /jni/include/aosp-4/libsgl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-4/libsgl.so -------------------------------------------------------------------------------- /jni/include/aosp-4/libui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-4/libui.so -------------------------------------------------------------------------------- /jni/include/aosp-4/libutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-4/libutils.so -------------------------------------------------------------------------------- /jni/include/aosp-8/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-8/libcutils.so -------------------------------------------------------------------------------- /jni/include/aosp-8/libmedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-8/libmedia.so -------------------------------------------------------------------------------- /jni/include/aosp-8/libskia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-8/libskia.so -------------------------------------------------------------------------------- /jni/include/aosp-8/libui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-8/libui.so -------------------------------------------------------------------------------- /jni/include/aosp-8/libutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-8/libutils.so -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/lastlog.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/memory.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/net/if_arp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/net/if_packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/net/route.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/netpacket/packet.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/sys/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/sys/statfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/sys/syslimits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/sys/ttychars.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/sys/ttydev.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/util.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-9/bionic/libc/include/wctype.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /jni/include/aosp-9/dalvik/libnativehelper/MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/include/aosp-9/libOpenSLES.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-9/libOpenSLES.so -------------------------------------------------------------------------------- /jni/include/aosp-9/libcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-9/libcutils.so -------------------------------------------------------------------------------- /jni/include/aosp-9/libmedia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-9/libmedia.so -------------------------------------------------------------------------------- /jni/include/aosp-9/libskia.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-9/libskia.so -------------------------------------------------------------------------------- /jni/include/aosp-9/libui.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-9/libui.so -------------------------------------------------------------------------------- /jni/include/aosp-9/libutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/include/aosp-9/libutils.so -------------------------------------------------------------------------------- /jni/include/aosp-9/system/media/opensles/tools/hashgen/part4.c: -------------------------------------------------------------------------------- 1 | static const signed char hash_to_MPH[] = { 2 | -------------------------------------------------------------------------------- /jni/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/jni/Android.mk -------------------------------------------------------------------------------- /jni/jni/android_liveplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/jni/android_liveplayer.cpp -------------------------------------------------------------------------------- /jni/jni/android_liveplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/jni/android_liveplayer.h -------------------------------------------------------------------------------- /jni/jni/android_stub_render.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/jni/android_stub_render.cpp -------------------------------------------------------------------------------- /jni/jni/android_stub_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/jni/android_stub_render.h -------------------------------------------------------------------------------- /jni/jni/liveplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/jni/liveplayer.cpp -------------------------------------------------------------------------------- /jni/jni/readme.txt: -------------------------------------------------------------------------------- 1 | It's liveplayer jni. 2 | -------------------------------------------------------------------------------- /jni/libcpuinfo/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libcpuinfo/Android.mk -------------------------------------------------------------------------------- /jni/libcpuinfo/cpu-features.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libcpuinfo/cpu-features.c -------------------------------------------------------------------------------- /jni/libcpuinfo/cpu-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libcpuinfo/cpu-features.h -------------------------------------------------------------------------------- /jni/libffmpeg/.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jni/libffmpeg/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/Android.mk -------------------------------------------------------------------------------- /jni/libffmpeg/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/COPYING.GPLv2 -------------------------------------------------------------------------------- /jni/libffmpeg/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/COPYING.GPLv3 -------------------------------------------------------------------------------- /jni/libffmpeg/COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /jni/libffmpeg/COPYING.LGPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/COPYING.LGPLv3 -------------------------------------------------------------------------------- /jni/libffmpeg/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/CREDITS -------------------------------------------------------------------------------- /jni/libffmpeg/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/Doxyfile -------------------------------------------------------------------------------- /jni/libffmpeg/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/INSTALL -------------------------------------------------------------------------------- /jni/libffmpeg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/LICENSE -------------------------------------------------------------------------------- /jni/libffmpeg/MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/MAINTAINERS -------------------------------------------------------------------------------- /jni/libffmpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/Makefile -------------------------------------------------------------------------------- /jni/libffmpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/README -------------------------------------------------------------------------------- /jni/libffmpeg/RELEASE: -------------------------------------------------------------------------------- 1 | 0.7.4 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/VERSION: -------------------------------------------------------------------------------- 1 | 0.7.4 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/av.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/av.mk -------------------------------------------------------------------------------- /jni/libffmpeg/cmdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/cmdutils.c -------------------------------------------------------------------------------- /jni/libffmpeg/cmdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/cmdutils.h -------------------------------------------------------------------------------- /jni/libffmpeg/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/common.mak -------------------------------------------------------------------------------- /jni/libffmpeg/config.fate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/config.fate -------------------------------------------------------------------------------- /jni/libffmpeg/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/config.h -------------------------------------------------------------------------------- /jni/libffmpeg/config.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/config.log -------------------------------------------------------------------------------- /jni/libffmpeg/config.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/config.mak -------------------------------------------------------------------------------- /jni/libffmpeg/config_armv5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/config_armv5.h -------------------------------------------------------------------------------- /jni/libffmpeg/config_armv6_vfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/config_armv6_vfp.h -------------------------------------------------------------------------------- /jni/libffmpeg/config_armv7_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/config_armv7_neon.h -------------------------------------------------------------------------------- /jni/libffmpeg/config_armv7_vfpv3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/config_armv7_vfpv3.h -------------------------------------------------------------------------------- /jni/libffmpeg/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/configure -------------------------------------------------------------------------------- /jni/libffmpeg/doc/APIchanges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/APIchanges -------------------------------------------------------------------------------- /jni/libffmpeg/doc/RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/RELEASE_NOTES -------------------------------------------------------------------------------- /jni/libffmpeg/doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/TODO -------------------------------------------------------------------------------- /jni/libffmpeg/doc/avutil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/avutil.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/build_system.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/build_system.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/decoders.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/decoders.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/demuxers.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/demuxers.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/developer.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/developer.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/encoders.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/encoders.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/eval.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/eval.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/faq.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/faq.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/fate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/fate.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/ffmpeg.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/ffmpeg.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/ffplay.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/ffplay.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/ffprobe.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/ffprobe.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/ffserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/ffserver.conf -------------------------------------------------------------------------------- /jni/libffmpeg/doc/ffserver.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/ffserver.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/filters.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/filters.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/general.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/general.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/git-howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/git-howto.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/indevs.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/indevs.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/libavfilter.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/libavfilter.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/metadata.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/metadata.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/muxers.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/muxers.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/optimization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/optimization.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/outdevs.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/outdevs.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/protocols.texi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/protocols.texi -------------------------------------------------------------------------------- /jni/libffmpeg/doc/snow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/snow.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/soc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/soc.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/swscale.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/swscale.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/t2h.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/t2h.init -------------------------------------------------------------------------------- /jni/libffmpeg/doc/tablegen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/tablegen.txt -------------------------------------------------------------------------------- /jni/libffmpeg/doc/texi2pod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/texi2pod.pl -------------------------------------------------------------------------------- /jni/libffmpeg/doc/viterbi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/doc/viterbi.txt -------------------------------------------------------------------------------- /jni/libffmpeg/ffmpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/ffmpeg.c -------------------------------------------------------------------------------- /jni/libffmpeg/ffplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/ffplay.c -------------------------------------------------------------------------------- /jni/libffmpeg/ffprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/ffprobe.c -------------------------------------------------------------------------------- /jni/libffmpeg/ffserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/ffserver.c -------------------------------------------------------------------------------- /jni/libffmpeg/ffserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/ffserver.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/4xm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/4xm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/8bps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/8bps.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/8svx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/8svx.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/Makefile -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/a64enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/a64enc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aac.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacenc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacps.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacps.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacpsy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacpsy.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacpsy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacpsy.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacsbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacsbr.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aacsbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aacsbr.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aactab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aactab.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aactab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aactab.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aasc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aasc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3dec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3dec.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3dsp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3dsp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3enc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3enc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3tab.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ac3tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ac3tab.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/adpcm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/adx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/adx.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/adxdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/adxdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/adxenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/adxenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/alac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/alac.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/alacenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/alacenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/alsdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/alsdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/amr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/amr.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/anm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/anm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ansi.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/apedec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/apedec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/arm/aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/arm/aac.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/arm/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/arm/asm.S -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/arm/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/arm/vp8.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ass.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ass.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/assdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/assdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/assenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/assenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/asv1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/asv1.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/atrac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/atrac.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/atrac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/atrac.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/atrac1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/atrac1.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/atrac3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/atrac3.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/aura.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/aura.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/avcodec.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/avfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/avfft.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/avfft.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/avs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/avs.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/bfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/bfi.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/bgmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/bgmc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/bgmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/bgmc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/bink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/bink.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/bmp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/bmp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/bmpenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/bmpenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/c93.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/c93.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cabac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cabac.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cabac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cabac.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cavs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cavs.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cavs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cavs.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cavsdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cavsdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cavsdsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cavsdsp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cavsdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cavsdsp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cinepak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cinepak.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cljr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cljr.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cook.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cscd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cscd.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/cyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/cyuv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dca.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dca.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dcadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dcadata.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dcadsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dcadsp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dcadsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dcadsp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dcaenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dcaenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dcaenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dcaenc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dcahuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dcahuff.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dct.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dct.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dct32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dct32.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dct32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dct32.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dctref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dctref.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dctref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dctref.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dfa.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dirac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dirac.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dirac.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dpcm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dpx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dpx.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dpxenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dpxenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dsputil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dsputil.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dsputil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dsputil.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dvbsub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dvbsub.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dvdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dvdata.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dvdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dvdata.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dwt.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dwt.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dxa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dxa.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dxva2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dxva2.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/dxva2.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eac3dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eac3dec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eac3enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eac3enc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eac3enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eac3enc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eacmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eacmv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eaidct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eaidct.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eamad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eamad.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eatgq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eatgq.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eatgv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eatgv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/eatqi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/eatqi.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/elbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/elbg.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/elbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/elbg.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/faandct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/faandct.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/faandct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/faandct.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/fft.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/fft.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ffv1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ffv1.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/flac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/flac.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/flac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/flac.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/flacdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/flacdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/flacenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/flacenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/flashsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/flashsv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/flv.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/flvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/flvdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/flvenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/flvenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/fraps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/fraps.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/frwu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/frwu.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/g722.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/g722.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/g726.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/g726.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/g729dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/g729dec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/gif.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/gifdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/gifdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/golomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/golomb.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/golomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/golomb.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/gsmdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/gsmdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h261.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h261.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h261.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h261.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h261dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h261dec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h261enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h261enc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h263.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h263.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h263.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h263.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h263dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h263dec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h264.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h264.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h264.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h264_ps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h264_ps.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h264dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h264dsp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/h264dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/h264dsp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/huffman.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/huffman.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/huffyuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/huffyuv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/iff.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/imc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/imc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/imcdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/imcdata.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/indeo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/indeo2.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/indeo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/indeo3.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/indeo5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/indeo5.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/intrax8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/intrax8.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/intrax8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/intrax8.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/inverse.c: -------------------------------------------------------------------------------- 1 | #include "libavutil/inverse.c" 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ivi_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ivi_dsp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ivi_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ivi_dsp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/j2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/j2k.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/j2k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/j2k.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/j2k_dwt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/j2k_dwt.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/j2k_dwt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/j2k_dwt.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/j2kdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/j2kdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/j2kenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/j2kenc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/jpegls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/jpegls.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/jpegls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/jpegls.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/jrevdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/jrevdct.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/jvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/jvdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/kbdwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/kbdwin.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/kbdwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/kbdwin.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/kmvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/kmvc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/lcl.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/loco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/loco.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/lpc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/lpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/lpc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/lsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/lsp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/lsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/lsp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/lzw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/lzw.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/lzw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/lzw.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mace.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mdct.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mdec.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mlp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mlp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mlp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mpc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mpc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mpc7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mpc7.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mpc8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mpc8.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mqc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mqc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/mqc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/mqc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/nuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/nuv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/opt.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/opt.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/pcm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/pcx.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/png.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/png.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/pnm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/pnm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/pnm.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ptx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ptx.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/qdm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/qdm2.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/qdrw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/qdrw.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/qpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/qpeg.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/raw.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/raw.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rdft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rdft.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rdft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rdft.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rl.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rl2.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rle.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rle.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rpza.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rpza.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rv10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rv10.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rv30.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rv30.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rv34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rv34.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rv34.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rv34.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/rv40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/rv40.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/s3tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/s3tc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/s3tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/s3tc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/sbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/sbr.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/sgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/sgi.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/sipr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/sipr.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/sipr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/sipr.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/smc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/smc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/snow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/snow.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/snow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/snow.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/sp5x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/sp5x.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/svq1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/svq1.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/svq1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/svq1.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/svq3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/svq3.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/tiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/tiff.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/tiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/tiff.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/tmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/tmv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/tscc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/tscc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/tta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/tta.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/txd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/txd.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/ulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/ulti.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vb.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vc1.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vc1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vc1.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vcr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vcr1.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vmnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vmnc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vp3.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vp5.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vp56.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vp56.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vp56.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vp56.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vp6.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vp8.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/vp8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/vp8.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/wma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/wma.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/wma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/wma.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/wmv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/wmv2.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/wmv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/wmv2.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/wnv1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/wnv1.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/xan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/xan.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/xiph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/xiph.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/xiph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/xiph.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/xl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/xl.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/xvmc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/xxan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/xxan.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/yop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/yop.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavcodec/zmbv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavcodec/zmbv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavdevice/sdl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavdevice/sdl.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavdevice/v4l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavdevice/v4l.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavfilter/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/4xm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/4xm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/a64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/a64.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/aea.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/aea.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/amr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/amr.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/anm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/anm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/apc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/apc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/ape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/ape.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/asf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/asf.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/asf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/asf.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/au.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/au.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/avc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/avc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/avc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/avc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/avi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/avi.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/avi.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/avs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/avs.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/bfi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/bfi.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/c93.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/c93.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/caf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/caf.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/caf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/caf.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/cdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/cdg.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/dfa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/dfa.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/dv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/dv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/dv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/dv.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/dxa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/dxa.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/ffm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/ffm.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/flv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/flv.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/gif.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/gxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/gxf.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/gxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/gxf.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/iff.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/iss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/iss.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/iv8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/iv8.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mmf.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mms.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mms.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mov.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mpc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mtv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mtv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mvi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mvi.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mxf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mxf.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mxf.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/mxg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/mxg.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/nut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/nut.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/nut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/nut.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/nuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/nuv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/oma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/oma.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/pcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/pcm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/pcm.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/pva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/pva.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/qcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/qcp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/r3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/r3d.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rdt.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rdt.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rl2.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rm.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rm.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rpl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rpl.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rso.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rso.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rso.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rtp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/rtp.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/sdp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/sol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/sol.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/sox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/sox.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/swf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/swf.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/tcp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/thp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/thp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/tmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/tmv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/tta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/tta.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/tty.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/txd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/txd.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/udp.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/url.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/voc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/voc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/voc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/vqf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/vqf.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/wav.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/wtv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/wtv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/wtv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/wtv.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/wv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/wv.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/xa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/xa.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavformat/yop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavformat/yop.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/aes.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/aes.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/bswap.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/cpu.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/cpu.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/crc.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/crc.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/des.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/des.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/dict.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/dict.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/error.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/error.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/eval.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/eval.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/fifo.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/fifo.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/file.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/file.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/lfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/lfg.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/lfg.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/libm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/libm.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/lls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/lls.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/lls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/lls.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/log.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/log.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/lzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/lzo.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/lzo.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/md5.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/md5.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/mem.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/mem.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/opt.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/opt.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/pca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/pca.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/pca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/pca.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/rc4.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/rc4.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/sha.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/sha.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/sha1.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/timer.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/tree.c -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/tree.h -------------------------------------------------------------------------------- /jni/libffmpeg/libavutil/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/libavutil/utils.c -------------------------------------------------------------------------------- /jni/libffmpeg/libpostproc/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/libswscale/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/mt-work/email.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/mt-work/email.sh -------------------------------------------------------------------------------- /jni/libffmpeg/mt-work/raw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/mt-work/raw.sh -------------------------------------------------------------------------------- /jni/libffmpeg/mt-work/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/mt-work/test.sh -------------------------------------------------------------------------------- /jni/libffmpeg/mt-work/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/mt-work/todo.txt -------------------------------------------------------------------------------- /jni/libffmpeg/mt-work/yuvcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/mt-work/yuvcmp.c -------------------------------------------------------------------------------- /jni/libffmpeg/settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/settings.c -------------------------------------------------------------------------------- /jni/libffmpeg/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/settings.h -------------------------------------------------------------------------------- /jni/libffmpeg/subdir.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/subdir.mak -------------------------------------------------------------------------------- /jni/libffmpeg/tests/audiogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/audiogen.c -------------------------------------------------------------------------------- /jni/libffmpeg/tests/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/base64.c -------------------------------------------------------------------------------- /jni/libffmpeg/tests/fate-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/fate-run.sh -------------------------------------------------------------------------------- /jni/libffmpeg/tests/fate.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/fate.mak -------------------------------------------------------------------------------- /jni/libffmpeg/tests/fate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/fate.sh -------------------------------------------------------------------------------- /jni/libffmpeg/tests/fate2.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/fate2.mak -------------------------------------------------------------------------------- /jni/libffmpeg/tests/lena.pnm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/lena.pnm -------------------------------------------------------------------------------- /jni/libffmpeg/tests/md5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/md5.sh -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/aac-demux: -------------------------------------------------------------------------------- 1 | CRC=0xbda37454 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/adpcm-ea-r2: -------------------------------------------------------------------------------- 1 | CRC=0xa1158634 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/adpcm-ea-r3: -------------------------------------------------------------------------------- 1 | CRC=0x9ea2507f 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/aea-demux: -------------------------------------------------------------------------------- 1 | CRC=0xc1312082 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/bink-demux: -------------------------------------------------------------------------------- 1 | CRC=0x839f34e6 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/caf: -------------------------------------------------------------------------------- 1 | CRC=0x5b74195c 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/creative-adpcm: -------------------------------------------------------------------------------- 1 | 66004779a5e51ca659b21a4197e019e6 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/creative-adpcm-8-2.6bit: -------------------------------------------------------------------------------- 1 | dee4417597abc2db70a175d6809870e7 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/creative-adpcm-8-2bit: -------------------------------------------------------------------------------- 1 | 832846066fbce28821b7f0717c4d3a90 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/creative-adpcm-8-4bit: -------------------------------------------------------------------------------- 1 | 1813d196cef83f7030bb150399b2903e 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/cryo-apc: -------------------------------------------------------------------------------- 1 | 6dcee91d3364f389f804da7a25934b36 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/dpx: -------------------------------------------------------------------------------- 1 | 0, 0, 2359296, 0x30d4d24f 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/duck-dk3: -------------------------------------------------------------------------------- 1 | 62fbe4db4a49cb044f57f92cce9993c5 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/duck-dk4: -------------------------------------------------------------------------------- 1 | 5234b53dde4961dd715a2524d6a8eb75 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/ea-cdata: -------------------------------------------------------------------------------- 1 | db441b7f9c8767ee675002763cd3ae46 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/fax-g3: -------------------------------------------------------------------------------- 1 | 0, 0, 1000384, 0xb758eb8b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/fax-g3s: -------------------------------------------------------------------------------- 1 | 0, 0, 1000384, 0xb758eb8b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/fraps-v1: -------------------------------------------------------------------------------- 1 | 0, 0, 230400, 0x6bc891ff 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/funcom-iss: -------------------------------------------------------------------------------- 1 | 816ca37c22e42f488fd787e3155e59ff 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/idroq-video-encode: -------------------------------------------------------------------------------- 1 | 75df9ce475c1b185fc3dbc219596edd3 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/iff-byterun1: -------------------------------------------------------------------------------- 1 | 0, 0, 230400, 0x35e51c62 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/iff-fibonacci: -------------------------------------------------------------------------------- 1 | e76b025238a6a27968f8644f4ccc3207 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/iff-ilbm: -------------------------------------------------------------------------------- 1 | 0, 0, 230400, 0x0929e342 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/iff-pcm: -------------------------------------------------------------------------------- 1 | 6dc1329541393525a60fd6b9782573f5 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/lossless-appleaudio: -------------------------------------------------------------------------------- 1 | d0beb768d860b4776358077dd9fcb1e9 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/lossless-meridianaudio: -------------------------------------------------------------------------------- 1 | b3d0c9523c42fae639f7074e60281509 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/lossless-monkeysaudio: -------------------------------------------------------------------------------- 1 | a28d4e5f2192057f7d4bece870f40bd0 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/lossless-shortenaudio: -------------------------------------------------------------------------------- 1 | 9949141c405524f37ef1058b1ef4114b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/lossless-tta: -------------------------------------------------------------------------------- 1 | CRC=0xb2b8b6d9 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/lossless-wavpackaudio: -------------------------------------------------------------------------------- 1 | 97223f65c91213694a660d52f87f35aa 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/maxis-xa: -------------------------------------------------------------------------------- 1 | b4cd52fc080bffefeea94ce7c116046f 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mpc7-demux: -------------------------------------------------------------------------------- 1 | CRC=0xdeb152dd 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mpc8-demux: -------------------------------------------------------------------------------- 1 | CRC=0x5cdeaf0c 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mpeg4-als-conformance-00: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mpeg4-als-conformance-01: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mpeg4-als-conformance-02: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mpeg4-als-conformance-03: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mpeg4-als-conformance-04: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mpeg4-als-conformance-05: -------------------------------------------------------------------------------- 1 | CRC=0x7e67db0b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/mszh: -------------------------------------------------------------------------------- 1 | 0, 0, 253440, 0x94af61e5 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/oma-demux: -------------------------------------------------------------------------------- 1 | CRC=0xdd181a1c 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/pictor: -------------------------------------------------------------------------------- 1 | 0, 0, 192816, 0xf97e2ba1 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/ptx: -------------------------------------------------------------------------------- 1 | 0, 0, 393216, 0xda280efc 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qcp-demux: -------------------------------------------------------------------------------- 1 | CRC=0x4f9f567a 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-alaw-mono: -------------------------------------------------------------------------------- 1 | 7257c296fbba7eedf688fcb667144f7b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-alaw-stereo: -------------------------------------------------------------------------------- 1 | 011d4aecaee697cc861012b7c25b5d40 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-ima4-mono: -------------------------------------------------------------------------------- 1 | e178ed520edf2f46492ae740d88f5815 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-ima4-stereo: -------------------------------------------------------------------------------- 1 | d22be0e193dcbba1068a1ca6ab04cf77 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-mac3-mono: -------------------------------------------------------------------------------- 1 | 728d89210e1c90a9185db729b0b6e8c0 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-mac3-stereo: -------------------------------------------------------------------------------- 1 | 2eef3c68fce3d18ec757bcbc0d369698 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-mac6-mono: -------------------------------------------------------------------------------- 1 | eec238d2737365fba15da813e5a7fbc9 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-mac6-stereo: -------------------------------------------------------------------------------- 1 | 2716d66016d8230bcc0fe90586da97a9 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-msadpcm-stereo: -------------------------------------------------------------------------------- 1 | 3b7554e9a186c30adfd2a86bae950f4a 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-msimaadpcm-stereo: -------------------------------------------------------------------------------- 1 | 1ee96f1efc09251a732621049dc5b66e 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-rawpcm-16bit-stereo-signed-be: -------------------------------------------------------------------------------- 1 | f0c0fd7615cdef66fa72f5816632ca9b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-rawpcm-16bit-stereo-signed-le: -------------------------------------------------------------------------------- 1 | 0262b20b728f5bb95594e64e2173b2f2 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-rawpcm-8bit-mono-unsigned: -------------------------------------------------------------------------------- 1 | c2dcec9b230dad733b6b877fbed36755 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-rawpcm-8bit-stereo-unsigned: -------------------------------------------------------------------------------- 1 | 973cf68365c3d58ff60ba652433b3bd2 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-ulaw-mono: -------------------------------------------------------------------------------- 1 | 63075293c68079826146963e94f45ca6 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/qt-ulaw-stereo: -------------------------------------------------------------------------------- 1 | 96316117d444b06b2aa20877f7de36fd 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/real-14_4: -------------------------------------------------------------------------------- 1 | 2da17ae831ea415592c7e6828e3fb69a 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/sierra-audio: -------------------------------------------------------------------------------- 1 | a99402e1f1a0f137608898251b3f309b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/sub-srt: -------------------------------------------------------------------------------- 1 | 03b2a3f7e7e83624c8e4d1b5569df758 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/sunraster-1bit-raw: -------------------------------------------------------------------------------- 1 | 0, 0, 32768, 0x6d16e246 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/sunraster-1bit-rle: -------------------------------------------------------------------------------- 1 | 0, 0, 32768, 0x6d16e246 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/sunraster-24bit-raw: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0xb4d417bf 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/sunraster-24bit-rle: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0xb4d417bf 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/sunraster-8bit-raw: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0xf4364008 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/sunraster-8bit-rle: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0xf4364008 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/txd-pal8: -------------------------------------------------------------------------------- 1 | 0, 0, 786432, 0x56654d61 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/v210: -------------------------------------------------------------------------------- 1 | 0, 0, 3686400, 0x75ee1dde 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/vqf-demux: -------------------------------------------------------------------------------- 1 | 48313c746da06b157711b13675f37312 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/w64: -------------------------------------------------------------------------------- 1 | CRC=0xc1e71a5c 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/westwood-aud: -------------------------------------------------------------------------------- 1 | 5c2528488729035c17c21486797a2a23 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/ws_snd: -------------------------------------------------------------------------------- 1 | 023317c7876aa5271f086f753d84561b 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/xan-dpcm: -------------------------------------------------------------------------------- 1 | b6da857766896ab10bb900004f915053 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/fate/zlib: -------------------------------------------------------------------------------- 1 | 0, 0, 253440, 0x94af61e5 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/lavf/au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/ref/lavf/au -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/lavf/rm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/ref/lavf/rm -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/lavf/ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/ref/lavf/ts -------------------------------------------------------------------------------- /jni/libffmpeg/tests/ref/lavfi/crop_scale_vflip: -------------------------------------------------------------------------------- 1 | crop_scale_vflip e88a4dfb960d0bb28ee875567bedde5d 2 | -------------------------------------------------------------------------------- /jni/libffmpeg/tests/rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/rotozoom.c -------------------------------------------------------------------------------- /jni/libffmpeg/tests/seek_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/seek_test.c -------------------------------------------------------------------------------- /jni/libffmpeg/tests/tiny_psnr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/tiny_psnr.c -------------------------------------------------------------------------------- /jni/libffmpeg/tests/videogen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tests/videogen.c -------------------------------------------------------------------------------- /jni/libffmpeg/tools/clean-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tools/clean-diff -------------------------------------------------------------------------------- /jni/libffmpeg/tools/cws2fws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tools/cws2fws.c -------------------------------------------------------------------------------- /jni/libffmpeg/tools/graph2dot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tools/graph2dot.c -------------------------------------------------------------------------------- /jni/libffmpeg/tools/patcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tools/patcheck -------------------------------------------------------------------------------- /jni/libffmpeg/tools/pktdumper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tools/pktdumper.c -------------------------------------------------------------------------------- /jni/libffmpeg/tools/probetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tools/probetest.c -------------------------------------------------------------------------------- /jni/libffmpeg/tools/trasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tools/trasher.c -------------------------------------------------------------------------------- /jni/libffmpeg/tools/unwrap-diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/tools/unwrap-diff -------------------------------------------------------------------------------- /jni/libffmpeg/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffmpeg/version.sh -------------------------------------------------------------------------------- /jni/libffplaycore/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/Android.mk -------------------------------------------------------------------------------- /jni/libffplaycore/adecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/adecoder.cpp -------------------------------------------------------------------------------- /jni/libffplaycore/adecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/adecoder.h -------------------------------------------------------------------------------- /jni/libffplaycore/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/audio.h -------------------------------------------------------------------------------- /jni/libffplaycore/basedecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/basedecoder.h -------------------------------------------------------------------------------- /jni/libffplaycore/baseplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/baseplayer.h -------------------------------------------------------------------------------- /jni/libffplaycore/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/common.h -------------------------------------------------------------------------------- /jni/libffplaycore/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/cpu.cpp -------------------------------------------------------------------------------- /jni/libffplaycore/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/cpu.h -------------------------------------------------------------------------------- /jni/libffplaycore/demux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/demux.cpp -------------------------------------------------------------------------------- /jni/libffplaycore/demux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/demux.h -------------------------------------------------------------------------------- /jni/libffplaycore/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/err.h -------------------------------------------------------------------------------- /jni/libffplaycore/ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/ffmpeg.h -------------------------------------------------------------------------------- /jni/libffplaycore/masterclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/masterclock.h -------------------------------------------------------------------------------- /jni/libffplaycore/packetList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/packetList.h -------------------------------------------------------------------------------- /jni/libffplaycore/playcore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/playcore.cpp -------------------------------------------------------------------------------- /jni/libffplaycore/playcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/playcore.h -------------------------------------------------------------------------------- /jni/libffplaycore/timeshift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/timeshift.cpp -------------------------------------------------------------------------------- /jni/libffplaycore/timeshift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/timeshift.h -------------------------------------------------------------------------------- /jni/libffplaycore/vdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/vdecoder.cpp -------------------------------------------------------------------------------- /jni/libffplaycore/vdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libffplaycore/vdecoder.h -------------------------------------------------------------------------------- /jni/libutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/Android.mk -------------------------------------------------------------------------------- /jni/libutils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/CMakeLists.txt -------------------------------------------------------------------------------- /jni/libutils/test/crc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/test/crc.txt -------------------------------------------------------------------------------- /jni/libutils/test/md5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/test/md5.txt -------------------------------------------------------------------------------- /jni/libutils/test/test_md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/test/test_md5.cpp -------------------------------------------------------------------------------- /jni/libutils/util_argument.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_argument.cpp -------------------------------------------------------------------------------- /jni/libutils/util_argument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_argument.h -------------------------------------------------------------------------------- /jni/libutils/util_cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_cmdline.cpp -------------------------------------------------------------------------------- /jni/libutils/util_cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_cmdline.h -------------------------------------------------------------------------------- /jni/libutils/util_crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_crc32.cpp -------------------------------------------------------------------------------- /jni/libutils/util_crc32.cpp_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_crc32.cpp_bak -------------------------------------------------------------------------------- /jni/libutils/util_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_crc32.h -------------------------------------------------------------------------------- /jni/libutils/util_crc32.h_bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_crc32.h_bak -------------------------------------------------------------------------------- /jni/libutils/util_disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_disk.cpp -------------------------------------------------------------------------------- /jni/libutils/util_disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_disk.h -------------------------------------------------------------------------------- /jni/libutils/util_eventloop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_eventloop.cpp -------------------------------------------------------------------------------- /jni/libutils/util_eventloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_eventloop.h -------------------------------------------------------------------------------- /jni/libutils/util_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_file.cpp -------------------------------------------------------------------------------- /jni/libutils/util_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_file.h -------------------------------------------------------------------------------- /jni/libutils/util_folder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_folder.cpp -------------------------------------------------------------------------------- /jni/libutils/util_folder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_folder.h -------------------------------------------------------------------------------- /jni/libutils/util_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_format.cpp -------------------------------------------------------------------------------- /jni/libutils/util_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_format.h -------------------------------------------------------------------------------- /jni/libutils/util_fsinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_fsinfo.cpp -------------------------------------------------------------------------------- /jni/libutils/util_fsinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_fsinfo.h -------------------------------------------------------------------------------- /jni/libutils/util_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_lock.cpp -------------------------------------------------------------------------------- /jni/libutils/util_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_lock.h -------------------------------------------------------------------------------- /jni/libutils/util_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log.cpp -------------------------------------------------------------------------------- /jni/libutils/util_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log.h -------------------------------------------------------------------------------- /jni/libutils/util_log4cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log4cpp.cpp -------------------------------------------------------------------------------- /jni/libutils/util_log4cpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log4cpp.h -------------------------------------------------------------------------------- /jni/libutils/util_log_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log_android.h -------------------------------------------------------------------------------- /jni/libutils/util_log_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log_v1.cpp -------------------------------------------------------------------------------- /jni/libutils/util_log_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log_v1.h -------------------------------------------------------------------------------- /jni/libutils/util_log_v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log_v2.cpp -------------------------------------------------------------------------------- /jni/libutils/util_log_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_log_v2.h -------------------------------------------------------------------------------- /jni/libutils/util_md5sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_md5sum.cpp -------------------------------------------------------------------------------- /jni/libutils/util_md5sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_md5sum.h -------------------------------------------------------------------------------- /jni/libutils/util_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_network.cpp -------------------------------------------------------------------------------- /jni/libutils/util_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_network.h -------------------------------------------------------------------------------- /jni/libutils/util_ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_ringbuffer.h -------------------------------------------------------------------------------- /jni/libutils/util_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_thread.cpp -------------------------------------------------------------------------------- /jni/libutils/util_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_thread.h -------------------------------------------------------------------------------- /jni/libutils/util_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_time.cpp -------------------------------------------------------------------------------- /jni/libutils/util_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_time.h -------------------------------------------------------------------------------- /jni/libutils/util_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_timer.cpp -------------------------------------------------------------------------------- /jni/libutils/util_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_timer.h -------------------------------------------------------------------------------- /jni/libutils/util_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_types.h -------------------------------------------------------------------------------- /jni/libutils/util_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_uri.cpp -------------------------------------------------------------------------------- /jni/libutils/util_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/util_uri.h -------------------------------------------------------------------------------- /jni/libutils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libutils/utils.h -------------------------------------------------------------------------------- /jni/libyuv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/AUTHORS -------------------------------------------------------------------------------- /jni/libyuv/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/Android.mk -------------------------------------------------------------------------------- /jni/libyuv/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/DEPS -------------------------------------------------------------------------------- /jni/libyuv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/LICENSE -------------------------------------------------------------------------------- /jni/libyuv/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/PATENTS -------------------------------------------------------------------------------- /jni/libyuv/README.chromium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/README.chromium -------------------------------------------------------------------------------- /jni/libyuv/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/codereview.settings -------------------------------------------------------------------------------- /jni/libyuv/include/libyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/include/libyuv.h -------------------------------------------------------------------------------- /jni/libyuv/include/libyuv/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/include/libyuv/row.h -------------------------------------------------------------------------------- /jni/libyuv/libyuv.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/libyuv.gyp -------------------------------------------------------------------------------- /jni/libyuv/libyuv_test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/libyuv_test.gyp -------------------------------------------------------------------------------- /jni/libyuv/public.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/public.mk -------------------------------------------------------------------------------- /jni/libyuv/source/compare.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/compare.cc -------------------------------------------------------------------------------- /jni/libyuv/source/convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/convert.cc -------------------------------------------------------------------------------- /jni/libyuv/source/cpu_id.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/cpu_id.cc -------------------------------------------------------------------------------- /jni/libyuv/source/rotate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/rotate.cc -------------------------------------------------------------------------------- /jni/libyuv/source/row_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/row_common.cc -------------------------------------------------------------------------------- /jni/libyuv/source/row_mips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/row_mips.cc -------------------------------------------------------------------------------- /jni/libyuv/source/row_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/row_neon.cc -------------------------------------------------------------------------------- /jni/libyuv/source/row_posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/row_posix.cc -------------------------------------------------------------------------------- /jni/libyuv/source/row_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/row_win.cc -------------------------------------------------------------------------------- /jni/libyuv/source/row_x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/row_x86.asm -------------------------------------------------------------------------------- /jni/libyuv/source/scale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/scale.cc -------------------------------------------------------------------------------- /jni/libyuv/source/scale_argb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/scale_argb.cc -------------------------------------------------------------------------------- /jni/libyuv/source/scale_mips.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/scale_mips.cc -------------------------------------------------------------------------------- /jni/libyuv/source/scale_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/scale_neon.cc -------------------------------------------------------------------------------- /jni/libyuv/source/x86inc.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/source/x86inc.asm -------------------------------------------------------------------------------- /jni/libyuv/util/compare.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/libyuv/util/compare.cc -------------------------------------------------------------------------------- /jni/ustl-1.0/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/Android.mk -------------------------------------------------------------------------------- /jni/ustl-1.0/bktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/bktrace.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/bktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/bktrace.h -------------------------------------------------------------------------------- /jni/ustl-1.0/bsconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/bsconf.h -------------------------------------------------------------------------------- /jni/ustl-1.0/cmemlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/cmemlink.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/cmemlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/cmemlink.h -------------------------------------------------------------------------------- /jni/ustl-1.0/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/config.h -------------------------------------------------------------------------------- /jni/ustl-1.0/fstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/fstream.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/fstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/fstream.h -------------------------------------------------------------------------------- /jni/ustl-1.0/memblock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/memblock.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/memblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/memblock.h -------------------------------------------------------------------------------- /jni/ustl-1.0/memlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/memlink.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/memlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/memlink.h -------------------------------------------------------------------------------- /jni/ustl-1.0/mistream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/mistream.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/mistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/mistream.h -------------------------------------------------------------------------------- /jni/ustl-1.0/mostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/mostream.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ofstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ofstream.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/ofstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ofstream.h -------------------------------------------------------------------------------- /jni/ustl-1.0/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/simd.h -------------------------------------------------------------------------------- /jni/ustl-1.0/sistream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/sistream.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/sistream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/sistream.h -------------------------------------------------------------------------------- /jni/ustl-1.0/sostream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/sostream.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/sostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/sostream.h -------------------------------------------------------------------------------- /jni/ustl-1.0/strmsize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/strmsize.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ualgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ualgo.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ualgobase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ualgobase.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/ualgobase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ualgobase.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uassert.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ubitset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ubitset.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/ubitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ubitset.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uctralgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uctralgo.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uctrstrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uctrstrm.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uexception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uexception.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/uexception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uexception.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ufunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ufunction.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uheap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uheap.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uios.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uiosfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uiosfunc.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uiterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uiterator.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ulaalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ulaalgo.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ulimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ulimits.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ulist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ulist.h -------------------------------------------------------------------------------- /jni/ustl-1.0/umap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/umap.h -------------------------------------------------------------------------------- /jni/ustl-1.0/umatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/umatrix.h -------------------------------------------------------------------------------- /jni/ustl-1.0/umemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/umemory.h -------------------------------------------------------------------------------- /jni/ustl-1.0/umultimap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/umultimap.h -------------------------------------------------------------------------------- /jni/ustl-1.0/umultiset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/umultiset.h -------------------------------------------------------------------------------- /jni/ustl-1.0/unew.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/unew.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/unew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/unew.h -------------------------------------------------------------------------------- /jni/ustl-1.0/unumeric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/unumeric.h -------------------------------------------------------------------------------- /jni/ustl-1.0/upair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/upair.h -------------------------------------------------------------------------------- /jni/ustl-1.0/upredalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/upredalgo.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uqueue.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uset.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uspecial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uspecial.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ustack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ustack.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ustdxept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ustdxept.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/ustdxept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ustdxept.h -------------------------------------------------------------------------------- /jni/ustl-1.0/ustl.tbff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ustl.tbff -------------------------------------------------------------------------------- /jni/ustl-1.0/ustring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ustring.cpp -------------------------------------------------------------------------------- /jni/ustl-1.0/ustring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/ustring.h -------------------------------------------------------------------------------- /jni/ustl-1.0/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/utf8.h -------------------------------------------------------------------------------- /jni/ustl-1.0/utuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/utuple.h -------------------------------------------------------------------------------- /jni/ustl-1.0/utypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/utypes.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uutility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uutility.h -------------------------------------------------------------------------------- /jni/ustl-1.0/uvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/ustl-1.0/uvector.h -------------------------------------------------------------------------------- /jni/yuv2rgb/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/Android.mk -------------------------------------------------------------------------------- /jni/yuv2rgb/include/yuv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/include/yuv2rgb.h -------------------------------------------------------------------------------- /jni/yuv2rgb/src/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/COPYING -------------------------------------------------------------------------------- /jni/yuv2rgb/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/README -------------------------------------------------------------------------------- /jni/yuv2rgb/src/out.yuv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/out.yuv -------------------------------------------------------------------------------- /jni/yuv2rgb/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/test.c -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv2rgb16tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv2rgb16tab.c -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv2rgb555.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv2rgb555.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv2rgbX.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv2rgbX.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv420rgb565.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv420rgb565.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv420rgb565c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv420rgb565c.c -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv420rgb888.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv420rgb888.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv420rgb8888.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv420rgb8888.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv420rgb888c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv420rgb888c.c -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv422rgb565.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv422rgb565.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv422rgb565c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv422rgb565c.c -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv422rgb888.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv422rgb888.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv422rgb8888.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv422rgb8888.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv422rgb888c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv422rgb888c.c -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv444rgb565.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv444rgb565.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv444rgb565c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv444rgb565c.c -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv444rgb888.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv444rgb888.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv444rgb8888.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv444rgb8888.s -------------------------------------------------------------------------------- /jni/yuv2rgb/src/yuv444rgb888c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/jni/yuv2rgb/src/yuv444rgb888c.c -------------------------------------------------------------------------------- /libs/armeabi/libffmpeg_armv5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/libs/armeabi/libffmpeg_armv5.so -------------------------------------------------------------------------------- /libs/armeabi/libffpcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/libs/armeabi/libffpcore.so -------------------------------------------------------------------------------- /libs/armeabi/libffplay-4-jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/libs/armeabi/libffplay-4-jni.so -------------------------------------------------------------------------------- /libs/armeabi/libffplay-8-jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/libs/armeabi/libffplay-8-jni.so -------------------------------------------------------------------------------- /libs/armeabi/libffplay-9-jni.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/libs/armeabi/libffplay-9-jni.so -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/readme -------------------------------------------------------------------------------- /res/drawable/file_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/drawable/file_48.png -------------------------------------------------------------------------------- /res/drawable/folder_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/drawable/folder_48.png -------------------------------------------------------------------------------- /res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/drawable/icon.png -------------------------------------------------------------------------------- /res/drawable/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/drawable/pause.png -------------------------------------------------------------------------------- /res/drawable/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/drawable/play.png -------------------------------------------------------------------------------- /res/layout/ffplay_file_row.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/layout/ffplay_file_row.xml -------------------------------------------------------------------------------- /res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/layout/main.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/values/color.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /src/com/pbi/live/VideoView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhool/ffplayer/HEAD/src/com/pbi/live/VideoView.java --------------------------------------------------------------------------------