├── .cursor └── commands │ └── create-release-note.md ├── .gitattributes ├── .github └── workflows │ ├── build_base_images.yml │ ├── build_packages.yml │ └── build_releases.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── settings.json └── tasks.json ├── Build.en.md ├── Build.ja.md ├── BuildParallel ├── build.all.proj ├── buildAll.bat ├── rebuildRelease.bat └── release.rebuild.proj ├── GPUFeatures ├── r9_7950x_iGPU.txt ├── rx460.txt ├── rx460_ubuntu2004.txt ├── rx550.txt ├── rx5500xt.txt ├── rx5500xt_ubuntu2004.txt └── rx7900xt.txt ├── Install.en.md ├── Install.ja.md ├── PerfMonitor └── perf_monitor.pyw ├── Readme.ja.md ├── Readme.md ├── ReleaseNotes.md ├── VCECommon ├── DeviceDX11.cpp ├── DeviceDX9.cpp ├── Pipeline.cpp ├── PipelineMod.h ├── VCECommon.vcxproj └── VCECommon.vcxproj.filters ├── VCECore ├── VCECore.vcxproj ├── VCECore.vcxproj.filters ├── VCEInput.cpp ├── VCEInput.h ├── afs.h ├── afs_stg.h ├── api_hook.cpp ├── api_hook.h ├── convert_const.h ├── convert_csp.cpp ├── convert_csp.h ├── convert_csp_avx.cpp ├── convert_csp_avx2.cpp ├── convert_csp_simd.h ├── convert_csp_sse2.cpp ├── convert_csp_sse41.cpp ├── convert_csp_ssse3.cpp ├── cpu_info.cpp ├── cpu_info.h ├── gpu_info.cpp ├── gpu_info.h ├── gpuz_info.cpp ├── gpuz_info.h ├── logo.cpp ├── logo.h ├── rgy_arch.h ├── rgy_aspect_ratio.cpp ├── rgy_aspect_ratio.h ├── rgy_avlog.cpp ├── rgy_avlog.h ├── rgy_avutil.cpp ├── rgy_avutil.h ├── rgy_bitstream.cpp ├── rgy_bitstream.h ├── rgy_bitstream_aac.cpp ├── rgy_bitstream_aac.h ├── rgy_bitstream_avx2.cpp ├── rgy_bitstream_avx512bw.cpp ├── rgy_chapter.cpp ├── rgy_chapter.h ├── rgy_cmd.cpp ├── rgy_cmd.h ├── rgy_codepage.cpp ├── rgy_codepage.h ├── rgy_def.cpp ├── rgy_def.h ├── rgy_device.cpp ├── rgy_device.h ├── rgy_device_info_cache.cpp ├── rgy_device_info_cache.h ├── rgy_device_info_wmi.cpp ├── rgy_device_info_wmi.h ├── rgy_device_usage.cpp ├── rgy_device_usage.h ├── rgy_device_vulkan.cpp ├── rgy_device_vulkan.h ├── rgy_env.cpp ├── rgy_env.h ├── rgy_err.cpp ├── rgy_err.h ├── rgy_event.cpp ├── rgy_event.h ├── rgy_faw.cpp ├── rgy_faw.h ├── rgy_faw_avx2.cpp ├── rgy_faw_avx512bw.cpp ├── rgy_filesystem.cpp ├── rgy_filesystem.h ├── rgy_filter.cl ├── rgy_filter.cpp ├── rgy_filter.h ├── rgy_filter_afs.cpp ├── rgy_filter_afs.h ├── rgy_filter_afs_analyze.cl ├── rgy_filter_afs_analyze.cpp ├── rgy_filter_afs_filter.cl ├── rgy_filter_afs_filter.cpp ├── rgy_filter_afs_merge.cl ├── rgy_filter_afs_merge.cpp ├── rgy_filter_afs_synthesize.cl ├── rgy_filter_afs_synthesize.cpp ├── rgy_filter_cl.cpp ├── rgy_filter_cl.h ├── rgy_filter_colorspace.cpp ├── rgy_filter_colorspace.h ├── rgy_filter_colorspace_func.h ├── rgy_filter_convolution3d.cl ├── rgy_filter_convolution3d.cpp ├── rgy_filter_convolution3d.h ├── rgy_filter_crop.cpp ├── rgy_filter_curves.cl ├── rgy_filter_curves.cpp ├── rgy_filter_curves.h ├── rgy_filter_deband.cl ├── rgy_filter_deband.cpp ├── rgy_filter_deband.h ├── rgy_filter_deband_gen_rand.cl ├── rgy_filter_decimate.cl ├── rgy_filter_decimate.cpp ├── rgy_filter_decimate.h ├── rgy_filter_decomb.cl ├── rgy_filter_decomb.cpp ├── rgy_filter_decomb.h ├── rgy_filter_delogo.cl ├── rgy_filter_delogo.cpp ├── rgy_filter_delogo.h ├── rgy_filter_denoise_dct.cl ├── rgy_filter_denoise_dct.cpp ├── rgy_filter_denoise_dct.h ├── rgy_filter_denoise_fft3d.cl ├── rgy_filter_denoise_fft3d.cpp ├── rgy_filter_denoise_fft3d.h ├── rgy_filter_denoise_knn.cl ├── rgy_filter_denoise_knn.cpp ├── rgy_filter_denoise_knn.h ├── rgy_filter_denoise_nlmeans.cl ├── rgy_filter_denoise_nlmeans.cpp ├── rgy_filter_denoise_nlmeans.h ├── rgy_filter_denoise_pmd.cl ├── rgy_filter_denoise_pmd.cpp ├── rgy_filter_denoise_pmd.h ├── rgy_filter_edgelevel.cl ├── rgy_filter_edgelevel.cpp ├── rgy_filter_edgelevel.h ├── rgy_filter_libplacebo.cpp ├── rgy_filter_libplacebo.h ├── rgy_filter_mpdecimate.cl ├── rgy_filter_mpdecimate.cpp ├── rgy_filter_mpdecimate.h ├── rgy_filter_nnedi.cpp ├── rgy_filter_nnedi.h ├── rgy_filter_nnedi_common.cl ├── rgy_filter_nnedi_k0.cl ├── rgy_filter_nnedi_k1.cl ├── rgy_filter_overlay.cl ├── rgy_filter_overlay.cpp ├── rgy_filter_overlay.h ├── rgy_filter_pad.cl ├── rgy_filter_pad.cpp ├── rgy_filter_resize.cl ├── rgy_filter_resize.cpp ├── rgy_filter_resize.h ├── rgy_filter_rff.cpp ├── rgy_filter_rff.h ├── rgy_filter_smooth.cl ├── rgy_filter_smooth.cpp ├── rgy_filter_smooth.h ├── rgy_filter_ssim.cl ├── rgy_filter_ssim.cpp ├── rgy_filter_ssim.h ├── rgy_filter_subburn.cl ├── rgy_filter_subburn.cpp ├── rgy_filter_subburn.h ├── rgy_filter_transform.cl ├── rgy_filter_transform.cpp ├── rgy_filter_transform.h ├── rgy_filter_tweak.cl ├── rgy_filter_tweak.cpp ├── rgy_filter_tweak.h ├── rgy_filter_unsharp.cl ├── rgy_filter_unsharp.cpp ├── rgy_filter_unsharp.h ├── rgy_filter_warpsharp.cl ├── rgy_filter_warpsharp.cpp ├── rgy_filter_warpsharp.h ├── rgy_filter_yadif.cl ├── rgy_filter_yadif.cpp ├── rgy_filter_yadif.h ├── rgy_frame.cpp ├── rgy_frame.h ├── rgy_frame_info.cpp ├── rgy_frame_info.h ├── rgy_hdr10plus.cpp ├── rgy_hdr10plus.h ├── rgy_ini.cpp ├── rgy_ini.h ├── rgy_input.cpp ├── rgy_input.h ├── rgy_input_avcodec.cpp ├── rgy_input_avcodec.h ├── rgy_input_avi.cpp ├── rgy_input_avi.h ├── rgy_input_avs.cpp ├── rgy_input_avs.h ├── rgy_input_raw.cpp ├── rgy_input_raw.h ├── rgy_input_sm.cpp ├── rgy_input_sm.h ├── rgy_input_vpy.cpp ├── rgy_input_vpy.h ├── rgy_language.cpp ├── rgy_language.h ├── rgy_level.cpp ├── rgy_level.h ├── rgy_level_av1.cpp ├── rgy_level_av1.h ├── rgy_level_h264.cpp ├── rgy_level_h264.h ├── rgy_level_hevc.cpp ├── rgy_level_hevc.h ├── rgy_libdovi.cpp ├── rgy_libdovi.h ├── rgy_libplacebo.cpp ├── rgy_libplacebo.h ├── rgy_log.cpp ├── rgy_log.h ├── rgy_memmem.cpp ├── rgy_memmem.h ├── rgy_memmem_avx2.cpp ├── rgy_memmem_avx512bw.cpp ├── rgy_opencl.cpp ├── rgy_opencl.h ├── rgy_osdep.h ├── rgy_output.cpp ├── rgy_output.h ├── rgy_output_avcodec.cpp ├── rgy_output_avcodec.h ├── rgy_parallel_enc.cpp ├── rgy_parallel_enc.h ├── rgy_perf_counter.cpp ├── rgy_perf_counter.h ├── rgy_perf_monitor.cpp ├── rgy_perf_monitor.h ├── rgy_pipe.cpp ├── rgy_pipe.h ├── rgy_pipe_linux.cpp ├── rgy_prm.cpp ├── rgy_prm.h ├── rgy_queue.h ├── rgy_resource.cpp ├── rgy_resource.h ├── rgy_shared_mem.h ├── rgy_simd.cpp ├── rgy_simd.h ├── rgy_status.cpp ├── rgy_status.h ├── rgy_stream.h ├── rgy_tchar.h ├── rgy_thread.h ├── rgy_thread_affinity.cpp ├── rgy_thread_affinity.h ├── rgy_thread_pool.h ├── rgy_timecode.cpp ├── rgy_timecode.h ├── rgy_util.cpp ├── rgy_util.h ├── rgy_version.cpp ├── rgy_version.h ├── rgy_vulkan.cpp ├── rgy_vulkan.h ├── rgy_wav_parser.cpp ├── rgy_wav_parser.h ├── vce_amf.cpp ├── vce_amf.h ├── vce_cmd.cpp ├── vce_cmd.h ├── vce_core.cpp ├── vce_core.h ├── vce_device.cpp ├── vce_device.h ├── vce_filter.cpp ├── vce_filter.h ├── vce_param.cpp ├── vce_param.h ├── vce_pipeline.h ├── vce_util.cpp └── vce_util.h ├── VCEEnc.sln ├── VCEEnc ├── 7zInstallerConfig.txt ├── 7zSD.noadmin.sfx ├── VCEEnc.cpp ├── VCEEnc.def ├── VCEEnc.def2 ├── VCEEnc.en.ini ├── VCEEnc.en.lng ├── VCEEnc.ini ├── VCEEnc.ja.lng ├── VCEEnc.vcxproj ├── VCEEnc.vcxproj.filters ├── VCEEnc.zh.ini ├── VCEEnc.zh.lng ├── VCEEnc_readme.txt ├── auo.h ├── auo_setup.ini ├── auo_version.h ├── auo_version.rc ├── encode │ ├── afs_client.h │ ├── auo_audio.cpp │ ├── auo_audio.h │ ├── auo_audio_parallel.cpp │ ├── auo_audio_parallel.h │ ├── auo_convert.cpp │ ├── auo_convert.h │ ├── auo_encode.cpp │ ├── auo_encode.h │ ├── auo_faw2aac.cpp │ ├── auo_faw2aac.h │ ├── auo_mux.cpp │ ├── auo_mux.h │ ├── auo_pipe.cpp │ ├── auo_pipe.h │ ├── auo_runbat.cpp │ ├── auo_runbat.h │ ├── auo_video.cpp │ ├── auo_video.h │ ├── convert.cpp │ ├── convert.h │ ├── convert_avx2.cpp │ ├── exe_version.cpp │ ├── exe_version.h │ ├── fawcheck.cpp │ ├── fawcheck.h │ └── vphelp_client.h ├── frm │ ├── ComboBoxFolderBrowser.h │ ├── auo_clrutil.h │ ├── auo_error.cpp │ ├── auo_error.h │ ├── auo_frm.cpp │ ├── auo_frm.h │ ├── auo_mes.cpp │ ├── auo_mes.h │ ├── auo_win7_taskbar.h │ ├── frmAutoSaveLogSettings.h │ ├── frmAutoSaveLogSettings.resx │ ├── frmBitrateCalculator.h │ ├── frmBitrateCalculator.resx │ ├── frmConfig.cpp │ ├── frmConfig.h │ ├── frmConfig.resx │ ├── frmConfig_helper.h │ ├── frmLog.cpp │ ├── frmLog.h │ ├── frmLog.resx │ ├── frmNewFolderName.h │ ├── frmOtherSettings.h │ ├── frmOtherSettings.resx │ ├── frmSaveNewStg.h │ ├── frmSaveNewStg.resx │ ├── frmSetLogColor.h │ ├── frmSetLogColor.resx │ ├── frmSetTransparency.h │ └── frmSetTransparency.resx ├── image │ ├── Delete.png │ ├── VCE_logo.png │ ├── VCE_logo_disabled.png │ ├── folder_open.ico │ ├── left_arrow.ico │ └── right_arrow.ico ├── output.h ├── output2.h ├── prm │ ├── auo_conf.cpp │ ├── auo_conf.h │ ├── auo_options.h │ ├── auo_settings.cpp │ ├── auo_settings.h │ ├── auo_system.h │ ├── auo_util.cpp │ └── auo_util.h └── stg │ ├── AV1 │ ├── AV1 標準.stg │ └── AV1 高画質.stg │ ├── H.264 │ ├── H.264 標準.stg │ └── H.264 高画質.stg │ └── HEVC │ ├── HEVC 標準.stg │ └── HEVC 高画質.stg ├── VCEEncC ├── VCEEncC.cpp ├── VCEEncC.manifest ├── VCEEncC.oscodepage.manifest ├── VCEEncC.vcxproj ├── VCEEncC.vcxproj.filters ├── VCEEncC_version.h └── VCEEncC_version.rc ├── VCEEncC_Options.en.md ├── VCEEncC_Options.ja.md ├── VCEEnc_auo_readme.md ├── VCEEnc_license.txt ├── check_options.py ├── clRNG.vcxproj ├── clRNG.vcxproj.filters ├── configure ├── data ├── VCEEnc_7_00_install_02.png ├── VCEEnc_7_00_install_03.png ├── VCEEnc_7_00_install_04.png ├── VCEEnc_7_00_install_05.png ├── VCEEnc_7_00_install_06.png ├── VCEEnc_7_00_install_07.png ├── VCEEnc_7_00_install_09.png ├── VCEEnc_7_00_install_10.webp ├── VCEEnc_7_00_install_11.png ├── VCEEnc_7_00_install_14.webp ├── VCEEnc_7_00_uninstall_01.png ├── VCEEnc_8_38_install_aviutl2_01.png ├── VCEEnc_8_38_install_aviutl2_02.png ├── VCEEnc_8_38_install_aviutl2_03.png ├── VCEEnc_8_38_install_aviutl2_04.png ├── VCEEnc_8_38_install_aviutl2_05.png ├── VCEEnc_auo_stg_window_en.png └── VCEEnc_auo_stg_window_ja.png ├── docker ├── docker_fedora41 ├── docker_ubuntu2004 ├── docker_ubuntu2204 └── docker_ubuntu2404 ├── json ├── json.hpp └── json_fwd.hpp ├── makefile ├── resource └── nnedi3_weights.bin └── tinyxml2 ├── tinyxml2.cpp ├── tinyxml2.h ├── tinyxml2.vcxproj └── tinyxml2.vcxproj.filters /.cursor/commands/create-release-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.cursor/commands/create-release-note.md -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build_base_images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.github/workflows/build_base_images.yml -------------------------------------------------------------------------------- /.github/workflows/build_packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.github/workflows/build_packages.yml -------------------------------------------------------------------------------- /.github/workflows/build_releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.github/workflows/build_releases.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Build.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/Build.en.md -------------------------------------------------------------------------------- /Build.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/Build.ja.md -------------------------------------------------------------------------------- /BuildParallel/build.all.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/BuildParallel/build.all.proj -------------------------------------------------------------------------------- /BuildParallel/buildAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/BuildParallel/buildAll.bat -------------------------------------------------------------------------------- /BuildParallel/rebuildRelease.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/BuildParallel/rebuildRelease.bat -------------------------------------------------------------------------------- /BuildParallel/release.rebuild.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/BuildParallel/release.rebuild.proj -------------------------------------------------------------------------------- /GPUFeatures/r9_7950x_iGPU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/GPUFeatures/r9_7950x_iGPU.txt -------------------------------------------------------------------------------- /GPUFeatures/rx460.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/GPUFeatures/rx460.txt -------------------------------------------------------------------------------- /GPUFeatures/rx460_ubuntu2004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/GPUFeatures/rx460_ubuntu2004.txt -------------------------------------------------------------------------------- /GPUFeatures/rx550.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/GPUFeatures/rx550.txt -------------------------------------------------------------------------------- /GPUFeatures/rx5500xt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/GPUFeatures/rx5500xt.txt -------------------------------------------------------------------------------- /GPUFeatures/rx5500xt_ubuntu2004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/GPUFeatures/rx5500xt_ubuntu2004.txt -------------------------------------------------------------------------------- /GPUFeatures/rx7900xt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/GPUFeatures/rx7900xt.txt -------------------------------------------------------------------------------- /Install.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/Install.en.md -------------------------------------------------------------------------------- /Install.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/Install.ja.md -------------------------------------------------------------------------------- /PerfMonitor/perf_monitor.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/PerfMonitor/perf_monitor.pyw -------------------------------------------------------------------------------- /Readme.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/Readme.ja.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/Readme.md -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /VCECommon/DeviceDX11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECommon/DeviceDX11.cpp -------------------------------------------------------------------------------- /VCECommon/DeviceDX9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECommon/DeviceDX9.cpp -------------------------------------------------------------------------------- /VCECommon/Pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECommon/Pipeline.cpp -------------------------------------------------------------------------------- /VCECommon/PipelineMod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECommon/PipelineMod.h -------------------------------------------------------------------------------- /VCECommon/VCECommon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECommon/VCECommon.vcxproj -------------------------------------------------------------------------------- /VCECommon/VCECommon.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECommon/VCECommon.vcxproj.filters -------------------------------------------------------------------------------- /VCECore/VCECore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/VCECore.vcxproj -------------------------------------------------------------------------------- /VCECore/VCECore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/VCECore.vcxproj.filters -------------------------------------------------------------------------------- /VCECore/VCEInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/VCEInput.cpp -------------------------------------------------------------------------------- /VCECore/VCEInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/VCEInput.h -------------------------------------------------------------------------------- /VCECore/afs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/afs.h -------------------------------------------------------------------------------- /VCECore/afs_stg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/afs_stg.h -------------------------------------------------------------------------------- /VCECore/api_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/api_hook.cpp -------------------------------------------------------------------------------- /VCECore/api_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/api_hook.h -------------------------------------------------------------------------------- /VCECore/convert_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_const.h -------------------------------------------------------------------------------- /VCECore/convert_csp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_csp.cpp -------------------------------------------------------------------------------- /VCECore/convert_csp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_csp.h -------------------------------------------------------------------------------- /VCECore/convert_csp_avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_csp_avx.cpp -------------------------------------------------------------------------------- /VCECore/convert_csp_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_csp_avx2.cpp -------------------------------------------------------------------------------- /VCECore/convert_csp_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_csp_simd.h -------------------------------------------------------------------------------- /VCECore/convert_csp_sse2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_csp_sse2.cpp -------------------------------------------------------------------------------- /VCECore/convert_csp_sse41.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_csp_sse41.cpp -------------------------------------------------------------------------------- /VCECore/convert_csp_ssse3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/convert_csp_ssse3.cpp -------------------------------------------------------------------------------- /VCECore/cpu_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/cpu_info.cpp -------------------------------------------------------------------------------- /VCECore/cpu_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/cpu_info.h -------------------------------------------------------------------------------- /VCECore/gpu_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/gpu_info.cpp -------------------------------------------------------------------------------- /VCECore/gpu_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/gpu_info.h -------------------------------------------------------------------------------- /VCECore/gpuz_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/gpuz_info.cpp -------------------------------------------------------------------------------- /VCECore/gpuz_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/gpuz_info.h -------------------------------------------------------------------------------- /VCECore/logo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/logo.cpp -------------------------------------------------------------------------------- /VCECore/logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/logo.h -------------------------------------------------------------------------------- /VCECore/rgy_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_arch.h -------------------------------------------------------------------------------- /VCECore/rgy_aspect_ratio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_aspect_ratio.cpp -------------------------------------------------------------------------------- /VCECore/rgy_aspect_ratio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_aspect_ratio.h -------------------------------------------------------------------------------- /VCECore/rgy_avlog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_avlog.cpp -------------------------------------------------------------------------------- /VCECore/rgy_avlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_avlog.h -------------------------------------------------------------------------------- /VCECore/rgy_avutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_avutil.cpp -------------------------------------------------------------------------------- /VCECore/rgy_avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_avutil.h -------------------------------------------------------------------------------- /VCECore/rgy_bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_bitstream.cpp -------------------------------------------------------------------------------- /VCECore/rgy_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_bitstream.h -------------------------------------------------------------------------------- /VCECore/rgy_bitstream_aac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_bitstream_aac.cpp -------------------------------------------------------------------------------- /VCECore/rgy_bitstream_aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_bitstream_aac.h -------------------------------------------------------------------------------- /VCECore/rgy_bitstream_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_bitstream_avx2.cpp -------------------------------------------------------------------------------- /VCECore/rgy_bitstream_avx512bw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_bitstream_avx512bw.cpp -------------------------------------------------------------------------------- /VCECore/rgy_chapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_chapter.cpp -------------------------------------------------------------------------------- /VCECore/rgy_chapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_chapter.h -------------------------------------------------------------------------------- /VCECore/rgy_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_cmd.cpp -------------------------------------------------------------------------------- /VCECore/rgy_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_cmd.h -------------------------------------------------------------------------------- /VCECore/rgy_codepage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_codepage.cpp -------------------------------------------------------------------------------- /VCECore/rgy_codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_codepage.h -------------------------------------------------------------------------------- /VCECore/rgy_def.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_def.cpp -------------------------------------------------------------------------------- /VCECore/rgy_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_def.h -------------------------------------------------------------------------------- /VCECore/rgy_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device.cpp -------------------------------------------------------------------------------- /VCECore/rgy_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device.h -------------------------------------------------------------------------------- /VCECore/rgy_device_info_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device_info_cache.cpp -------------------------------------------------------------------------------- /VCECore/rgy_device_info_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device_info_cache.h -------------------------------------------------------------------------------- /VCECore/rgy_device_info_wmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device_info_wmi.cpp -------------------------------------------------------------------------------- /VCECore/rgy_device_info_wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device_info_wmi.h -------------------------------------------------------------------------------- /VCECore/rgy_device_usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device_usage.cpp -------------------------------------------------------------------------------- /VCECore/rgy_device_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device_usage.h -------------------------------------------------------------------------------- /VCECore/rgy_device_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device_vulkan.cpp -------------------------------------------------------------------------------- /VCECore/rgy_device_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_device_vulkan.h -------------------------------------------------------------------------------- /VCECore/rgy_env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_env.cpp -------------------------------------------------------------------------------- /VCECore/rgy_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_env.h -------------------------------------------------------------------------------- /VCECore/rgy_err.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_err.cpp -------------------------------------------------------------------------------- /VCECore/rgy_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_err.h -------------------------------------------------------------------------------- /VCECore/rgy_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_event.cpp -------------------------------------------------------------------------------- /VCECore/rgy_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_event.h -------------------------------------------------------------------------------- /VCECore/rgy_faw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_faw.cpp -------------------------------------------------------------------------------- /VCECore/rgy_faw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_faw.h -------------------------------------------------------------------------------- /VCECore/rgy_faw_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_faw_avx2.cpp -------------------------------------------------------------------------------- /VCECore/rgy_faw_avx512bw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_faw_avx512bw.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filesystem.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filesystem.h -------------------------------------------------------------------------------- /VCECore/rgy_filter.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs_analyze.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs_analyze.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs_analyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs_analyze.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs_filter.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs_filter.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs_filter.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs_merge.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs_merge.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs_merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs_merge.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs_synthesize.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs_synthesize.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_afs_synthesize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_afs_synthesize.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_cl.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_cl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_cl.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_colorspace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_colorspace.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_colorspace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_colorspace.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_colorspace_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_colorspace_func.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_convolution3d.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_convolution3d.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_convolution3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_convolution3d.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_convolution3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_convolution3d.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_crop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_crop.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_curves.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_curves.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_curves.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_curves.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_curves.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_deband.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_deband.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_deband.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_deband.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_deband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_deband.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_deband_gen_rand.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_deband_gen_rand.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_decimate.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_decimate.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_decimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_decimate.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_decimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_decimate.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_decomb.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_decomb.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_decomb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_decomb.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_decomb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_decomb.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_delogo.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_delogo.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_delogo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_delogo.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_delogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_delogo.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_dct.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_dct.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_dct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_dct.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_dct.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_fft3d.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_fft3d.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_fft3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_fft3d.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_fft3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_fft3d.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_knn.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_knn.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_knn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_knn.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_knn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_knn.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_nlmeans.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_nlmeans.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_nlmeans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_nlmeans.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_nlmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_nlmeans.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_pmd.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_pmd.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_pmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_pmd.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_denoise_pmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_denoise_pmd.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_edgelevel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_edgelevel.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_edgelevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_edgelevel.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_edgelevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_edgelevel.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_libplacebo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_libplacebo.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_libplacebo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_libplacebo.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_mpdecimate.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_mpdecimate.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_mpdecimate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_mpdecimate.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_mpdecimate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_mpdecimate.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_nnedi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_nnedi.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_nnedi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_nnedi.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_nnedi_common.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_nnedi_common.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_nnedi_k0.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_nnedi_k0.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_nnedi_k1.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_nnedi_k1.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_overlay.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_overlay.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_overlay.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_overlay.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_pad.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_pad.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_pad.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_resize.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_resize.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_resize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_resize.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_resize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_resize.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_rff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_rff.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_rff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_rff.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_smooth.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_smooth.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_smooth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_smooth.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_smooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_smooth.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_ssim.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_ssim.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_ssim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_ssim.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_ssim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_ssim.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_subburn.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_subburn.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_subburn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_subburn.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_subburn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_subburn.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_transform.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_transform.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_transform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_transform.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_transform.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_tweak.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_tweak.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_tweak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_tweak.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_tweak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_tweak.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_unsharp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_unsharp.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_unsharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_unsharp.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_unsharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_unsharp.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_warpsharp.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_warpsharp.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_warpsharp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_warpsharp.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_warpsharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_warpsharp.h -------------------------------------------------------------------------------- /VCECore/rgy_filter_yadif.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_yadif.cl -------------------------------------------------------------------------------- /VCECore/rgy_filter_yadif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_yadif.cpp -------------------------------------------------------------------------------- /VCECore/rgy_filter_yadif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_filter_yadif.h -------------------------------------------------------------------------------- /VCECore/rgy_frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_frame.cpp -------------------------------------------------------------------------------- /VCECore/rgy_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_frame.h -------------------------------------------------------------------------------- /VCECore/rgy_frame_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_frame_info.cpp -------------------------------------------------------------------------------- /VCECore/rgy_frame_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_frame_info.h -------------------------------------------------------------------------------- /VCECore/rgy_hdr10plus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_hdr10plus.cpp -------------------------------------------------------------------------------- /VCECore/rgy_hdr10plus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_hdr10plus.h -------------------------------------------------------------------------------- /VCECore/rgy_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_ini.cpp -------------------------------------------------------------------------------- /VCECore/rgy_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_ini.h -------------------------------------------------------------------------------- /VCECore/rgy_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input.cpp -------------------------------------------------------------------------------- /VCECore/rgy_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input.h -------------------------------------------------------------------------------- /VCECore/rgy_input_avcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_avcodec.cpp -------------------------------------------------------------------------------- /VCECore/rgy_input_avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_avcodec.h -------------------------------------------------------------------------------- /VCECore/rgy_input_avi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_avi.cpp -------------------------------------------------------------------------------- /VCECore/rgy_input_avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_avi.h -------------------------------------------------------------------------------- /VCECore/rgy_input_avs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_avs.cpp -------------------------------------------------------------------------------- /VCECore/rgy_input_avs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_avs.h -------------------------------------------------------------------------------- /VCECore/rgy_input_raw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_raw.cpp -------------------------------------------------------------------------------- /VCECore/rgy_input_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_raw.h -------------------------------------------------------------------------------- /VCECore/rgy_input_sm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_sm.cpp -------------------------------------------------------------------------------- /VCECore/rgy_input_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_sm.h -------------------------------------------------------------------------------- /VCECore/rgy_input_vpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_vpy.cpp -------------------------------------------------------------------------------- /VCECore/rgy_input_vpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_input_vpy.h -------------------------------------------------------------------------------- /VCECore/rgy_language.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_language.cpp -------------------------------------------------------------------------------- /VCECore/rgy_language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_language.h -------------------------------------------------------------------------------- /VCECore/rgy_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_level.cpp -------------------------------------------------------------------------------- /VCECore/rgy_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_level.h -------------------------------------------------------------------------------- /VCECore/rgy_level_av1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_level_av1.cpp -------------------------------------------------------------------------------- /VCECore/rgy_level_av1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_level_av1.h -------------------------------------------------------------------------------- /VCECore/rgy_level_h264.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_level_h264.cpp -------------------------------------------------------------------------------- /VCECore/rgy_level_h264.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_level_h264.h -------------------------------------------------------------------------------- /VCECore/rgy_level_hevc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_level_hevc.cpp -------------------------------------------------------------------------------- /VCECore/rgy_level_hevc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_level_hevc.h -------------------------------------------------------------------------------- /VCECore/rgy_libdovi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_libdovi.cpp -------------------------------------------------------------------------------- /VCECore/rgy_libdovi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_libdovi.h -------------------------------------------------------------------------------- /VCECore/rgy_libplacebo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_libplacebo.cpp -------------------------------------------------------------------------------- /VCECore/rgy_libplacebo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_libplacebo.h -------------------------------------------------------------------------------- /VCECore/rgy_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_log.cpp -------------------------------------------------------------------------------- /VCECore/rgy_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_log.h -------------------------------------------------------------------------------- /VCECore/rgy_memmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_memmem.cpp -------------------------------------------------------------------------------- /VCECore/rgy_memmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_memmem.h -------------------------------------------------------------------------------- /VCECore/rgy_memmem_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_memmem_avx2.cpp -------------------------------------------------------------------------------- /VCECore/rgy_memmem_avx512bw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_memmem_avx512bw.cpp -------------------------------------------------------------------------------- /VCECore/rgy_opencl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_opencl.cpp -------------------------------------------------------------------------------- /VCECore/rgy_opencl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_opencl.h -------------------------------------------------------------------------------- /VCECore/rgy_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_osdep.h -------------------------------------------------------------------------------- /VCECore/rgy_output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_output.cpp -------------------------------------------------------------------------------- /VCECore/rgy_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_output.h -------------------------------------------------------------------------------- /VCECore/rgy_output_avcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_output_avcodec.cpp -------------------------------------------------------------------------------- /VCECore/rgy_output_avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_output_avcodec.h -------------------------------------------------------------------------------- /VCECore/rgy_parallel_enc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_parallel_enc.cpp -------------------------------------------------------------------------------- /VCECore/rgy_parallel_enc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_parallel_enc.h -------------------------------------------------------------------------------- /VCECore/rgy_perf_counter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_perf_counter.cpp -------------------------------------------------------------------------------- /VCECore/rgy_perf_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_perf_counter.h -------------------------------------------------------------------------------- /VCECore/rgy_perf_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_perf_monitor.cpp -------------------------------------------------------------------------------- /VCECore/rgy_perf_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_perf_monitor.h -------------------------------------------------------------------------------- /VCECore/rgy_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_pipe.cpp -------------------------------------------------------------------------------- /VCECore/rgy_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_pipe.h -------------------------------------------------------------------------------- /VCECore/rgy_pipe_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_pipe_linux.cpp -------------------------------------------------------------------------------- /VCECore/rgy_prm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_prm.cpp -------------------------------------------------------------------------------- /VCECore/rgy_prm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_prm.h -------------------------------------------------------------------------------- /VCECore/rgy_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_queue.h -------------------------------------------------------------------------------- /VCECore/rgy_resource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_resource.cpp -------------------------------------------------------------------------------- /VCECore/rgy_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_resource.h -------------------------------------------------------------------------------- /VCECore/rgy_shared_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_shared_mem.h -------------------------------------------------------------------------------- /VCECore/rgy_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_simd.cpp -------------------------------------------------------------------------------- /VCECore/rgy_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_simd.h -------------------------------------------------------------------------------- /VCECore/rgy_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_status.cpp -------------------------------------------------------------------------------- /VCECore/rgy_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_status.h -------------------------------------------------------------------------------- /VCECore/rgy_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_stream.h -------------------------------------------------------------------------------- /VCECore/rgy_tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_tchar.h -------------------------------------------------------------------------------- /VCECore/rgy_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_thread.h -------------------------------------------------------------------------------- /VCECore/rgy_thread_affinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_thread_affinity.cpp -------------------------------------------------------------------------------- /VCECore/rgy_thread_affinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_thread_affinity.h -------------------------------------------------------------------------------- /VCECore/rgy_thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_thread_pool.h -------------------------------------------------------------------------------- /VCECore/rgy_timecode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_timecode.cpp -------------------------------------------------------------------------------- /VCECore/rgy_timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_timecode.h -------------------------------------------------------------------------------- /VCECore/rgy_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_util.cpp -------------------------------------------------------------------------------- /VCECore/rgy_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_util.h -------------------------------------------------------------------------------- /VCECore/rgy_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_version.cpp -------------------------------------------------------------------------------- /VCECore/rgy_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_version.h -------------------------------------------------------------------------------- /VCECore/rgy_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_vulkan.cpp -------------------------------------------------------------------------------- /VCECore/rgy_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_vulkan.h -------------------------------------------------------------------------------- /VCECore/rgy_wav_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_wav_parser.cpp -------------------------------------------------------------------------------- /VCECore/rgy_wav_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/rgy_wav_parser.h -------------------------------------------------------------------------------- /VCECore/vce_amf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_amf.cpp -------------------------------------------------------------------------------- /VCECore/vce_amf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_amf.h -------------------------------------------------------------------------------- /VCECore/vce_cmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_cmd.cpp -------------------------------------------------------------------------------- /VCECore/vce_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_cmd.h -------------------------------------------------------------------------------- /VCECore/vce_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_core.cpp -------------------------------------------------------------------------------- /VCECore/vce_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_core.h -------------------------------------------------------------------------------- /VCECore/vce_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_device.cpp -------------------------------------------------------------------------------- /VCECore/vce_device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_device.h -------------------------------------------------------------------------------- /VCECore/vce_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_filter.cpp -------------------------------------------------------------------------------- /VCECore/vce_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_filter.h -------------------------------------------------------------------------------- /VCECore/vce_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_param.cpp -------------------------------------------------------------------------------- /VCECore/vce_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_param.h -------------------------------------------------------------------------------- /VCECore/vce_pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_pipeline.h -------------------------------------------------------------------------------- /VCECore/vce_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_util.cpp -------------------------------------------------------------------------------- /VCECore/vce_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCECore/vce_util.h -------------------------------------------------------------------------------- /VCEEnc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc.sln -------------------------------------------------------------------------------- /VCEEnc/7zInstallerConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/7zInstallerConfig.txt -------------------------------------------------------------------------------- /VCEEnc/7zSD.noadmin.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/7zSD.noadmin.sfx -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.cpp -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.def: -------------------------------------------------------------------------------- 1 | LIBRARY "VCEEnc.auo" 2 | 3 | EXPORTS 4 | GetOutputPluginTable -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.def2: -------------------------------------------------------------------------------- 1 | LIBRARY "VCEEnc.auo2" 2 | 3 | EXPORTS 4 | GetOutputPluginTable -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.en.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.en.ini -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.en.lng -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.ini -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.ja.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.ja.lng -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.vcxproj -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.vcxproj.filters -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.zh.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.zh.ini -------------------------------------------------------------------------------- /VCEEnc/VCEEnc.zh.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc.zh.lng -------------------------------------------------------------------------------- /VCEEnc/VCEEnc_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/VCEEnc_readme.txt -------------------------------------------------------------------------------- /VCEEnc/auo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/auo.h -------------------------------------------------------------------------------- /VCEEnc/auo_setup.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/auo_setup.ini -------------------------------------------------------------------------------- /VCEEnc/auo_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/auo_version.h -------------------------------------------------------------------------------- /VCEEnc/auo_version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/auo_version.rc -------------------------------------------------------------------------------- /VCEEnc/encode/afs_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/afs_client.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_audio.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_audio.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_audio_parallel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_audio_parallel.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_audio_parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_audio_parallel.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_convert.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_convert.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_encode.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_encode.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_faw2aac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_faw2aac.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_faw2aac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_faw2aac.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_mux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_mux.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_mux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_mux.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_pipe.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_pipe.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_runbat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_runbat.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_runbat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_runbat.h -------------------------------------------------------------------------------- /VCEEnc/encode/auo_video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_video.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/auo_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/auo_video.h -------------------------------------------------------------------------------- /VCEEnc/encode/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/convert.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/convert.h -------------------------------------------------------------------------------- /VCEEnc/encode/convert_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/convert_avx2.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/exe_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/exe_version.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/exe_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/exe_version.h -------------------------------------------------------------------------------- /VCEEnc/encode/fawcheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/fawcheck.cpp -------------------------------------------------------------------------------- /VCEEnc/encode/fawcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/fawcheck.h -------------------------------------------------------------------------------- /VCEEnc/encode/vphelp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/encode/vphelp_client.h -------------------------------------------------------------------------------- /VCEEnc/frm/ComboBoxFolderBrowser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/ComboBoxFolderBrowser.h -------------------------------------------------------------------------------- /VCEEnc/frm/auo_clrutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/auo_clrutil.h -------------------------------------------------------------------------------- /VCEEnc/frm/auo_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/auo_error.cpp -------------------------------------------------------------------------------- /VCEEnc/frm/auo_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/auo_error.h -------------------------------------------------------------------------------- /VCEEnc/frm/auo_frm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/auo_frm.cpp -------------------------------------------------------------------------------- /VCEEnc/frm/auo_frm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/auo_frm.h -------------------------------------------------------------------------------- /VCEEnc/frm/auo_mes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/auo_mes.cpp -------------------------------------------------------------------------------- /VCEEnc/frm/auo_mes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/auo_mes.h -------------------------------------------------------------------------------- /VCEEnc/frm/auo_win7_taskbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/auo_win7_taskbar.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmAutoSaveLogSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmAutoSaveLogSettings.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmAutoSaveLogSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmAutoSaveLogSettings.resx -------------------------------------------------------------------------------- /VCEEnc/frm/frmBitrateCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmBitrateCalculator.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmBitrateCalculator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmBitrateCalculator.resx -------------------------------------------------------------------------------- /VCEEnc/frm/frmConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmConfig.cpp -------------------------------------------------------------------------------- /VCEEnc/frm/frmConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmConfig.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmConfig.resx -------------------------------------------------------------------------------- /VCEEnc/frm/frmConfig_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmConfig_helper.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmLog.cpp -------------------------------------------------------------------------------- /VCEEnc/frm/frmLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmLog.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmLog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmLog.resx -------------------------------------------------------------------------------- /VCEEnc/frm/frmNewFolderName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmNewFolderName.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmOtherSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmOtherSettings.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmOtherSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmOtherSettings.resx -------------------------------------------------------------------------------- /VCEEnc/frm/frmSaveNewStg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmSaveNewStg.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmSaveNewStg.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmSaveNewStg.resx -------------------------------------------------------------------------------- /VCEEnc/frm/frmSetLogColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmSetLogColor.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmSetLogColor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmSetLogColor.resx -------------------------------------------------------------------------------- /VCEEnc/frm/frmSetTransparency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmSetTransparency.h -------------------------------------------------------------------------------- /VCEEnc/frm/frmSetTransparency.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/frm/frmSetTransparency.resx -------------------------------------------------------------------------------- /VCEEnc/image/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/image/Delete.png -------------------------------------------------------------------------------- /VCEEnc/image/VCE_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/image/VCE_logo.png -------------------------------------------------------------------------------- /VCEEnc/image/VCE_logo_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/image/VCE_logo_disabled.png -------------------------------------------------------------------------------- /VCEEnc/image/folder_open.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/image/folder_open.ico -------------------------------------------------------------------------------- /VCEEnc/image/left_arrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/image/left_arrow.ico -------------------------------------------------------------------------------- /VCEEnc/image/right_arrow.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/image/right_arrow.ico -------------------------------------------------------------------------------- /VCEEnc/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/output.h -------------------------------------------------------------------------------- /VCEEnc/output2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/output2.h -------------------------------------------------------------------------------- /VCEEnc/prm/auo_conf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/prm/auo_conf.cpp -------------------------------------------------------------------------------- /VCEEnc/prm/auo_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/prm/auo_conf.h -------------------------------------------------------------------------------- /VCEEnc/prm/auo_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/prm/auo_options.h -------------------------------------------------------------------------------- /VCEEnc/prm/auo_settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/prm/auo_settings.cpp -------------------------------------------------------------------------------- /VCEEnc/prm/auo_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/prm/auo_settings.h -------------------------------------------------------------------------------- /VCEEnc/prm/auo_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/prm/auo_system.h -------------------------------------------------------------------------------- /VCEEnc/prm/auo_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/prm/auo_util.cpp -------------------------------------------------------------------------------- /VCEEnc/prm/auo_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/prm/auo_util.h -------------------------------------------------------------------------------- /VCEEnc/stg/AV1/AV1 標準.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/stg/AV1/AV1 標準.stg -------------------------------------------------------------------------------- /VCEEnc/stg/AV1/AV1 高画質.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/stg/AV1/AV1 高画質.stg -------------------------------------------------------------------------------- /VCEEnc/stg/H.264/H.264 標準.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/stg/H.264/H.264 標準.stg -------------------------------------------------------------------------------- /VCEEnc/stg/H.264/H.264 高画質.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/stg/H.264/H.264 高画質.stg -------------------------------------------------------------------------------- /VCEEnc/stg/HEVC/HEVC 標準.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/stg/HEVC/HEVC 標準.stg -------------------------------------------------------------------------------- /VCEEnc/stg/HEVC/HEVC 高画質.stg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc/stg/HEVC/HEVC 高画質.stg -------------------------------------------------------------------------------- /VCEEncC/VCEEncC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC/VCEEncC.cpp -------------------------------------------------------------------------------- /VCEEncC/VCEEncC.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC/VCEEncC.manifest -------------------------------------------------------------------------------- /VCEEncC/VCEEncC.oscodepage.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC/VCEEncC.oscodepage.manifest -------------------------------------------------------------------------------- /VCEEncC/VCEEncC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC/VCEEncC.vcxproj -------------------------------------------------------------------------------- /VCEEncC/VCEEncC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC/VCEEncC.vcxproj.filters -------------------------------------------------------------------------------- /VCEEncC/VCEEncC_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC/VCEEncC_version.h -------------------------------------------------------------------------------- /VCEEncC/VCEEncC_version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC/VCEEncC_version.rc -------------------------------------------------------------------------------- /VCEEncC_Options.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC_Options.en.md -------------------------------------------------------------------------------- /VCEEncC_Options.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEncC_Options.ja.md -------------------------------------------------------------------------------- /VCEEnc_auo_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc_auo_readme.md -------------------------------------------------------------------------------- /VCEEnc_license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/VCEEnc_license.txt -------------------------------------------------------------------------------- /check_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/check_options.py -------------------------------------------------------------------------------- /clRNG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/clRNG.vcxproj -------------------------------------------------------------------------------- /clRNG.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/clRNG.vcxproj.filters -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/configure -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_02.png -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_03.png -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_04.png -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_05.png -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_06.png -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_07.png -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_09.png -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_10.webp -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_11.png -------------------------------------------------------------------------------- /data/VCEEnc_7_00_install_14.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_install_14.webp -------------------------------------------------------------------------------- /data/VCEEnc_7_00_uninstall_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_7_00_uninstall_01.png -------------------------------------------------------------------------------- /data/VCEEnc_8_38_install_aviutl2_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_8_38_install_aviutl2_01.png -------------------------------------------------------------------------------- /data/VCEEnc_8_38_install_aviutl2_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_8_38_install_aviutl2_02.png -------------------------------------------------------------------------------- /data/VCEEnc_8_38_install_aviutl2_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_8_38_install_aviutl2_03.png -------------------------------------------------------------------------------- /data/VCEEnc_8_38_install_aviutl2_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_8_38_install_aviutl2_04.png -------------------------------------------------------------------------------- /data/VCEEnc_8_38_install_aviutl2_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_8_38_install_aviutl2_05.png -------------------------------------------------------------------------------- /data/VCEEnc_auo_stg_window_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_auo_stg_window_en.png -------------------------------------------------------------------------------- /data/VCEEnc_auo_stg_window_ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/data/VCEEnc_auo_stg_window_ja.png -------------------------------------------------------------------------------- /docker/docker_fedora41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/docker/docker_fedora41 -------------------------------------------------------------------------------- /docker/docker_ubuntu2004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/docker/docker_ubuntu2004 -------------------------------------------------------------------------------- /docker/docker_ubuntu2204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/docker/docker_ubuntu2204 -------------------------------------------------------------------------------- /docker/docker_ubuntu2404: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/docker/docker_ubuntu2404 -------------------------------------------------------------------------------- /json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/json/json.hpp -------------------------------------------------------------------------------- /json/json_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/json/json_fwd.hpp -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/makefile -------------------------------------------------------------------------------- /resource/nnedi3_weights.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/resource/nnedi3_weights.bin -------------------------------------------------------------------------------- /tinyxml2/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/tinyxml2/tinyxml2.cpp -------------------------------------------------------------------------------- /tinyxml2/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/tinyxml2/tinyxml2.h -------------------------------------------------------------------------------- /tinyxml2/tinyxml2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/tinyxml2/tinyxml2.vcxproj -------------------------------------------------------------------------------- /tinyxml2/tinyxml2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/VCEEnc/HEAD/tinyxml2/tinyxml2.vcxproj.filters --------------------------------------------------------------------------------