├── AirplayLibrary ├── AirPlay.sln ├── AirPlay │ ├── AirPlay.vcxproj │ ├── AirPlay.vcxproj.filters │ ├── AirPlay.vcxproj.user │ ├── airport.key │ ├── lib │ │ ├── Makefile.am │ │ ├── aac_eld │ │ │ ├── Makefile.am │ │ │ ├── aac_eld.c │ │ │ └── aac_eld.h │ │ ├── airplay.c │ │ ├── airplay.h │ │ ├── alac │ │ │ ├── Makefile.am │ │ │ ├── alac.c │ │ │ ├── alac.h │ │ │ └── stdint_win.h │ │ ├── audio.c │ │ ├── audio.h │ │ ├── compat.h │ │ ├── digest.c │ │ ├── digest.h │ │ ├── dnssd.c │ │ ├── dnssd.h │ │ ├── dnssd.m │ │ ├── dnssdint.h │ │ ├── fairplay.c │ │ ├── fairplay.h │ │ ├── fdkaac │ │ │ ├── include │ │ │ │ ├── FDK_archdef.h │ │ │ │ ├── FDK_audio.h │ │ │ │ ├── FDK_bitbuffer.h │ │ │ │ ├── FDK_bitstream.h │ │ │ │ ├── FDK_core.h │ │ │ │ ├── FDK_crc.h │ │ │ │ ├── FDK_hybrid.h │ │ │ │ ├── FDK_tools_rom.h │ │ │ │ ├── FDK_trigFcts.h │ │ │ │ ├── aacdecoder_lib.h │ │ │ │ ├── aacenc_lib.h │ │ │ │ ├── abs.h │ │ │ │ ├── arm │ │ │ │ │ ├── clz_arm.h │ │ │ │ │ ├── cplx_mul.h │ │ │ │ │ ├── fixmadd_arm.h │ │ │ │ │ ├── fixmul_arm.h │ │ │ │ │ ├── scale.h │ │ │ │ │ └── scramble.h │ │ │ │ ├── audio.h │ │ │ │ ├── autocorr2nd.h │ │ │ │ ├── clz.h │ │ │ │ ├── cmdl_parser.h │ │ │ │ ├── common_fix.h │ │ │ │ ├── conv_string.h │ │ │ │ ├── cplx_mul.h │ │ │ │ ├── dct.h │ │ │ │ ├── fft.h │ │ │ │ ├── fft_rad2.h │ │ │ │ ├── fixmadd.h │ │ │ │ ├── fixminmax.h │ │ │ │ ├── fixmul.h │ │ │ │ ├── fixpoint_math.h │ │ │ │ ├── genericStds.h │ │ │ │ ├── machine_type.h │ │ │ │ ├── mdct.h │ │ │ │ ├── mips │ │ │ │ │ ├── abs_mips.h │ │ │ │ │ ├── clz_mips.h │ │ │ │ │ ├── cplx_mul.h │ │ │ │ │ ├── fixmadd_mips.h │ │ │ │ │ ├── fixmul_mips.h │ │ │ │ │ ├── scale.h │ │ │ │ │ └── scramble.h │ │ │ │ ├── mpegFileRead.h │ │ │ │ ├── mpegFileWrite.h │ │ │ │ ├── pcmutils_lib.h │ │ │ │ ├── qmf.h │ │ │ │ ├── sbr_encoder.h │ │ │ │ ├── sbrdecoder.h │ │ │ │ ├── scale.h │ │ │ │ ├── scramble.h │ │ │ │ ├── tp_data.h │ │ │ │ ├── tpdec_lib.h │ │ │ │ ├── tpenc_lib.h │ │ │ │ ├── wav_file.h │ │ │ │ └── x86 │ │ │ │ │ ├── abs_x86.h │ │ │ │ │ └── fixmul_x86.h │ │ │ └── lib │ │ │ │ ├── libfdk.def │ │ │ │ ├── libfdk.dll │ │ │ │ ├── libfdk.exp │ │ │ │ └── libfdk.lib │ │ ├── global.h │ │ ├── http_parser.c │ │ ├── http_parser.h │ │ ├── http_request.c │ │ ├── http_request.h │ │ ├── http_response.c │ │ ├── http_response.h │ │ ├── httpd.c │ │ ├── httpd.h │ │ ├── libfdk.def │ │ ├── libfdk.dll │ │ ├── libfdk.exp │ │ ├── libfdk.lib │ │ ├── libplist.dll │ │ ├── logger.c │ │ ├── logger.h │ │ ├── memalign.h │ │ ├── mycrypt.dll │ │ ├── mycrypt.exp │ │ ├── mycrypt.h │ │ ├── mycrypt.ilk │ │ ├── mycrypt.lib │ │ ├── mycrypt.pdb │ │ ├── netutils.c │ │ ├── netutils.h │ │ ├── plist.h │ │ ├── plistlib.c │ │ ├── plistlib.h │ │ ├── raop.c │ │ ├── raop.h │ │ ├── raop_buffer.c │ │ ├── raop_buffer.h │ │ ├── raop_rtp.c │ │ ├── raop_rtp.h │ │ ├── sdp.c │ │ ├── sdp.h │ │ ├── sockets.h │ │ ├── threads.h │ │ ├── utils.c │ │ └── utils.h │ ├── main.c │ └── mediaserver.h └── README.md ├── AirplaySdkExample ├── Debug │ ├── AirPlay.dll │ ├── SDL.dll │ ├── airport.key │ ├── avcodec-55.dll │ ├── avdevice-55.dll │ ├── avfilter-4.dll │ ├── avformat-55.dll │ ├── avutil-52.dll │ ├── libfdk.dll │ ├── libiconv-2.dll │ ├── libplist.dll │ ├── libpthread-2.dll │ ├── libxml2-2.dll │ ├── mycrypt.dll │ ├── postproc-52.dll │ ├── swresample-0.dll │ ├── swscale-2.dll │ ├── xindawn-airplay-sdk-example.exe │ └── xindawn-airplay-sdk-example_manifest.rc ├── VideoSource.cpp ├── include │ ├── SDL │ │ ├── SDL.h │ │ ├── SDL_active.h │ │ ├── SDL_audio.h │ │ ├── SDL_byteorder.h │ │ ├── SDL_cdrom.h │ │ ├── SDL_config.h │ │ ├── SDL_config_dreamcast.h │ │ ├── SDL_config_macos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_nds.h │ │ ├── SDL_config_os2.h │ │ ├── SDL_config_symbian.h │ │ ├── SDL_config_win32.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_getenv.h │ │ ├── SDL_joystick.h │ │ ├── SDL_keyboard.h │ │ ├── SDL_keysym.h │ │ ├── SDL_loadso.h │ │ ├── SDL_main.h │ │ ├── SDL_mouse.h │ │ ├── SDL_mutex.h │ │ ├── SDL_name.h │ │ ├── SDL_opengl.h │ │ ├── SDL_platform.h │ │ ├── SDL_quit.h │ │ ├── SDL_rwops.h │ │ ├── SDL_stdinc.h │ │ ├── SDL_syswm.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── begin_code.h │ │ └── close_code.h │ ├── _mingw.h │ ├── inttypes.h │ ├── libavcodec │ │ ├── avcodec.h │ │ ├── avfft.h │ │ ├── dxva2.h │ │ ├── old_codec_ids.h │ │ ├── vaapi.h │ │ ├── vda.h │ │ ├── vdpau.h │ │ ├── version.h │ │ └── xvmc.h │ ├── libavdevice │ │ ├── avdevice.h │ │ └── version.h │ ├── libavfilter │ │ ├── asrc_abuffer.h │ │ ├── avcodec.h │ │ ├── avfilter.h │ │ ├── avfiltergraph.h │ │ ├── buffersink.h │ │ ├── buffersrc.h │ │ └── version.h │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ └── version.h │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── attributes.h │ │ ├── audio_fifo.h │ │ ├── audioconvert.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.h │ │ ├── blowfish.h │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── dict.h │ │ ├── downmix_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hmac.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intfloat_readwrite.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── murmur3.h │ │ ├── old_pix_fmts.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── stereo3d.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── version.h │ │ └── xtea.h │ ├── libpostproc │ │ ├── postprocess.h │ │ └── version.h │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ ├── libswscale │ │ ├── swscale.h │ │ └── version.h │ ├── stdint.h │ └── xindawn │ │ └── mediaserver.h ├── lib │ ├── AirPlay.lib │ ├── SDL.lib │ ├── SDLmain.lib │ ├── avcodec.lib │ ├── avdevice.lib │ ├── avfilter.lib │ ├── avformat.lib │ ├── avutil.lib │ ├── postproc.lib │ ├── swresample.lib │ └── swscale.lib ├── utils │ ├── memalign.h │ ├── sockets.h │ ├── threads.h │ ├── vlc.h │ ├── xdw_list.c │ ├── xdw_list.h │ ├── xdw_lock.c │ ├── xdw_lock.h │ └── xdw_std.h ├── videosource.h ├── xindawn-airplay-sdk-example.sln ├── xindawn-airplay-sdk-example.vcxproj ├── xindawn-airplay-sdk-example.vcxproj.filters └── xindawn-airplay-sdk-example.vcxproj.user ├── MyCrypt ├── mycrypt_win32 │ ├── Backup │ │ ├── mycrypt.sln │ │ └── mycrypt.v11.suo │ ├── Curve25519 │ │ ├── curve25519-donna-c64.c │ │ ├── curve25519-donna-test.c │ │ ├── curve25519-donna.c │ │ └── curve25519-donna.h │ ├── Ed25519 │ │ ├── ed25519_32.dll │ │ ├── ed25519_64.dll │ │ ├── license.txt │ │ ├── readme.md │ │ ├── src │ │ │ ├── add_scalar.c │ │ │ ├── ed25519.h │ │ │ ├── fe.c │ │ │ ├── fe.h │ │ │ ├── fixedint.h │ │ │ ├── ge.c │ │ │ ├── ge.h │ │ │ ├── key_exchange.c │ │ │ ├── keypair.c │ │ │ ├── precomp_data.h │ │ │ ├── sc.c │ │ │ ├── sc.h │ │ │ ├── seed.c │ │ │ ├── sha512.c │ │ │ ├── sha512.h │ │ │ ├── sign.c │ │ │ └── verify.c │ │ └── test.c │ ├── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Error.png │ │ ├── UpgradeReport_Information.png │ │ ├── UpgradeReport_Success.png │ │ └── UpgradeReport_Warning.png │ ├── crypto │ │ ├── Makefile.am │ │ ├── aes.c │ │ ├── aes_locl.h │ │ ├── base64.c │ │ ├── base64.h │ │ ├── bigint.c │ │ ├── bigint.h │ │ ├── bigint_impl.h │ │ ├── config.h │ │ ├── crypto.h │ │ ├── hmac.c │ │ ├── md5.c │ │ ├── new_aes.c │ │ ├── os_port.h │ │ ├── rc4.c │ │ ├── rsakey.c │ │ ├── rsakey.h │ │ ├── rsapem.c │ │ ├── rsapem.h │ │ └── sha1.c │ ├── debug │ │ ├── mycrypt.dll │ │ ├── mycrypt.exp │ │ ├── mycrypt.h │ │ ├── mycrypt.ilk │ │ ├── mycrypt.lib │ │ └── mycrypt.pdb │ ├── mycrypt.sln │ ├── mycrypt.suo │ └── mycrypt │ │ ├── Debug │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── add_scalar.obj │ │ ├── aes.obj │ │ ├── base64.obj │ │ ├── bigint.obj │ │ ├── cl.command.1.tlog │ │ ├── curve25519-donna.obj │ │ ├── fe.obj │ │ ├── ge.obj │ │ ├── hmac.obj │ │ ├── key_exchange.obj │ │ ├── keypair.obj │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link.7776-cvtres.read.1.tlog │ │ ├── link.7776-cvtres.write.1.tlog │ │ ├── link.7776.read.1.tlog │ │ ├── link.7776.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ ├── md5.obj │ │ ├── mt.command.1.tlog │ │ ├── mt.read.1.tlog │ │ ├── mt.write.1.tlog │ │ ├── mycrypt.Build.CppClean.log │ │ ├── mycrypt.dll.embed.manifest │ │ ├── mycrypt.dll.embed.manifest.res │ │ ├── mycrypt.dll.intermediate.manifest │ │ ├── mycrypt.lastbuildstate │ │ ├── mycrypt.log │ │ ├── mycrypt.write.1.tlog │ │ ├── mycrypt_manifest.rc │ │ ├── new_aes.obj │ │ ├── rc.command.1.tlog │ │ ├── rc.read.1.tlog │ │ ├── rc.write.1.tlog │ │ ├── rc4.obj │ │ ├── rsakey.obj │ │ ├── rsapem.obj │ │ ├── sc.obj │ │ ├── seed.obj │ │ ├── sha1.obj │ │ ├── sha512.obj │ │ ├── sign.obj │ │ ├── vc100.idb │ │ ├── vc100.pdb │ │ └── verify.obj │ │ ├── ReadMe.txt │ │ ├── inttypes.h │ │ ├── mycrypt.h │ │ ├── mycrypt.vcproj │ │ ├── mycrypt.vcproj.WIN-MK2ULPM4DLM.Administrator.user │ │ ├── mycrypt.vcxproj │ │ ├── mycrypt.vcxproj.filters │ │ ├── mycrypt.vcxproj.user │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── stdint.h └── mycrypt_wince │ ├── Curve25519 │ ├── curve25519-donna-c64.c │ ├── curve25519-donna-test.c │ ├── curve25519-donna.c │ └── curve25519-donna.h │ ├── Debug │ └── mycrypt.lib │ ├── Ed25519 │ ├── ed25519_32.dll │ ├── ed25519_64.dll │ ├── license.txt │ ├── readme.md │ ├── src │ │ ├── add_scalar.c │ │ ├── ed25519.h │ │ ├── fe.c │ │ ├── fe.h │ │ ├── fixedint.h │ │ ├── ge.c │ │ ├── ge.h │ │ ├── key_exchange.c │ │ ├── keypair.c │ │ ├── precomp_data.h │ │ ├── sc.c │ │ ├── sc.h │ │ ├── seed.c │ │ ├── sha512.c │ │ ├── sha512.h │ │ ├── sign.c │ │ └── verify.c │ └── test.c │ ├── crypto │ ├── Makefile.am │ ├── aes.c │ ├── aes_locl.h │ ├── base64.c │ ├── base64.h │ ├── bigint.c │ ├── bigint.h │ ├── bigint_impl.h │ ├── config.h │ ├── crypto.h │ ├── hmac.c │ ├── md5.c │ ├── new_aes.c │ ├── os_port.h │ ├── rc4.c │ ├── rsakey.c │ ├── rsakey.h │ ├── rsapem.c │ ├── rsapem.h │ └── sha1.c │ ├── mycrypt.opensdf │ ├── mycrypt.sln │ ├── mycrypt.suo │ ├── mycrypt.v11.suo │ └── mycrypt │ ├── Pocket PC 2003 (ARMV4) │ └── Debug │ │ ├── mycrypt.dll │ │ └── mycrypt.lib │ ├── ReadMe.txt │ ├── inttypes.h │ ├── mycrypt.c │ ├── mycrypt.def │ ├── mycrypt.h │ ├── mycrypt.vcproj │ ├── mycrypt.vcproj.WIN-MK2ULPM4DLM.Administrator.user │ ├── mycrypt.vcxproj │ ├── mycrypt.vcxproj.filters │ ├── mycrypt.vcxproj.user │ ├── mycryptppc.rc │ ├── res │ └── mycrypt.rc2 │ ├── resourceppc.h │ ├── stdafx.cpp │ ├── stdafx.h │ └── stdint.h ├── README.md ├── fairplay-server-master ├── LICENSE ├── Makefile ├── README.md ├── airplay ├── airplay.c ├── fairplay-core.o ├── fairplay-server ├── fairplay-server.c ├── fairplay-server.c~ ├── fairplay.c ├── fairplay.h ├── fairplay │ ├── ReadMe.txt │ ├── airplay.c │ ├── fairplay-core.idb │ ├── fairplay-core.o │ ├── fairplay-server.c │ ├── fairplay.c │ ├── fairplay.h │ ├── fairplay.sln │ ├── fairplay.suo │ ├── fairplay.v11.suo │ ├── fairplay.vcxproj │ ├── fairplay.vcxproj.filters │ ├── fairplay.vcxproj.user │ ├── fairplay_ex.c │ ├── remap_segment.h │ └── threads.h └── remap_segment.h └── 抓包 ├── 9.3.2.audio-end.TXT ├── 9.3.2.audio-start.TXT ├── airplay.TXT ├── airplay2.TXT ├── airplay_other.TXT ├── airplay_other2.TXT ├── 屏幕带声音转纯声音然后关闭全过程(9.3.2).ncf └── 纯声音转屏幕带声音(9.3.2).ncf /AirplayLibrary/AirPlay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay.sln -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/AirPlay.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/AirPlay.vcxproj -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/AirPlay.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/AirPlay.vcxproj.filters -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/AirPlay.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/AirPlay.vcxproj.user -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/airport.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/airport.key -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/Makefile.am -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/aac_eld/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/aac_eld/Makefile.am -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/aac_eld/aac_eld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/aac_eld/aac_eld.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/aac_eld/aac_eld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/aac_eld/aac_eld.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/airplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/airplay.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/airplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/airplay.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/alac/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/alac/Makefile.am -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/alac/alac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/alac/alac.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/alac/alac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/alac/alac.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/alac/stdint_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/alac/stdint_win.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/audio.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/audio.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/compat.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/digest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/digest.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/digest.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/dnssd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/dnssd.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/dnssd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/dnssd.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/dnssd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/dnssd.m -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/dnssdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/dnssdint.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fairplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fairplay.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fairplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fairplay.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_archdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_archdef.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_audio.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_bitbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_bitbuffer.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_bitstream.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_core.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_crc.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_hybrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_hybrid.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_tools_rom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_tools_rom.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_trigFcts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/FDK_trigFcts.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/aacdecoder_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/aacdecoder_lib.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/aacenc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/aacenc_lib.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/abs.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/arm/clz_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/arm/clz_arm.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/arm/cplx_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/arm/cplx_mul.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/arm/fixmadd_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/arm/fixmadd_arm.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/arm/fixmul_arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/arm/fixmul_arm.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/arm/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/arm/scale.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/arm/scramble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/arm/scramble.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/audio.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/autocorr2nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/autocorr2nd.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/clz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/clz.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/cmdl_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/cmdl_parser.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/common_fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/common_fix.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/conv_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/conv_string.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/cplx_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/cplx_mul.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/dct.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/fft.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/fft_rad2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/fft_rad2.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/fixmadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/fixmadd.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/fixminmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/fixminmax.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/fixmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/fixmul.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/fixpoint_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/fixpoint_math.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/genericStds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/genericStds.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/machine_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/machine_type.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mdct.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mips/abs_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mips/abs_mips.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mips/clz_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mips/clz_mips.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mips/cplx_mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mips/cplx_mul.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mips/fixmadd_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mips/fixmadd_mips.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mips/fixmul_mips.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mips/fixmul_mips.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mips/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mips/scale.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mips/scramble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mips/scramble.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mpegFileRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mpegFileRead.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/mpegFileWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/mpegFileWrite.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/pcmutils_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/pcmutils_lib.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/qmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/qmf.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/sbr_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/sbr_encoder.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/sbrdecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/sbrdecoder.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/scale.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/scramble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/scramble.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/tp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/tp_data.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/tpdec_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/tpdec_lib.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/tpenc_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/tpenc_lib.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/wav_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/wav_file.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/x86/abs_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/x86/abs_x86.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/include/x86/fixmul_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/include/x86/fixmul_x86.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/lib/libfdk.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/lib/libfdk.def -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/lib/libfdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/lib/libfdk.dll -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/lib/libfdk.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/lib/libfdk.exp -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/fdkaac/lib/libfdk.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/fdkaac/lib/libfdk.lib -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/global.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/http_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/http_parser.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/http_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/http_parser.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/http_request.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/http_request.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/http_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/http_request.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/http_response.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/http_response.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/http_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/http_response.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/httpd.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/httpd.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/libfdk.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/libfdk.def -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/libfdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/libfdk.dll -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/libfdk.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/libfdk.exp -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/libfdk.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/libfdk.lib -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/libplist.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/libplist.dll -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/logger.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/logger.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/memalign.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/mycrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/mycrypt.dll -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/mycrypt.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/mycrypt.exp -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/mycrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/mycrypt.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/mycrypt.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/mycrypt.ilk -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/mycrypt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/mycrypt.lib -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/mycrypt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/mycrypt.pdb -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/netutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/netutils.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/netutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/netutils.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/plist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/plist.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/plistlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/plistlib.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/plistlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/plistlib.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/raop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/raop.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/raop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/raop.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/raop_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/raop_buffer.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/raop_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/raop_buffer.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/raop_rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/raop_rtp.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/raop_rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/raop_rtp.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/sdp.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/sdp.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/sockets.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/threads.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/utils.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/lib/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/lib/utils.h -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/main.c -------------------------------------------------------------------------------- /AirplayLibrary/AirPlay/mediaserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/AirPlay/mediaserver.h -------------------------------------------------------------------------------- /AirplayLibrary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplayLibrary/README.md -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/AirPlay.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/AirPlay.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/SDL.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/airport.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/airport.key -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/avcodec-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/avcodec-55.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/avdevice-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/avdevice-55.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/avfilter-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/avfilter-4.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/avformat-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/avformat-55.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/avutil-52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/avutil-52.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/libfdk.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/libfdk.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/libiconv-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/libiconv-2.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/libplist.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/libplist.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/libpthread-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/libpthread-2.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/libxml2-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/libxml2-2.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/mycrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/mycrypt.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/postproc-52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/postproc-52.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/swresample-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/swresample-0.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/swscale-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/swscale-2.dll -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/xindawn-airplay-sdk-example.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/xindawn-airplay-sdk-example.exe -------------------------------------------------------------------------------- /AirplaySdkExample/Debug/xindawn-airplay-sdk-example_manifest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/Debug/xindawn-airplay-sdk-example_manifest.rc -------------------------------------------------------------------------------- /AirplaySdkExample/VideoSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/VideoSource.cpp -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_active.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_audio.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_byteorder.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_cdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_cdrom.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config_dreamcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config_dreamcast.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config_macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config_macos.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config_macosx.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config_minimal.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config_nds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config_nds.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config_os2.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config_symbian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config_symbian.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_config_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_config_win32.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_copying.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_endian.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_error.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_events.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_getenv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_getenv.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_keysym.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_keysym.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_main.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_name.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_platform.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_quit.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_thread.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_timer.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_types.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/SDL_video.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/begin_code.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/SDL/close_code.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/_mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/_mingw.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/inttypes.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/old_codec_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/old_codec_ids.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/vda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/vda.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavdevice/version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavfilter/asrc_abuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavfilter/asrc_abuffer.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavfilter/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavfilter/avcodec.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavfilter/avfiltergraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavfilter/avfiltergraph.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavfilter/version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavformat/avformat.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavformat/avio.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavformat/version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/adler32.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/aes.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/attributes.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/audioconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/audioconvert.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/avassert.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/avstring.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/avutil.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/base64.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/bprint.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/bswap.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/buffer.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/common.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/cpu.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/crc.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/dict.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/error.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/eval.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/fifo.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/file.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/frame.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/hmac.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/intfloat_readwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/intfloat_readwrite.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/lfg.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/log.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/lzo.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/macros.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/md5.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/mem.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/old_pix_fmts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/old_pix_fmts.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/opt.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/rational.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/sha.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/sha512.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/time.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/timecode.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libavutil/xtea.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libpostproc/version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libswresample/swresample.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libswresample/version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libswscale/swscale.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/libswscale/version.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/stdint.h -------------------------------------------------------------------------------- /AirplaySdkExample/include/xindawn/mediaserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/include/xindawn/mediaserver.h -------------------------------------------------------------------------------- /AirplaySdkExample/lib/AirPlay.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/AirPlay.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/SDL.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/SDL.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/SDLmain.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/SDLmain.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/avcodec.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/avdevice.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/avfilter.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/avformat.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/avutil.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/postproc.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/swresample.lib -------------------------------------------------------------------------------- /AirplaySdkExample/lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/lib/swscale.lib -------------------------------------------------------------------------------- /AirplaySdkExample/utils/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/memalign.h -------------------------------------------------------------------------------- /AirplaySdkExample/utils/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/sockets.h -------------------------------------------------------------------------------- /AirplaySdkExample/utils/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/threads.h -------------------------------------------------------------------------------- /AirplaySdkExample/utils/vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/vlc.h -------------------------------------------------------------------------------- /AirplaySdkExample/utils/xdw_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/xdw_list.c -------------------------------------------------------------------------------- /AirplaySdkExample/utils/xdw_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/xdw_list.h -------------------------------------------------------------------------------- /AirplaySdkExample/utils/xdw_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/xdw_lock.c -------------------------------------------------------------------------------- /AirplaySdkExample/utils/xdw_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/xdw_lock.h -------------------------------------------------------------------------------- /AirplaySdkExample/utils/xdw_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/utils/xdw_std.h -------------------------------------------------------------------------------- /AirplaySdkExample/videosource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/videosource.h -------------------------------------------------------------------------------- /AirplaySdkExample/xindawn-airplay-sdk-example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/xindawn-airplay-sdk-example.sln -------------------------------------------------------------------------------- /AirplaySdkExample/xindawn-airplay-sdk-example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/xindawn-airplay-sdk-example.vcxproj -------------------------------------------------------------------------------- /AirplaySdkExample/xindawn-airplay-sdk-example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/xindawn-airplay-sdk-example.vcxproj.filters -------------------------------------------------------------------------------- /AirplaySdkExample/xindawn-airplay-sdk-example.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/AirplaySdkExample/xindawn-airplay-sdk-example.vcxproj.user -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Backup/mycrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Backup/mycrypt.sln -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Backup/mycrypt.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Backup/mycrypt.v11.suo -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Curve25519/curve25519-donna-c64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Curve25519/curve25519-donna-c64.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Curve25519/curve25519-donna-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Curve25519/curve25519-donna-test.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Curve25519/curve25519-donna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Curve25519/curve25519-donna.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Curve25519/curve25519-donna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Curve25519/curve25519-donna.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/ed25519_32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/ed25519_32.dll -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/ed25519_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/ed25519_64.dll -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/license.txt -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/readme.md -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/add_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/add_scalar.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/ed25519.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/fe.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/fe.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/fixedint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/fixedint.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/ge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/ge.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/ge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/ge.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/key_exchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/key_exchange.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/keypair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/keypair.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/precomp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/precomp_data.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/sc.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/sc.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/seed.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/sha512.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/sha512.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/sign.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/src/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/src/verify.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/Ed25519/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/Ed25519/test.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport.css -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport.xslt -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport_Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport_Error.png -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport_Information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport_Information.png -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport_Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport_Success.png -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport_Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/_UpgradeReport_Files/UpgradeReport_Warning.png -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/Makefile.am -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/aes.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/aes_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/aes_locl.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/base64.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/base64.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/bigint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/bigint.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/bigint.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/bigint_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/bigint_impl.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/config.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/crypto.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/hmac.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/md5.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/new_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/new_aes.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/os_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/os_port.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/rc4.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/rsakey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/rsakey.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/rsakey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/rsakey.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/rsapem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/rsapem.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/rsapem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/rsapem.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/crypto/sha1.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/debug/mycrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/debug/mycrypt.dll -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/debug/mycrypt.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/debug/mycrypt.exp -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/debug/mycrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/debug/mycrypt.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/debug/mycrypt.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/debug/mycrypt.ilk -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/debug/mycrypt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/debug/mycrypt.lib -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/debug/mycrypt.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/debug/mycrypt.pdb -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt.sln -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt.suo -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/CL.read.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/CL.write.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/add_scalar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/add_scalar.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/aes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/aes.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/base64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/base64.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/bigint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/bigint.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/cl.command.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/curve25519-donna.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/curve25519-donna.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/fe.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/fe.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/ge.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/ge.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/hmac.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/hmac.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/key_exchange.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/key_exchange.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/keypair.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/keypair.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link.7776-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link.7776-cvtres.read.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link.7776-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link.7776-cvtres.write.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link.7776.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link.7776.read.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link.7776.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link.7776.write.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link.command.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link.read.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/link.write.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/md5.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/md5.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mt.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mt.command.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mt.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mt.read.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mt.write.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.Build.CppClean.log -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.dll.embed.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.dll.embed.manifest -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.dll.embed.manifest.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.dll.embed.manifest.res -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.dll.intermediate.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.dll.intermediate.manifest -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.lastbuildstate -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.log -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt.write.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt_manifest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/mycrypt_manifest.rc -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/new_aes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/new_aes.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/rc.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/rc.command.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/rc.read.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/rc.write.1.tlog -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/rc4.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/rc4.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/rsakey.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/rsakey.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/rsapem.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/rsapem.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/sc.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/sc.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/seed.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/seed.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/sha1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/sha1.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/sha512.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/sha512.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/sign.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/sign.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/vc100.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/vc100.idb -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/vc100.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/vc100.pdb -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/Debug/verify.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/Debug/verify.obj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/ReadMe.txt -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/inttypes.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/mycrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/mycrypt.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcproj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcproj.WIN-MK2ULPM4DLM.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcproj.WIN-MK2ULPM4DLM.Administrator.user -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcxproj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcxproj.filters -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/mycrypt.vcxproj.user -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/stdafx.cpp -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/stdafx.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_win32/mycrypt/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_win32/mycrypt/stdint.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Curve25519/curve25519-donna-c64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Curve25519/curve25519-donna-c64.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Curve25519/curve25519-donna-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Curve25519/curve25519-donna-test.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Curve25519/curve25519-donna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Curve25519/curve25519-donna.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Curve25519/curve25519-donna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Curve25519/curve25519-donna.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Debug/mycrypt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Debug/mycrypt.lib -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/ed25519_32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/ed25519_32.dll -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/ed25519_64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/ed25519_64.dll -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/license.txt -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/readme.md -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/add_scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/add_scalar.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/ed25519.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/fe.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/fe.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/fixedint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/fixedint.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/ge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/ge.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/ge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/ge.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/key_exchange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/key_exchange.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/keypair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/keypair.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/precomp_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/precomp_data.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/sc.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/sc.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/seed.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/sha512.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/sha512.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/sign.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/src/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/src/verify.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/Ed25519/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/Ed25519/test.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/Makefile.am -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/aes.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/aes_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/aes_locl.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/base64.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/base64.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/bigint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/bigint.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/bigint.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/bigint_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/bigint_impl.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/config.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/crypto.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/hmac.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/md5.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/new_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/new_aes.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/os_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/os_port.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/rc4.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/rsakey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/rsakey.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/rsakey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/rsakey.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/rsapem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/rsapem.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/rsapem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/rsapem.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/crypto/sha1.c -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt.opensdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt.opensdf -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt.sln -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt.suo -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt.v11.suo -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/Pocket PC 2003 (ARMV4)/Debug/mycrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/Pocket PC 2003 (ARMV4)/Debug/mycrypt.dll -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/Pocket PC 2003 (ARMV4)/Debug/mycrypt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/Pocket PC 2003 (ARMV4)/Debug/mycrypt.lib -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/ReadMe.txt -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/inttypes.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycrypt.c: -------------------------------------------------------------------------------- 1 | #include "mycrypt.h" 2 | 3 | -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycrypt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/mycrypt.def -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/mycrypt.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcproj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcproj.WIN-MK2ULPM4DLM.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcproj.WIN-MK2ULPM4DLM.Administrator.user -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcxproj -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcxproj.filters -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/mycrypt.vcxproj.user -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/mycryptppc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/mycryptppc.rc -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/res/mycrypt.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/res/mycrypt.rc2 -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/resourceppc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/resourceppc.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/stdafx.cpp -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/stdafx.h -------------------------------------------------------------------------------- /MyCrypt/mycrypt_wince/mycrypt/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/MyCrypt/mycrypt_wince/mycrypt/stdint.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/README.md -------------------------------------------------------------------------------- /fairplay-server-master/LICENSE: -------------------------------------------------------------------------------- 1 | The code is released under GPL. 2 | -------------------------------------------------------------------------------- /fairplay-server-master/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/Makefile -------------------------------------------------------------------------------- /fairplay-server-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/README.md -------------------------------------------------------------------------------- /fairplay-server-master/airplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/airplay -------------------------------------------------------------------------------- /fairplay-server-master/airplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/airplay.c -------------------------------------------------------------------------------- /fairplay-server-master/fairplay-core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay-core.o -------------------------------------------------------------------------------- /fairplay-server-master/fairplay-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay-server -------------------------------------------------------------------------------- /fairplay-server-master/fairplay-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay-server.c -------------------------------------------------------------------------------- /fairplay-server-master/fairplay-server.c~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay-server.c~ -------------------------------------------------------------------------------- /fairplay-server-master/fairplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay.c -------------------------------------------------------------------------------- /fairplay-server-master/fairplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay.h -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/ReadMe.txt -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/airplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/airplay.c -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay-core.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay-core.idb -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay-core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay-core.o -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay-server.c -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay.c -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay.h -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay.sln -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay.suo -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay.v11.suo -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay.vcxproj -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay.vcxproj.filters -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay.vcxproj.user -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/fairplay_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/fairplay_ex.c -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/remap_segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/remap_segment.h -------------------------------------------------------------------------------- /fairplay-server-master/fairplay/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/fairplay/threads.h -------------------------------------------------------------------------------- /fairplay-server-master/remap_segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/fairplay-server-master/remap_segment.h -------------------------------------------------------------------------------- /抓包/9.3.2.audio-end.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/抓包/9.3.2.audio-end.TXT -------------------------------------------------------------------------------- /抓包/9.3.2.audio-start.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/抓包/9.3.2.audio-start.TXT -------------------------------------------------------------------------------- /抓包/airplay.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/抓包/airplay.TXT -------------------------------------------------------------------------------- /抓包/airplay2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/抓包/airplay2.TXT -------------------------------------------------------------------------------- /抓包/airplay_other.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/抓包/airplay_other.TXT -------------------------------------------------------------------------------- /抓包/airplay_other2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/抓包/airplay_other2.TXT -------------------------------------------------------------------------------- /抓包/屏幕带声音转纯声音然后关闭全过程(9.3.2).ncf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/抓包/屏幕带声音转纯声音然后关闭全过程(9.3.2).ncf -------------------------------------------------------------------------------- /抓包/纯声音转屏幕带声音(9.3.2).ncf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phonegapX/AirPlay/HEAD/抓包/纯声音转屏幕带声音(9.3.2).ncf --------------------------------------------------------------------------------