├── .gitignore ├── .vscode └── c_cpp_properties.json ├── 2node ├── .npmignore ├── .vscode │ └── settings.json ├── LICENSE ├── README.md ├── binding.gyp ├── just.config.js ├── lib │ ├── glrender.js │ ├── index.d.ts │ ├── index.js │ ├── render.js │ └── webgl-utils.js ├── npm_argv.js ├── package.json ├── platform │ └── win32 │ │ ├── avcodec-58.dll │ │ ├── avdevice-58.dll │ │ ├── avfilter-7.dll │ │ ├── avformat-58.dll │ │ ├── avutil-56.dll │ │ ├── export.h │ │ ├── portaudio_x86.dll │ │ ├── postproc-55.dll │ │ ├── swresample-3.dll │ │ └── swscale-5.dll ├── screenshots │ ├── recording.png │ └── settings.png ├── scripts │ ├── build.js │ ├── cleanup.js │ └── deploy.js ├── src │ └── main.cc ├── test-record.js └── test-remux.js ├── LICENSE ├── README.md ├── Recorder.sln ├── Recorder ├── AecKsBinder.cpp ├── AecKsBinder.h ├── Recorder.cpp ├── Recorder.vcxproj ├── Recorder.vcxproj.filters ├── common.h ├── d3d_helper.cpp ├── d3d_helper.h ├── d3d_pixelshader.hlsl ├── d3d_vertexshader.hlsl ├── device_audios.cpp ├── device_audios.h ├── device_videos.cpp ├── device_videos.h ├── dllmain.cpp ├── encoder_aac.cpp ├── encoder_aac.h ├── encoder_video.cpp ├── encoder_video.h ├── encoder_video_define.h ├── encoder_video_factory.cpp ├── encoder_video_factory.h ├── encoder_video_nvenc.cpp ├── encoder_video_nvenc.h ├── encoder_video_x264.cpp ├── encoder_video_x264.h ├── error_define.h ├── export.cpp ├── export.h ├── filter.cpp ├── filter.h ├── filter_amix.cpp ├── filter_amix.h ├── filter_aresample.cpp ├── filter_aresample.h ├── hardware_acceleration.cpp ├── hardware_acceleration.h ├── headers_ffmpeg.h ├── headers_mmdevice.cpp ├── headers_mmdevice.h ├── log_helper.cpp ├── log_helper.h ├── main.cpp ├── mul_db.h ├── muxer_define.h ├── muxer_ffmpeg.cpp ├── muxer_ffmpeg.h ├── muxer_file.cpp ├── muxer_file.h ├── record_audio.cpp ├── record_audio.h ├── record_audio_define.h ├── record_audio_dshow.cpp ├── record_audio_dshow.h ├── record_audio_factory.cpp ├── record_audio_factory.h ├── record_audio_wasapi.cpp ├── record_audio_wasapi.h ├── record_desktop.cpp ├── record_desktop.h ├── record_desktop_define.h ├── record_desktop_duplication.cpp ├── record_desktop_duplication.h ├── record_desktop_factory.cpp ├── record_desktop_factory.h ├── record_desktop_ffmpeg_dshow.cpp ├── record_desktop_ffmpeg_dshow.h ├── record_desktop_ffmpeg_gdi.cpp ├── record_desktop_ffmpeg_gdi.h ├── record_desktop_gdi.cpp ├── record_desktop_gdi.h ├── record_desktop_mag.cpp ├── record_desktop_mag.h ├── record_desktop_wgc.cpp ├── record_desktop_wgc.h ├── remuxer_ffmpeg.cpp ├── remuxer_ffmpeg.h ├── resample_pcm.cpp ├── resample_pcm.h ├── ring_buffer.cpp ├── ring_buffer.h ├── sws_helper.cpp ├── sws_helper.h ├── system_error.cpp ├── system_error.h ├── system_lib.cpp ├── system_lib.h ├── system_time.cpp ├── system_time.h ├── system_version.cpp ├── system_version.h ├── transcode_aac.cpp ├── utils_string.cpp └── utils_string.h ├── Test ├── Test.vcxproj ├── Test.vcxproj.filters └── mian.cpp ├── WGC ├── WGC.vcxproj ├── WGC.vcxproj.filters ├── WGC.vcxproj.user ├── dllmain.cpp ├── export.cpp ├── export.h ├── pch.cpp ├── pch.h ├── wgc_session_impl.cpp └── wgc_session_impl.h ├── ffmpeg ├── bin │ ├── avcodec-58.dll │ ├── avdevice-58.dll │ ├── avfilter-7.dll │ ├── avformat-58.dll │ ├── avutil-56.dll │ ├── postproc-55.dll │ ├── swresample-3.dll │ └── swscale-5.dll ├── examples │ ├── Makefile │ ├── README │ ├── avio_dir_cmd.c │ ├── avio_reading.c │ ├── decode_audio.c │ ├── decode_video.c │ ├── demuxing_decoding.c │ ├── encode_audio.c │ ├── encode_video.c │ ├── extract_mvs.c │ ├── filter_audio.c │ ├── filtering_audio.c │ ├── filtering_video.c │ ├── http_multiclient.c │ ├── hw_decode.c │ ├── metadata.c │ ├── muxing.c │ ├── qsvdec.c │ ├── remuxing.c │ ├── resampling_audio.c │ ├── scaling_video.c │ ├── transcode_aac.c │ ├── transcoding.c │ ├── vaapi_encode.c │ └── vaapi_transcode.c ├── include │ ├── libavcodec │ │ ├── ac3_parser.h │ │ ├── adts_parser.h │ │ ├── avcodec.h │ │ ├── avdct.h │ │ ├── avfft.h │ │ ├── d3d11va.h │ │ ├── dirac.h │ │ ├── dv_profile.h │ │ ├── dxva2.h │ │ ├── jni.h │ │ ├── mediacodec.h │ │ ├── qsv.h │ │ ├── vaapi.h │ │ ├── vdpau.h │ │ ├── version.h │ │ ├── videotoolbox.h │ │ ├── vorbis_parser.h │ │ └── xvmc.h │ ├── libavdevice │ │ ├── avdevice.h │ │ └── version.h │ ├── libavfilter │ │ ├── avfilter.h │ │ ├── buffersink.h │ │ ├── buffersrc.h │ │ └── version.h │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ └── version.h │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── aes_ctr.h │ │ ├── attributes.h │ │ ├── audio_fifo.h │ │ ├── avassert.h │ │ ├── avconfig.h │ │ ├── avstring.h │ │ ├── avutil.h │ │ ├── base64.h │ │ ├── blowfish.h │ │ ├── bprint.h │ │ ├── bswap.h │ │ ├── buffer.h │ │ ├── camellia.h │ │ ├── cast5.h │ │ ├── channel_layout.h │ │ ├── common.h │ │ ├── cpu.h │ │ ├── crc.h │ │ ├── des.h │ │ ├── dict.h │ │ ├── display.h │ │ ├── downmix_info.h │ │ ├── encryption_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hmac.h │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_d3d11va.h │ │ ├── hwcontext_drm.h │ │ ├── hwcontext_dxva2.h │ │ ├── hwcontext_mediacodec.h │ │ ├── hwcontext_qsv.h │ │ ├── hwcontext_vaapi.h │ │ ├── hwcontext_vdpau.h │ │ ├── hwcontext_videotoolbox.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.h │ │ ├── macros.h │ │ ├── mastering_display_metadata.h │ │ ├── mathematics.h │ │ ├── md5.h │ │ ├── mem.h │ │ ├── motion_vector.h │ │ ├── murmur3.h │ │ ├── opt.h │ │ ├── parseutils.h │ │ ├── pixdesc.h │ │ ├── pixelutils.h │ │ ├── pixfmt.h │ │ ├── random_seed.h │ │ ├── rational.h │ │ ├── rc4.h │ │ ├── replaygain.h │ │ ├── ripemd.h │ │ ├── samplefmt.h │ │ ├── sha.h │ │ ├── sha512.h │ │ ├── spherical.h │ │ ├── stereo3d.h │ │ ├── tea.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── tree.h │ │ ├── twofish.h │ │ ├── version.h │ │ └── xtea.h │ ├── libpostproc │ │ ├── postprocess.h │ │ └── version.h │ ├── libswresample │ │ ├── swresample.h │ │ └── version.h │ └── libswscale │ │ ├── swscale.h │ │ └── version.h └── lib │ ├── avcodec-58.def │ ├── avcodec.lib │ ├── avdevice-58.def │ ├── avdevice.lib │ ├── avfilter-7.def │ ├── avfilter.lib │ ├── avformat-58.def │ ├── avformat.lib │ ├── avutil-56.def │ ├── avutil.lib │ ├── libavcodec.dll.a │ ├── libavdevice.dll.a │ ├── libavfilter.dll.a │ ├── libavformat.dll.a │ ├── libavutil.dll.a │ ├── libpostproc.dll.a │ ├── libswresample.dll.a │ ├── libswscale.dll.a │ ├── postproc-55.def │ ├── postproc.lib │ ├── swresample-3.def │ ├── swresample.lib │ ├── swscale-5.def │ └── swscale.lib └── portaudio ├── bin └── portaudio_x86.dll ├── include ├── pa_asio.h ├── pa_jack.h ├── pa_linux_alsa.h ├── pa_mac_core.h ├── pa_win_ds.h ├── pa_win_wasapi.h ├── pa_win_waveformat.h ├── pa_win_wdmks.h ├── pa_win_wmme.h └── portaudio.h └── lib ├── portaudio_static_x86.lib └── portaudio_x86.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /2node/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/.npmignore -------------------------------------------------------------------------------- /2node/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/.vscode/settings.json -------------------------------------------------------------------------------- /2node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/LICENSE -------------------------------------------------------------------------------- /2node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/README.md -------------------------------------------------------------------------------- /2node/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/binding.gyp -------------------------------------------------------------------------------- /2node/just.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/just.config.js -------------------------------------------------------------------------------- /2node/lib/glrender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/lib/glrender.js -------------------------------------------------------------------------------- /2node/lib/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/lib/index.d.ts -------------------------------------------------------------------------------- /2node/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/lib/index.js -------------------------------------------------------------------------------- /2node/lib/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/lib/render.js -------------------------------------------------------------------------------- /2node/lib/webgl-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/lib/webgl-utils.js -------------------------------------------------------------------------------- /2node/npm_argv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/npm_argv.js -------------------------------------------------------------------------------- /2node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/package.json -------------------------------------------------------------------------------- /2node/platform/win32/avcodec-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/avcodec-58.dll -------------------------------------------------------------------------------- /2node/platform/win32/avdevice-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/avdevice-58.dll -------------------------------------------------------------------------------- /2node/platform/win32/avfilter-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/avfilter-7.dll -------------------------------------------------------------------------------- /2node/platform/win32/avformat-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/avformat-58.dll -------------------------------------------------------------------------------- /2node/platform/win32/avutil-56.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/avutil-56.dll -------------------------------------------------------------------------------- /2node/platform/win32/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/export.h -------------------------------------------------------------------------------- /2node/platform/win32/portaudio_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/portaudio_x86.dll -------------------------------------------------------------------------------- /2node/platform/win32/postproc-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/postproc-55.dll -------------------------------------------------------------------------------- /2node/platform/win32/swresample-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/swresample-3.dll -------------------------------------------------------------------------------- /2node/platform/win32/swscale-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/platform/win32/swscale-5.dll -------------------------------------------------------------------------------- /2node/screenshots/recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/screenshots/recording.png -------------------------------------------------------------------------------- /2node/screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/screenshots/settings.png -------------------------------------------------------------------------------- /2node/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/scripts/build.js -------------------------------------------------------------------------------- /2node/scripts/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/scripts/cleanup.js -------------------------------------------------------------------------------- /2node/scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/scripts/deploy.js -------------------------------------------------------------------------------- /2node/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/src/main.cc -------------------------------------------------------------------------------- /2node/test-record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/test-record.js -------------------------------------------------------------------------------- /2node/test-remux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/2node/test-remux.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/README.md -------------------------------------------------------------------------------- /Recorder.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder.sln -------------------------------------------------------------------------------- /Recorder/AecKsBinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/AecKsBinder.cpp -------------------------------------------------------------------------------- /Recorder/AecKsBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/AecKsBinder.h -------------------------------------------------------------------------------- /Recorder/Recorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/Recorder.cpp -------------------------------------------------------------------------------- /Recorder/Recorder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/Recorder.vcxproj -------------------------------------------------------------------------------- /Recorder/Recorder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/Recorder.vcxproj.filters -------------------------------------------------------------------------------- /Recorder/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/common.h -------------------------------------------------------------------------------- /Recorder/d3d_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/d3d_helper.cpp -------------------------------------------------------------------------------- /Recorder/d3d_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/d3d_helper.h -------------------------------------------------------------------------------- /Recorder/d3d_pixelshader.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/d3d_pixelshader.hlsl -------------------------------------------------------------------------------- /Recorder/d3d_vertexshader.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/d3d_vertexshader.hlsl -------------------------------------------------------------------------------- /Recorder/device_audios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/device_audios.cpp -------------------------------------------------------------------------------- /Recorder/device_audios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/device_audios.h -------------------------------------------------------------------------------- /Recorder/device_videos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/device_videos.cpp -------------------------------------------------------------------------------- /Recorder/device_videos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/device_videos.h -------------------------------------------------------------------------------- /Recorder/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/dllmain.cpp -------------------------------------------------------------------------------- /Recorder/encoder_aac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_aac.cpp -------------------------------------------------------------------------------- /Recorder/encoder_aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_aac.h -------------------------------------------------------------------------------- /Recorder/encoder_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video.cpp -------------------------------------------------------------------------------- /Recorder/encoder_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video.h -------------------------------------------------------------------------------- /Recorder/encoder_video_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video_define.h -------------------------------------------------------------------------------- /Recorder/encoder_video_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video_factory.cpp -------------------------------------------------------------------------------- /Recorder/encoder_video_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video_factory.h -------------------------------------------------------------------------------- /Recorder/encoder_video_nvenc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video_nvenc.cpp -------------------------------------------------------------------------------- /Recorder/encoder_video_nvenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video_nvenc.h -------------------------------------------------------------------------------- /Recorder/encoder_video_x264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video_x264.cpp -------------------------------------------------------------------------------- /Recorder/encoder_video_x264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/encoder_video_x264.h -------------------------------------------------------------------------------- /Recorder/error_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/error_define.h -------------------------------------------------------------------------------- /Recorder/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/export.cpp -------------------------------------------------------------------------------- /Recorder/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/export.h -------------------------------------------------------------------------------- /Recorder/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/filter.cpp -------------------------------------------------------------------------------- /Recorder/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/filter.h -------------------------------------------------------------------------------- /Recorder/filter_amix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/filter_amix.cpp -------------------------------------------------------------------------------- /Recorder/filter_amix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/filter_amix.h -------------------------------------------------------------------------------- /Recorder/filter_aresample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/filter_aresample.cpp -------------------------------------------------------------------------------- /Recorder/filter_aresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/filter_aresample.h -------------------------------------------------------------------------------- /Recorder/hardware_acceleration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/hardware_acceleration.cpp -------------------------------------------------------------------------------- /Recorder/hardware_acceleration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/hardware_acceleration.h -------------------------------------------------------------------------------- /Recorder/headers_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/headers_ffmpeg.h -------------------------------------------------------------------------------- /Recorder/headers_mmdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/headers_mmdevice.cpp -------------------------------------------------------------------------------- /Recorder/headers_mmdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/headers_mmdevice.h -------------------------------------------------------------------------------- /Recorder/log_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/log_helper.cpp -------------------------------------------------------------------------------- /Recorder/log_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/log_helper.h -------------------------------------------------------------------------------- /Recorder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/main.cpp -------------------------------------------------------------------------------- /Recorder/mul_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/mul_db.h -------------------------------------------------------------------------------- /Recorder/muxer_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/muxer_define.h -------------------------------------------------------------------------------- /Recorder/muxer_ffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/muxer_ffmpeg.cpp -------------------------------------------------------------------------------- /Recorder/muxer_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/muxer_ffmpeg.h -------------------------------------------------------------------------------- /Recorder/muxer_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/muxer_file.cpp -------------------------------------------------------------------------------- /Recorder/muxer_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/muxer_file.h -------------------------------------------------------------------------------- /Recorder/record_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio.cpp -------------------------------------------------------------------------------- /Recorder/record_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio.h -------------------------------------------------------------------------------- /Recorder/record_audio_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio_define.h -------------------------------------------------------------------------------- /Recorder/record_audio_dshow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio_dshow.cpp -------------------------------------------------------------------------------- /Recorder/record_audio_dshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio_dshow.h -------------------------------------------------------------------------------- /Recorder/record_audio_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio_factory.cpp -------------------------------------------------------------------------------- /Recorder/record_audio_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio_factory.h -------------------------------------------------------------------------------- /Recorder/record_audio_wasapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio_wasapi.cpp -------------------------------------------------------------------------------- /Recorder/record_audio_wasapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_audio_wasapi.h -------------------------------------------------------------------------------- /Recorder/record_desktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop.cpp -------------------------------------------------------------------------------- /Recorder/record_desktop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop.h -------------------------------------------------------------------------------- /Recorder/record_desktop_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_define.h -------------------------------------------------------------------------------- /Recorder/record_desktop_duplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_duplication.cpp -------------------------------------------------------------------------------- /Recorder/record_desktop_duplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_duplication.h -------------------------------------------------------------------------------- /Recorder/record_desktop_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_factory.cpp -------------------------------------------------------------------------------- /Recorder/record_desktop_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_factory.h -------------------------------------------------------------------------------- /Recorder/record_desktop_ffmpeg_dshow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_ffmpeg_dshow.cpp -------------------------------------------------------------------------------- /Recorder/record_desktop_ffmpeg_dshow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_ffmpeg_dshow.h -------------------------------------------------------------------------------- /Recorder/record_desktop_ffmpeg_gdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_ffmpeg_gdi.cpp -------------------------------------------------------------------------------- /Recorder/record_desktop_ffmpeg_gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_ffmpeg_gdi.h -------------------------------------------------------------------------------- /Recorder/record_desktop_gdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_gdi.cpp -------------------------------------------------------------------------------- /Recorder/record_desktop_gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_gdi.h -------------------------------------------------------------------------------- /Recorder/record_desktop_mag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_mag.cpp -------------------------------------------------------------------------------- /Recorder/record_desktop_mag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_mag.h -------------------------------------------------------------------------------- /Recorder/record_desktop_wgc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_wgc.cpp -------------------------------------------------------------------------------- /Recorder/record_desktop_wgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/record_desktop_wgc.h -------------------------------------------------------------------------------- /Recorder/remuxer_ffmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/remuxer_ffmpeg.cpp -------------------------------------------------------------------------------- /Recorder/remuxer_ffmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/remuxer_ffmpeg.h -------------------------------------------------------------------------------- /Recorder/resample_pcm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/resample_pcm.cpp -------------------------------------------------------------------------------- /Recorder/resample_pcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/resample_pcm.h -------------------------------------------------------------------------------- /Recorder/ring_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/ring_buffer.cpp -------------------------------------------------------------------------------- /Recorder/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/ring_buffer.h -------------------------------------------------------------------------------- /Recorder/sws_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/sws_helper.cpp -------------------------------------------------------------------------------- /Recorder/sws_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/sws_helper.h -------------------------------------------------------------------------------- /Recorder/system_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/system_error.cpp -------------------------------------------------------------------------------- /Recorder/system_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/system_error.h -------------------------------------------------------------------------------- /Recorder/system_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/system_lib.cpp -------------------------------------------------------------------------------- /Recorder/system_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/system_lib.h -------------------------------------------------------------------------------- /Recorder/system_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/system_time.cpp -------------------------------------------------------------------------------- /Recorder/system_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/system_time.h -------------------------------------------------------------------------------- /Recorder/system_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/system_version.cpp -------------------------------------------------------------------------------- /Recorder/system_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/system_version.h -------------------------------------------------------------------------------- /Recorder/transcode_aac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/transcode_aac.cpp -------------------------------------------------------------------------------- /Recorder/utils_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/utils_string.cpp -------------------------------------------------------------------------------- /Recorder/utils_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Recorder/utils_string.h -------------------------------------------------------------------------------- /Test/Test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Test/Test.vcxproj -------------------------------------------------------------------------------- /Test/Test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Test/Test.vcxproj.filters -------------------------------------------------------------------------------- /Test/mian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/Test/mian.cpp -------------------------------------------------------------------------------- /WGC/WGC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/WGC.vcxproj -------------------------------------------------------------------------------- /WGC/WGC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/WGC.vcxproj.filters -------------------------------------------------------------------------------- /WGC/WGC.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/WGC.vcxproj.user -------------------------------------------------------------------------------- /WGC/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/dllmain.cpp -------------------------------------------------------------------------------- /WGC/export.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/export.cpp -------------------------------------------------------------------------------- /WGC/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/export.h -------------------------------------------------------------------------------- /WGC/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /WGC/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/pch.h -------------------------------------------------------------------------------- /WGC/wgc_session_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/wgc_session_impl.cpp -------------------------------------------------------------------------------- /WGC/wgc_session_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/WGC/wgc_session_impl.h -------------------------------------------------------------------------------- /ffmpeg/bin/avcodec-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/bin/avcodec-58.dll -------------------------------------------------------------------------------- /ffmpeg/bin/avdevice-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/bin/avdevice-58.dll -------------------------------------------------------------------------------- /ffmpeg/bin/avfilter-7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/bin/avfilter-7.dll -------------------------------------------------------------------------------- /ffmpeg/bin/avformat-58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/bin/avformat-58.dll -------------------------------------------------------------------------------- /ffmpeg/bin/avutil-56.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/bin/avutil-56.dll -------------------------------------------------------------------------------- /ffmpeg/bin/postproc-55.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/bin/postproc-55.dll -------------------------------------------------------------------------------- /ffmpeg/bin/swresample-3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/bin/swresample-3.dll -------------------------------------------------------------------------------- /ffmpeg/bin/swscale-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/bin/swscale-5.dll -------------------------------------------------------------------------------- /ffmpeg/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/Makefile -------------------------------------------------------------------------------- /ffmpeg/examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/README -------------------------------------------------------------------------------- /ffmpeg/examples/avio_dir_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/avio_dir_cmd.c -------------------------------------------------------------------------------- /ffmpeg/examples/avio_reading.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/avio_reading.c -------------------------------------------------------------------------------- /ffmpeg/examples/decode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/decode_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/decode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/decode_video.c -------------------------------------------------------------------------------- /ffmpeg/examples/demuxing_decoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/demuxing_decoding.c -------------------------------------------------------------------------------- /ffmpeg/examples/encode_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/encode_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/encode_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/encode_video.c -------------------------------------------------------------------------------- /ffmpeg/examples/extract_mvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/extract_mvs.c -------------------------------------------------------------------------------- /ffmpeg/examples/filter_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/filter_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/filtering_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/filtering_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/filtering_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/filtering_video.c -------------------------------------------------------------------------------- /ffmpeg/examples/http_multiclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/http_multiclient.c -------------------------------------------------------------------------------- /ffmpeg/examples/hw_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/hw_decode.c -------------------------------------------------------------------------------- /ffmpeg/examples/metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/metadata.c -------------------------------------------------------------------------------- /ffmpeg/examples/muxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/muxing.c -------------------------------------------------------------------------------- /ffmpeg/examples/qsvdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/qsvdec.c -------------------------------------------------------------------------------- /ffmpeg/examples/remuxing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/remuxing.c -------------------------------------------------------------------------------- /ffmpeg/examples/resampling_audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/resampling_audio.c -------------------------------------------------------------------------------- /ffmpeg/examples/scaling_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/scaling_video.c -------------------------------------------------------------------------------- /ffmpeg/examples/transcode_aac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/transcode_aac.c -------------------------------------------------------------------------------- /ffmpeg/examples/transcoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/transcoding.c -------------------------------------------------------------------------------- /ffmpeg/examples/vaapi_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/vaapi_encode.c -------------------------------------------------------------------------------- /ffmpeg/examples/vaapi_transcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/examples/vaapi_transcode.c -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/adts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/adts_parser.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/avcodec.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/avdct.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/avfft.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/dirac.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/dxva2.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/jni.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/qsv.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/vaapi.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/vdpau.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /ffmpeg/include/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavcodec/xvmc.h -------------------------------------------------------------------------------- /ffmpeg/include/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavdevice/avdevice.h -------------------------------------------------------------------------------- /ffmpeg/include/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavdevice/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavfilter/avfilter.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavfilter/buffersink.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /ffmpeg/include/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavfilter/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavformat/avformat.h -------------------------------------------------------------------------------- /ffmpeg/include/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavformat/avio.h -------------------------------------------------------------------------------- /ffmpeg/include/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavformat/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/adler32.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/aes.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/attributes.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/avassert.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/avconfig.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/avstring.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/avutil.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/base64.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/blowfish.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/bprint.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/bswap.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/buffer.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/camellia.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/cast5.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/channel_layout.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/common.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/cpu.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/crc.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/des.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/dict.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/display.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/downmix_info.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/encryption_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/encryption_info.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/error.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/eval.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/ffversion.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/fifo.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/file.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/frame.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hash.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hmac.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_mediacodec.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/imgutils.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/intfloat.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/lfg.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/log.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/lzo.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/macros.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/mathematics.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/md5.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/mem.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/motion_vector.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/murmur3.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/opt.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/parseutils.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/pixdesc.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/pixelutils.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/pixfmt.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/random_seed.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/rational.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/rc4.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/replaygain.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/ripemd.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/samplefmt.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/sha.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/sha512.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/spherical.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/stereo3d.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/tea.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/threadmessage.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/time.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/timecode.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/timestamp.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/tree.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/twofish.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libavutil/xtea.h -------------------------------------------------------------------------------- /ffmpeg/include/libpostproc/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libpostproc/postprocess.h -------------------------------------------------------------------------------- /ffmpeg/include/libpostproc/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libpostproc/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libswresample/swresample.h -------------------------------------------------------------------------------- /ffmpeg/include/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libswresample/version.h -------------------------------------------------------------------------------- /ffmpeg/include/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libswscale/swscale.h -------------------------------------------------------------------------------- /ffmpeg/include/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/include/libswscale/version.h -------------------------------------------------------------------------------- /ffmpeg/lib/avcodec-58.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avcodec-58.def -------------------------------------------------------------------------------- /ffmpeg/lib/avcodec.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avcodec.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avdevice-58.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avdevice-58.def -------------------------------------------------------------------------------- /ffmpeg/lib/avdevice.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avdevice.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avfilter-7.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avfilter-7.def -------------------------------------------------------------------------------- /ffmpeg/lib/avfilter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avfilter.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avformat-58.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avformat-58.def -------------------------------------------------------------------------------- /ffmpeg/lib/avformat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avformat.lib -------------------------------------------------------------------------------- /ffmpeg/lib/avutil-56.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avutil-56.def -------------------------------------------------------------------------------- /ffmpeg/lib/avutil.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/avutil.lib -------------------------------------------------------------------------------- /ffmpeg/lib/libavcodec.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/libavcodec.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libavdevice.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/libavdevice.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libavfilter.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/libavfilter.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libavformat.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/libavformat.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libavutil.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/libavutil.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libpostproc.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/libpostproc.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libswresample.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/libswresample.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/libswscale.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/libswscale.dll.a -------------------------------------------------------------------------------- /ffmpeg/lib/postproc-55.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/postproc-55.def -------------------------------------------------------------------------------- /ffmpeg/lib/postproc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/postproc.lib -------------------------------------------------------------------------------- /ffmpeg/lib/swresample-3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/swresample-3.def -------------------------------------------------------------------------------- /ffmpeg/lib/swresample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/swresample.lib -------------------------------------------------------------------------------- /ffmpeg/lib/swscale-5.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/swscale-5.def -------------------------------------------------------------------------------- /ffmpeg/lib/swscale.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/ffmpeg/lib/swscale.lib -------------------------------------------------------------------------------- /portaudio/bin/portaudio_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/bin/portaudio_x86.dll -------------------------------------------------------------------------------- /portaudio/include/pa_asio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_asio.h -------------------------------------------------------------------------------- /portaudio/include/pa_jack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_jack.h -------------------------------------------------------------------------------- /portaudio/include/pa_linux_alsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_linux_alsa.h -------------------------------------------------------------------------------- /portaudio/include/pa_mac_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_mac_core.h -------------------------------------------------------------------------------- /portaudio/include/pa_win_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_win_ds.h -------------------------------------------------------------------------------- /portaudio/include/pa_win_wasapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_win_wasapi.h -------------------------------------------------------------------------------- /portaudio/include/pa_win_waveformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_win_waveformat.h -------------------------------------------------------------------------------- /portaudio/include/pa_win_wdmks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_win_wdmks.h -------------------------------------------------------------------------------- /portaudio/include/pa_win_wmme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/pa_win_wmme.h -------------------------------------------------------------------------------- /portaudio/include/portaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/include/portaudio.h -------------------------------------------------------------------------------- /portaudio/lib/portaudio_static_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/lib/portaudio_static_x86.lib -------------------------------------------------------------------------------- /portaudio/lib/portaudio_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peilinok/screen-recorder/HEAD/portaudio/lib/portaudio_x86.lib --------------------------------------------------------------------------------