├── .gitattributes ├── .gitignore ├── LICENSE ├── MILive ├── MILive.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── MILive │ ├── 3rd │ │ ├── FFmpeg-iOS │ │ │ ├── include │ │ │ │ ├── libavcodec │ │ │ │ │ ├── avcodec.h │ │ │ │ │ ├── avdct.h │ │ │ │ │ ├── avfft.h │ │ │ │ │ ├── d3d11va.h │ │ │ │ │ ├── dirac.h │ │ │ │ │ ├── dv_profile.h │ │ │ │ │ ├── dxva2.h │ │ │ │ │ ├── jni.h │ │ │ │ │ ├── mediacodec.h │ │ │ │ │ ├── qsv.h │ │ │ │ │ ├── vaapi.h │ │ │ │ │ ├── vda.h │ │ │ │ │ ├── vdpau.h │ │ │ │ │ ├── version.h │ │ │ │ │ ├── videotoolbox.h │ │ │ │ │ ├── vorbis_parser.h │ │ │ │ │ └── xvmc.h │ │ │ │ ├── libavdevice │ │ │ │ │ ├── avdevice.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavfilter │ │ │ │ │ ├── avfilter.h │ │ │ │ │ ├── avfiltergraph.h │ │ │ │ │ ├── buffersink.h │ │ │ │ │ ├── buffersrc.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavformat │ │ │ │ │ ├── avformat.h │ │ │ │ │ ├── avio.h │ │ │ │ │ └── version.h │ │ │ │ ├── libavutil │ │ │ │ │ ├── adler32.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_ctr.h │ │ │ │ │ ├── attributes.h │ │ │ │ │ ├── audio_fifo.h │ │ │ │ │ ├── avassert.h │ │ │ │ │ ├── avconfig.h │ │ │ │ │ ├── avstring.h │ │ │ │ │ ├── avutil.h │ │ │ │ │ ├── base64.h │ │ │ │ │ ├── blowfish.h │ │ │ │ │ ├── bprint.h │ │ │ │ │ ├── bswap.h │ │ │ │ │ ├── buffer.h │ │ │ │ │ ├── camellia.h │ │ │ │ │ ├── cast5.h │ │ │ │ │ ├── channel_layout.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── des.h │ │ │ │ │ ├── dict.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── downmix_info.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── eval.h │ │ │ │ │ ├── ffversion.h │ │ │ │ │ ├── fifo.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── frame.h │ │ │ │ │ ├── hash.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── hwcontext.h │ │ │ │ │ ├── hwcontext_cuda.h │ │ │ │ │ ├── hwcontext_d3d11va.h │ │ │ │ │ ├── hwcontext_drm.h │ │ │ │ │ ├── hwcontext_dxva2.h │ │ │ │ │ ├── hwcontext_qsv.h │ │ │ │ │ ├── hwcontext_vaapi.h │ │ │ │ │ ├── hwcontext_vdpau.h │ │ │ │ │ ├── hwcontext_videotoolbox.h │ │ │ │ │ ├── imgutils.h │ │ │ │ │ ├── intfloat.h │ │ │ │ │ ├── intreadwrite.h │ │ │ │ │ ├── lfg.h │ │ │ │ │ ├── log.h │ │ │ │ │ ├── lzo.h │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── mastering_display_metadata.h │ │ │ │ │ ├── mathematics.h │ │ │ │ │ ├── md5.h │ │ │ │ │ ├── mem.h │ │ │ │ │ ├── motion_vector.h │ │ │ │ │ ├── murmur3.h │ │ │ │ │ ├── opt.h │ │ │ │ │ ├── parseutils.h │ │ │ │ │ ├── pixdesc.h │ │ │ │ │ ├── pixelutils.h │ │ │ │ │ ├── pixfmt.h │ │ │ │ │ ├── random_seed.h │ │ │ │ │ ├── rational.h │ │ │ │ │ ├── rc4.h │ │ │ │ │ ├── replaygain.h │ │ │ │ │ ├── ripemd.h │ │ │ │ │ ├── samplefmt.h │ │ │ │ │ ├── sha.h │ │ │ │ │ ├── sha512.h │ │ │ │ │ ├── spherical.h │ │ │ │ │ ├── stereo3d.h │ │ │ │ │ ├── tea.h │ │ │ │ │ ├── threadmessage.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timecode.h │ │ │ │ │ ├── timestamp.h │ │ │ │ │ ├── tree.h │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── xtea.h │ │ │ │ ├── libswresample │ │ │ │ │ ├── swresample.h │ │ │ │ │ └── version.h │ │ │ │ └── libswscale │ │ │ │ │ ├── swscale.h │ │ │ │ │ └── version.h │ │ │ └── lib │ │ │ │ ├── libavcodec.a │ │ │ │ ├── libavdevice.a │ │ │ │ ├── libavfilter.a │ │ │ │ ├── libavformat.a │ │ │ │ ├── libavutil.a │ │ │ │ ├── libswresample.a │ │ │ │ └── libswscale.a │ │ └── librtmp │ │ │ ├── include │ │ │ ├── librtmp │ │ │ │ ├── amf.h │ │ │ │ ├── http.h │ │ │ │ ├── log.h │ │ │ │ └── rtmp.h │ │ │ └── openssl │ │ │ │ ├── aes.h │ │ │ │ ├── asn1.h │ │ │ │ ├── asn1_mac.h │ │ │ │ ├── asn1t.h │ │ │ │ ├── bio.h │ │ │ │ ├── blowfish.h │ │ │ │ ├── bn.h │ │ │ │ ├── buffer.h │ │ │ │ ├── camellia.h │ │ │ │ ├── cast.h │ │ │ │ ├── cmac.h │ │ │ │ ├── cms.h │ │ │ │ ├── comp.h │ │ │ │ ├── conf.h │ │ │ │ ├── conf_api.h │ │ │ │ ├── crypto.h │ │ │ │ ├── des.h │ │ │ │ ├── des_old.h │ │ │ │ ├── dh.h │ │ │ │ ├── dsa.h │ │ │ │ ├── dso.h │ │ │ │ ├── dtls1.h │ │ │ │ ├── e_os2.h │ │ │ │ ├── ebcdic.h │ │ │ │ ├── ec.h │ │ │ │ ├── ecdh.h │ │ │ │ ├── ecdsa.h │ │ │ │ ├── engine.h │ │ │ │ ├── err.h │ │ │ │ ├── evp.h │ │ │ │ ├── hmac.h │ │ │ │ ├── idea.h │ │ │ │ ├── krb5_asn.h │ │ │ │ ├── kssl.h │ │ │ │ ├── lhash.h │ │ │ │ ├── md4.h │ │ │ │ ├── md5.h │ │ │ │ ├── mdc2.h │ │ │ │ ├── modes.h │ │ │ │ ├── obj_mac.h │ │ │ │ ├── objects.h │ │ │ │ ├── ocsp.h │ │ │ │ ├── opensslconf.h │ │ │ │ ├── opensslv.h │ │ │ │ ├── ossl_typ.h │ │ │ │ ├── pem.h │ │ │ │ ├── pem2.h │ │ │ │ ├── pkcs12.h │ │ │ │ ├── pkcs7.h │ │ │ │ ├── pqueue.h │ │ │ │ ├── rand.h │ │ │ │ ├── rc2.h │ │ │ │ ├── rc4.h │ │ │ │ ├── ripemd.h │ │ │ │ ├── rsa.h │ │ │ │ ├── safestack.h │ │ │ │ ├── seed.h │ │ │ │ ├── sha.h │ │ │ │ ├── srp.h │ │ │ │ ├── srtp.h │ │ │ │ ├── ssl.h │ │ │ │ ├── ssl2.h │ │ │ │ ├── ssl23.h │ │ │ │ ├── ssl3.h │ │ │ │ ├── stack.h │ │ │ │ ├── symhacks.h │ │ │ │ ├── tls1.h │ │ │ │ ├── ts.h │ │ │ │ ├── txt_db.h │ │ │ │ ├── ui.h │ │ │ │ ├── ui_compat.h │ │ │ │ ├── whrlpool.h │ │ │ │ ├── x509.h │ │ │ │ ├── x509_vfy.h │ │ │ │ └── x509v3.h │ │ │ └── lib │ │ │ ├── libcrypto.a │ │ │ ├── librtmp.a │ │ │ └── libssl.a │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── MIConst.h │ ├── ViewController.h │ ├── ViewController.m │ ├── audio │ │ ├── MIAudioCollectionVC.h │ │ ├── MIAudioCollectionVC.m │ │ ├── MIAudioQueueConvert.h │ │ ├── MIAudioQueueConvert.m │ │ ├── MIAudioQueuePlay.h │ │ ├── MIAudioQueuePlay.m │ │ ├── MIAudioQueueRecord.h │ │ ├── MIAudioQueueRecord.m │ │ ├── MIAudioUnit.h │ │ └── MIAudioUnit.m │ ├── main.m │ ├── push_stream │ │ ├── MIAudioRecord.h │ │ ├── MIAudioRecord.m │ │ ├── MIPushStreamVC.h │ │ ├── MIPushStreamVC.m │ │ ├── MIRtpmClient.h │ │ ├── MIRtpmClient.m │ │ ├── PSHWH264Encoder.h │ │ └── PSHWH264Encoder.m │ ├── video_collection │ │ ├── MICalculator.h │ │ ├── MICalculator.m │ │ ├── MiVideoCollectVC.h │ │ └── MiVideoCollectVC.m │ └── video_encoder │ │ ├── MIHWH264Encoder.h │ │ ├── MIHWH264Encoder.m │ │ ├── MILiveVC.h │ │ ├── MILiveVC.m │ │ ├── MISoftH264Encoder.h │ │ └── MISoftH264Encoder.mm ├── MILiveTests │ ├── Info.plist │ └── MILiveTests.m └── MILiveUITests │ ├── Info.plist │ └── MILiveUITests.m ├── MIPlay └── AVPlayerDemo_01 │ ├── AVPlayerDemo_01.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── AVPlayerDemo_01 │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── sliderIcon.imageset │ │ │ ├── Contents.json │ │ │ └── sliderIcon.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── LYVideoPlayer │ │ └── resource │ │ │ ├── full_screen@2x1.png │ │ │ └── normal_screen@2x1.png │ ├── MIVideoPlayer │ │ ├── MISlider.h │ │ ├── MISlider.m │ │ ├── MIVideoPlayer.h │ │ ├── MIVideoPlayer.m │ │ ├── MIVideoPlayerController.h │ │ ├── MIVideoPlayerController.m │ │ ├── MIVideoPlayerDef.h │ │ ├── MIVideoPlayerHelper.h │ │ ├── MIVideoPlayerHelper.m │ │ ├── MIVideoPlayerPane.h │ │ ├── MIVideoPlayerPane.m │ │ └── resource │ │ │ ├── back@2x.png │ │ │ ├── fast_forward@2x.png │ │ │ ├── full_screen@2x.png │ │ │ ├── normal_screen@2x.png │ │ │ ├── pause@2x.png │ │ │ ├── play@2x.png │ │ │ ├── rewind@2x.png │ │ │ └── xxsj.mp4 │ ├── PrefixHeader.pch │ ├── ViewController.h │ ├── ViewController.m │ └── main.m │ ├── AVPlayerDemo_01Tests │ ├── AVPlayerDemo_01Tests.m │ └── Info.plist │ └── AVPlayerDemo_01UITests │ ├── AVPlayerDemo_01UITests.m │ └── Info.plist ├── README.md └── imgs ├── 20190518_aq_01.png ├── 20190518_aq_02.png ├── 20190518_aq_03.png ├── 20190518_aq_04.png ├── 20190518_aq_05.png ├── 20190518_aq_06.png ├── 20190518_aq_07.png ├── 20190518_aq_08.png ├── 20190518_aq_09.png ├── 20190518_aq_10.png ├── 20190518_aq_11.png ├── 20190531_encoder_01.png ├── 20190531_encoder_02.png ├── 20190531_encoder_03.png ├── 20190531_encoder_04.png ├── 20190531_encoder_05.png ├── 20190531_encoder_06.png ├── 20190531_encoder_07.png ├── 20190531_encoder_08.png ├── 20190531_v_h264_01.png ├── 20190531_v_h264_02.png ├── 20190531_v_h264_03.png ├── 20190531_v_h264_04.png ├── 20190531_v_h264_05.png ├── 20190531_v_h264_06.png ├── 20190531_v_h264_07.png ├── 20190531_v_h264_08.png ├── 20190531_v_h264_09.png ├── 20190531_v_h264_10.png ├── 20190531_v_h264_11.png ├── 20190531_v_h264_12.png ├── 20190531_v_h264_13.png ├── 20190531_v_h264_14.png ├── 20190703-rtmp_01.png ├── 20190703-rtmp_02.png ├── 20190703-rtmp_03.png ├── 20190703-rtmp_04.png ├── 20190703-rtmp_05.png ├── 20190703-rtmp_06.png ├── 20190703-rtmp_07.png ├── 20190703-rtmp_08.png ├── 20190703-rtmp_09.png ├── 20190703-rtmp_10.png ├── 20190703-rtmp_11.png ├── 20190703-rtmp_12.png ├── 20190703-rtmp_13.png └── prj_01.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/LICENSE -------------------------------------------------------------------------------- /MILive/MILive.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MILive/MILive.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MILive/MILive.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/jni.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/vda.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/version.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavdevice/version.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavfilter/version.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavformat/avformat.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavformat/avio.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavformat/version.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/adler32.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/aes.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/attributes.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/avassert.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/avstring.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/avutil.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/base64.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/bprint.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/bswap.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/buffer.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/camellia.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/cast5.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/common.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/cpu.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/crc.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/des.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/dict.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/display.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/error.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/eval.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/fifo.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/file.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/frame.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hash.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hmac.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/lfg.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/log.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/lzo.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/macros.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/md5.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/mem.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/opt.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/rational.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/rc4.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/sha.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/sha512.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/spherical.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/tea.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/time.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/timecode.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/tree.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/twofish.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/version.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libavutil/xtea.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libswresample/swresample.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libswresample/version.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libswscale/swscale.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/include/libswscale/version.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/lib/libavcodec.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/lib/libavcodec.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/lib/libavdevice.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/lib/libavdevice.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/lib/libavfilter.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/lib/libavfilter.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/lib/libavformat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/lib/libavformat.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/lib/libavutil.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/lib/libavutil.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/lib/libswresample.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/lib/libswresample.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/FFmpeg-iOS/lib/libswscale.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/FFmpeg-iOS/lib/libswscale.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/librtmp/amf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/librtmp/amf.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/librtmp/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/librtmp/http.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/librtmp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/librtmp/log.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/librtmp/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/librtmp/rtmp.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/aes.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/asn1.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/asn1t.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/bio.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/blowfish.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/bn.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/buffer.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/camellia.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/cast.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/cmac.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/cms.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/comp.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/conf.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/conf_api.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/crypto.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/des.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/des_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/des_old.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/dh.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/dsa.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/dso.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/dtls1.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/e_os2.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ebcdic.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ec.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ecdh.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/engine.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/err.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/evp.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/hmac.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/idea.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/krb5_asn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/krb5_asn.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/kssl.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/lhash.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/md4.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/md5.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/mdc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/mdc2.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/modes.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/objects.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ocsp.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/opensslv.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/pem.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/pem2.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/pqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/pqueue.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/rand.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/rc2.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/rc4.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ripemd.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/rsa.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/safestack.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/seed.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/sha.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/srp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/srp.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/srtp.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ssl.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ssl2.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ssl23.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ssl3.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/stack.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/symhacks.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/tls1.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ts.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/txt_db.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ui.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/x509.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/include/openssl/x509v3.h -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/lib/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/lib/libcrypto.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/lib/librtmp.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/lib/librtmp.a -------------------------------------------------------------------------------- /MILive/MILive/3rd/librtmp/lib/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/3rd/librtmp/lib/libssl.a -------------------------------------------------------------------------------- /MILive/MILive/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/AppDelegate.h -------------------------------------------------------------------------------- /MILive/MILive/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/AppDelegate.m -------------------------------------------------------------------------------- /MILive/MILive/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MILive/MILive/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MILive/MILive/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MILive/MILive/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MILive/MILive/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/Info.plist -------------------------------------------------------------------------------- /MILive/MILive/MIConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/MIConst.h -------------------------------------------------------------------------------- /MILive/MILive/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/ViewController.h -------------------------------------------------------------------------------- /MILive/MILive/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/ViewController.m -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioCollectionVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioCollectionVC.h -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioCollectionVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioCollectionVC.m -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioQueueConvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioQueueConvert.h -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioQueueConvert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioQueueConvert.m -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioQueuePlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioQueuePlay.h -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioQueuePlay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioQueuePlay.m -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioQueueRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioQueueRecord.h -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioQueueRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioQueueRecord.m -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioUnit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioUnit.h -------------------------------------------------------------------------------- /MILive/MILive/audio/MIAudioUnit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/audio/MIAudioUnit.m -------------------------------------------------------------------------------- /MILive/MILive/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/main.m -------------------------------------------------------------------------------- /MILive/MILive/push_stream/MIAudioRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/push_stream/MIAudioRecord.h -------------------------------------------------------------------------------- /MILive/MILive/push_stream/MIAudioRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/push_stream/MIAudioRecord.m -------------------------------------------------------------------------------- /MILive/MILive/push_stream/MIPushStreamVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/push_stream/MIPushStreamVC.h -------------------------------------------------------------------------------- /MILive/MILive/push_stream/MIPushStreamVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/push_stream/MIPushStreamVC.m -------------------------------------------------------------------------------- /MILive/MILive/push_stream/MIRtpmClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/push_stream/MIRtpmClient.h -------------------------------------------------------------------------------- /MILive/MILive/push_stream/MIRtpmClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/push_stream/MIRtpmClient.m -------------------------------------------------------------------------------- /MILive/MILive/push_stream/PSHWH264Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/push_stream/PSHWH264Encoder.h -------------------------------------------------------------------------------- /MILive/MILive/push_stream/PSHWH264Encoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/push_stream/PSHWH264Encoder.m -------------------------------------------------------------------------------- /MILive/MILive/video_collection/MICalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_collection/MICalculator.h -------------------------------------------------------------------------------- /MILive/MILive/video_collection/MICalculator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_collection/MICalculator.m -------------------------------------------------------------------------------- /MILive/MILive/video_collection/MiVideoCollectVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_collection/MiVideoCollectVC.h -------------------------------------------------------------------------------- /MILive/MILive/video_collection/MiVideoCollectVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_collection/MiVideoCollectVC.m -------------------------------------------------------------------------------- /MILive/MILive/video_encoder/MIHWH264Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_encoder/MIHWH264Encoder.h -------------------------------------------------------------------------------- /MILive/MILive/video_encoder/MIHWH264Encoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_encoder/MIHWH264Encoder.m -------------------------------------------------------------------------------- /MILive/MILive/video_encoder/MILiveVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_encoder/MILiveVC.h -------------------------------------------------------------------------------- /MILive/MILive/video_encoder/MILiveVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_encoder/MILiveVC.m -------------------------------------------------------------------------------- /MILive/MILive/video_encoder/MISoftH264Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_encoder/MISoftH264Encoder.h -------------------------------------------------------------------------------- /MILive/MILive/video_encoder/MISoftH264Encoder.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILive/video_encoder/MISoftH264Encoder.mm -------------------------------------------------------------------------------- /MILive/MILiveTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILiveTests/Info.plist -------------------------------------------------------------------------------- /MILive/MILiveTests/MILiveTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILiveTests/MILiveTests.m -------------------------------------------------------------------------------- /MILive/MILiveUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILiveUITests/Info.plist -------------------------------------------------------------------------------- /MILive/MILiveUITests/MILiveUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MILive/MILiveUITests/MILiveUITests.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/AppDelegate.h -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/AppDelegate.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Assets.xcassets/sliderIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Assets.xcassets/sliderIcon.imageset/Contents.json -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Assets.xcassets/sliderIcon.imageset/sliderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Assets.xcassets/sliderIcon.imageset/sliderIcon.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/Info.plist -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/LYVideoPlayer/resource/full_screen@2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/LYVideoPlayer/resource/full_screen@2x1.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/LYVideoPlayer/resource/normal_screen@2x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/LYVideoPlayer/resource/normal_screen@2x1.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MISlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MISlider.h -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MISlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MISlider.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayer.h -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayer.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerController.h -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerController.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerDef.h -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerHelper.h -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerHelper.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerPane.h -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerPane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/MIVideoPlayerPane.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/back@2x.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/fast_forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/fast_forward@2x.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/full_screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/full_screen@2x.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/normal_screen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/normal_screen@2x.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/pause@2x.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/play@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/play@2x.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/rewind@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/rewind@2x.png -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/xxsj.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/MIVideoPlayer/resource/xxsj.mp4 -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/PrefixHeader.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/PrefixHeader.pch -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/ViewController.h -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/ViewController.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01/main.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01Tests/AVPlayerDemo_01Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01Tests/AVPlayerDemo_01Tests.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01Tests/Info.plist -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01UITests/AVPlayerDemo_01UITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01UITests/AVPlayerDemo_01UITests.m -------------------------------------------------------------------------------- /MIPlay/AVPlayerDemo_01/AVPlayerDemo_01UITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/MIPlay/AVPlayerDemo_01/AVPlayerDemo_01UITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/README.md -------------------------------------------------------------------------------- /imgs/20190518_aq_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_01.png -------------------------------------------------------------------------------- /imgs/20190518_aq_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_02.png -------------------------------------------------------------------------------- /imgs/20190518_aq_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_03.png -------------------------------------------------------------------------------- /imgs/20190518_aq_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_04.png -------------------------------------------------------------------------------- /imgs/20190518_aq_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_05.png -------------------------------------------------------------------------------- /imgs/20190518_aq_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_06.png -------------------------------------------------------------------------------- /imgs/20190518_aq_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_07.png -------------------------------------------------------------------------------- /imgs/20190518_aq_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_08.png -------------------------------------------------------------------------------- /imgs/20190518_aq_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_09.png -------------------------------------------------------------------------------- /imgs/20190518_aq_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_10.png -------------------------------------------------------------------------------- /imgs/20190518_aq_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190518_aq_11.png -------------------------------------------------------------------------------- /imgs/20190531_encoder_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_encoder_01.png -------------------------------------------------------------------------------- /imgs/20190531_encoder_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_encoder_02.png -------------------------------------------------------------------------------- /imgs/20190531_encoder_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_encoder_03.png -------------------------------------------------------------------------------- /imgs/20190531_encoder_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_encoder_04.png -------------------------------------------------------------------------------- /imgs/20190531_encoder_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_encoder_05.png -------------------------------------------------------------------------------- /imgs/20190531_encoder_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_encoder_06.png -------------------------------------------------------------------------------- /imgs/20190531_encoder_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_encoder_07.png -------------------------------------------------------------------------------- /imgs/20190531_encoder_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_encoder_08.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_01.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_02.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_03.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_04.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_05.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_06.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_07.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_08.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_09.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_10.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_11.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_12.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_13.png -------------------------------------------------------------------------------- /imgs/20190531_v_h264_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190531_v_h264_14.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_01.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_02.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_03.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_04.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_05.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_06.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_07.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_08.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_09.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_10.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_11.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_12.png -------------------------------------------------------------------------------- /imgs/20190703-rtmp_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/20190703-rtmp_13.png -------------------------------------------------------------------------------- /imgs/prj_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mediaios/AVLive_Research/HEAD/imgs/prj_01.png --------------------------------------------------------------------------------