├── .github └── workflows │ ├── build_amatsukazeaddtask.yml │ ├── build_base_image.yml │ └── build_packages.yml ├── .gitignore ├── .gitmodules ├── .vscode ├── c_cpp_properties.json ├── launch.json └── tasks.json ├── Amatsukaze.sln ├── Amatsukaze ├── AMTDebug.natvis ├── AMTLogo.cpp ├── AMTLogo.h ├── AMTSource.cpp ├── AMTSource.h ├── AdtsParser.cpp ├── AdtsParser.h ├── Amatsukaze.cpp ├── Amatsukaze.vcxproj ├── Amatsukaze.vcxproj.filters ├── AmatsukazeCLI.hpp ├── AmatsukazeTestImpl.cpp ├── AmatsukazeTestImpl.h ├── Amatsukaze_version.h ├── Amatsukaze_version.rc ├── AribString.cpp ├── AribString.hpp ├── AudioEncoder.cpp ├── AudioEncoder.h ├── AviSynthWrapper.h ├── CMAnalyze.cpp ├── CMAnalyze.h ├── CaptionData.cpp ├── CaptionData.h ├── CaptionFormatter.cpp ├── CaptionFormatter.h ├── ComputeKernel.cpp ├── ComputeKernel.h ├── ComputeKernelAVX.cpp ├── ComputeKernelAVX2.cpp ├── ComputeKernelSIMD.h ├── ConvertPix.cpp ├── ConvertPix.h ├── ConvertPixAVX2.cpp ├── CoreUtils.hpp ├── Encoder.cpp ├── Encoder.h ├── EncoderOptionParser.cpp ├── EncoderOptionParser.h ├── FileUtils.cpp ├── FileUtils.h ├── FilteredSource.cpp ├── FilteredSource.h ├── H264VideoParser.cpp ├── H264VideoParser.h ├── HEVCVideoParser.cpp ├── HEVCVideoParser.h ├── InterProcessComm.cpp ├── InterProcessComm.h ├── LogoGUISupport.hpp ├── LogoScan.cpp ├── LogoScan.h ├── Mpeg2PsWriter.hpp ├── Mpeg2TsParser.cpp ├── Mpeg2TsParser.h ├── Mpeg2VideoParser.cpp ├── Mpeg2VideoParser.h ├── Muxer.cpp ├── Muxer.h ├── NicoJK.cpp ├── NicoJK.h ├── OSUtil.cpp ├── OSUtil.h ├── PacketCache.cpp ├── PacketCache.h ├── PerformanceUtil.cpp ├── PerformanceUtil.h ├── ProcessThread.cpp ├── ProcessThread.h ├── ReadMe.txt ├── ReaderWriterFFmpeg.cpp ├── ReaderWriterFFmpeg.h ├── StreamReform.cpp ├── StreamReform.h ├── StreamUtils.cpp ├── StreamUtils.h ├── StringUtils.cpp ├── StringUtils.h ├── Subtitle.cpp ├── Subtitle.h ├── TranscodeManager.cpp ├── TranscodeManager.h ├── TranscodeSetting.cpp ├── TranscodeSetting.h ├── TsInfo.cpp ├── TsInfo.h ├── TsSplitter.cpp ├── TsSplitter.h ├── Version.bat ├── VideoFilter.cpp ├── VideoFilter.h ├── WaveWriter.cpp ├── WaveWriter.h ├── common.h └── meson.build ├── AmatsukazeAddTask ├── AddTaskMain.cs ├── AmatsukazeAddTask.csproj ├── App.config └── Properties │ ├── AssemblyInfo.tt │ └── PublishProfiles │ └── FolderProfile.pubxml ├── AmatsukazeCLI ├── AmatsukazeCLI.cpp ├── AmatsukazeCLI.vcxproj ├── AmatsukazeCLI.vcxproj.filters ├── AmatsukazeCLI_version.rc └── meson.build ├── AmatsukazeGUI ├── AmatsukazeGUI.csproj ├── App.xaml ├── App.xaml.cs ├── Components │ ├── BrowserBehavior.cs │ ├── CollectionItemListener.cs │ ├── ControlHostAdornerBase.cs │ ├── DragBehavior.cs │ ├── DragContentAdorner.cs │ ├── DragExtentionMethods.cs │ ├── DropDownButton.cs │ ├── ExtentionMethods.cs │ ├── GridViewSort.cs │ ├── InsertionAdorner.cs │ ├── InsertionCursor.xaml │ ├── InsertionCursor.xaml.cs │ ├── InverseBooleanConverter.cs │ ├── LogScrollViewer.cs │ ├── MultiStyleExtension .cs │ ├── NegateValueConverter.cs │ ├── NotifyIconWrapper.cs │ ├── ObservableViewModelCollection.cs │ ├── TaskbarInfoBehavior.cs │ └── Utils.cs ├── InfrastructureAssemblies │ ├── Design │ │ └── Livet.Design.dll │ ├── Livet.XML │ ├── Livet.dll │ ├── Microsoft.Expression.Interactions.dll │ └── System.Windows.Interactivity.dll ├── Models │ ├── ClientModel.cs │ ├── DisplayData.cs │ ├── LogoAnalyzeModel.cs │ └── UIConstants.cs ├── Properties │ ├── AssemblyInfo.tt │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ServerIcon.ico ├── ViewModels │ ├── AddQueueConsoleViewModel.cs │ ├── AutoSelectSettingViewModel.cs │ ├── CheckLogViewModel.cs │ ├── ClientLogViewModel.cs │ ├── ConfigWindowViewModel.cs │ ├── ConsoleViewModel.cs │ ├── DiskFreeSpaceViewModel.cs │ ├── DrcsImageListViewModel.cs │ ├── DrcsImageViewModel.cs │ ├── EncodeLogViewModel.cs │ ├── LogFileViewModel.cs │ ├── LogViewModel.cs │ ├── LogoAnalyzeViewModel.cs │ ├── LogoImageViewModel.cs │ ├── MainWindowViewModel.cs │ ├── MakeBatchResultViewModel.cs │ ├── MakeScriptViewModel.cs │ ├── NamedViewModel.cs │ ├── NewAutoSelectViewModel.cs │ ├── NewProfileViewModel.cs │ ├── ProfileSettingViewModel.cs │ ├── QueueViewModel.cs │ ├── SelectOutPathViewModel.cs │ ├── ServerViewModel.cs │ ├── ServiceSettingViewModel.cs │ ├── SettingViewModel.cs │ ├── SleepCancelViewModel.cs │ ├── SummaryItemViewModel.cs │ └── SummaryViewModel.cs ├── Views │ ├── AddQueueConsolePanel.xaml │ ├── AddQueueConsolePanel.xaml.cs │ ├── AutoSelectSettingPanel.xaml │ ├── AutoSelectSettingPanel.xaml.cs │ ├── CheckLogPanel.xaml │ ├── CheckLogPanel.xaml.cs │ ├── ClientLogPanel.xaml │ ├── ClientLogPanel.xaml.cs │ ├── CommonResources.xaml │ ├── ConfigWindow.xaml │ ├── ConfigWindow.xaml.cs │ ├── ConsolePanel.xaml │ ├── ConsolePanel.xaml.cs │ ├── DiskFreeSpacePanel.xaml │ ├── DiskFreeSpacePanel.xaml.cs │ ├── DrcsImage.xaml │ ├── DrcsImage.xaml.cs │ ├── DrcsImageListPanel.xaml │ ├── DrcsImageListPanel.xaml.cs │ ├── DrcsImagePanel.xaml.cs │ ├── EncodeLogPanel.xaml │ ├── EncodeLogPanel.xaml.cs │ ├── FilterAutoVfrPanel.xaml │ ├── FilterAutoVfrPanel.xaml.cs │ ├── FilterD3DVPPanel.xaml │ ├── FilterD3DVPPanel.xaml.cs │ ├── FilterKFMPanel.xaml │ ├── FilterKFMPanel.xaml.cs │ ├── FilterQTGMCPanel.xaml │ ├── FilterQTGMCPanel.xaml.cs │ ├── FilterSettingPanel.xaml │ ├── FilterSettingPanel.xaml.cs │ ├── FilterYadifPanel.xaml │ ├── FilterYadifPanel.xaml.cs │ ├── LogFilePanel.xaml │ ├── LogFilePanel.xaml.cs │ ├── LogPanel.xaml │ ├── LogPanel.xaml.cs │ ├── LogoAnalyzeWindow.xaml │ ├── LogoAnalyzeWindow.xaml.cs │ ├── LogoImageWindow.xaml │ ├── LogoImageWindow.xaml.cs │ ├── LogoItem.xaml │ ├── LogoItem.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MakeBatchResultWindow.xaml │ ├── MakeBatchResultWindow.xaml.cs │ ├── MakeScriptPanel.xaml │ ├── MakeScriptPanel.xaml.cs │ ├── NewProfileWindow.xaml │ ├── NewProfileWindow.xaml.cs │ ├── ProfileSettingPanel.xaml │ ├── ProfileSettingPanel.xaml.cs │ ├── QueuePanel.xaml │ ├── QueuePanel.xaml.cs │ ├── SelectOutPath.xaml │ ├── SelectOutPath.xaml.cs │ ├── ServerWindow.xaml │ ├── ServerWindow.xaml.cs │ ├── ServiceSettingPanel.xaml │ ├── ServiceSettingPanel.xaml.cs │ ├── SettingPanel.xaml │ ├── SettingPanel.xaml.cs │ ├── SleepCancelWindow.xaml │ ├── SleepCancelWindow.xaml.cs │ ├── SummaryItem.xaml │ ├── SummaryItem.xaml.cs │ ├── SummaryPanel.xaml │ ├── SummaryPanel.xaml.cs │ └── ThemeResources.xaml ├── app.config └── packages.config ├── AmatsukazeLinux.sln ├── AmatsukazeServer ├── AmatsukazeServer.csproj ├── DynamicJson.cs ├── Lib │ ├── AmatsukazeNatives.cs │ ├── BitmapManager.cs │ ├── DefaultBitmapFactory.cs │ ├── DefaultSystemUtility.cs │ ├── IBitmapFactory.cs │ ├── NotificationBase.cs │ ├── OrderedSet.cs │ ├── SoundUtility.cs │ ├── StorageUtility.cs │ ├── SystemStructures.cs │ ├── SystemUtility.cs │ └── WindowsNativesDefs.cs ├── Log4net.Config.xml ├── Properties │ └── AssemblyInfo.tt ├── Server │ ├── ClientManager.cs │ ├── DRCSManager.cs │ ├── DataFile.cs │ ├── EncodeServer.cs │ ├── EncodeServerData.cs │ ├── GenreData.cs │ ├── Misc.cs │ ├── PauseScheduler.cs │ ├── ProcessExecuter.cs │ ├── QueueManager.cs │ ├── ResourceManager.cs │ ├── Scheduler.cs │ ├── ServerConnection.cs │ ├── ServerInterface.cs │ ├── TranscodeWorker.cs │ └── UserScriptExecuter.cs ├── Version.bat ├── Version.sh └── packages.config ├── AmatsukazeServerCLI ├── AmatsukazeServerCLI.csproj ├── App.config ├── Properties │ ├── AssemblyInfo.tt │ └── PublishProfiles │ │ └── FolderProfile.pubxml ├── ServerCLI.cs └── packages.config ├── AmatsukazeServerWin ├── AmatsukazeServerWin.csproj ├── BitmapFactoryInitializer.cs ├── Properties │ └── PublishProfiles │ │ └── FolderProfile.pubxml ├── WindowsSystemUtility.cs └── WpfBitmapFactory.cs ├── AmatsukazeUnitTest ├── AmatsukazeUnitTest.cpp ├── AmatsukazeUnitTest.vcxproj ├── AmatsukazeUnitTest.vcxproj.filters └── ReadMe.txt ├── BatchHashChecker ├── BatchHashChecker.cpp ├── BatchHashChecker.vcxproj ├── BatchHashChecker.vcxproj.filters ├── ReadMe.txt ├── common.h ├── fileutils.hpp ├── hash.cpp ├── hash.hpp ├── int64.hpp └── kexception.hpp ├── FileCutter ├── FileCutter.cpp ├── FileCutter.vcxproj └── FileCutter.vcxproj.filters ├── NicoJK18Client ├── App.config ├── NicoJK18Client.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.tt ├── Publish.proj ├── README.md ├── ScriptCommand ├── .vs │ └── ScriptCommand.csproj.dtbcache.json ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.tt └── ScriptCommand.csproj ├── ScriptCommandWrapper ├── ScriptCommandWrapper.cpp ├── ScriptCommandWrapper.vcxproj ├── ScriptCommandWrapper.vcxproj.filters └── ScriptCommandWrapper_version.rc ├── common ├── common.vcxproj ├── common.vcxproj.filters ├── convert_csp.h ├── cpu_info.cpp ├── cpu_info.h ├── meson.build ├── rgy_arch.h ├── rgy_bitstream.cpp ├── rgy_bitstream.h ├── rgy_bitstream_avx2.cpp ├── rgy_bitstream_avx512bw.cpp ├── rgy_codepage.cpp ├── rgy_codepage.h ├── rgy_def.h ├── rgy_env.cpp ├── rgy_env.h ├── rgy_event.cpp ├── rgy_event.h ├── rgy_filesystem.cpp ├── rgy_filesystem.h ├── rgy_memmem.cpp ├── rgy_memmem.h ├── rgy_memmem_avx2.cpp ├── rgy_memmem_avx512bw.cpp ├── rgy_mutex.cpp ├── rgy_mutex.h ├── rgy_osdep.h ├── rgy_pipe.cpp ├── rgy_pipe.h ├── rgy_pipe_linux.cpp ├── rgy_simd.cpp ├── rgy_simd.h ├── rgy_tchar.h ├── rgy_thread_affinity.cpp ├── rgy_thread_affinity.h ├── rgy_util.cpp ├── rgy_util.h └── rgy_version.h ├── compile_flags.txt ├── data ├── AmatsukazeServerLinuxStartDocker.png ├── AmatsukazeServerLinuxStart_00.png ├── AmatsukazeServerLinuxStart_01.png ├── AmatsukazeServerLinuxStart_02.png ├── AmatsukazeServerLinuxStart_03.png ├── AmatsukazeServerLinuxStart_04.png ├── AmatsukazeServerLinuxStart_05.png ├── AmatsukazeStartBat.png ├── AmatsukazeStartQSVEnc.png ├── amatsukaze_20251004_parallel_KFM.png ├── amatsukaze_20251101_whisper.png └── amatsukaze_20251106_whispercpp.png ├── defaults ├── avs │ ├── _カスタムavsファイル置き場.txt │ └── _旧バージョンのavsファイル.7z ├── bat_linux │ ├── エンコード前_サンプル.sh │ ├── キュー完了後_サンプル.sh │ ├── 実行前_サンプル.sh │ ├── 実行後_サンプル.sh │ └── 追加時_サンプル.sh ├── bat_win │ ├── エンコード前_サンプル.bat │ ├── キュー完了後_サンプル.bat │ ├── 実行前_サンプル.bat │ ├── 実行後_サンプル.bat │ └── 追加時_サンプル.bat ├── drcs │ └── drcs_map.txt ├── exe_files │ ├── cmd │ │ ├── AddTag │ │ ├── CancelItem │ │ ├── GetOutFiles │ │ ├── SetOutDir │ │ └── SetPriority │ └── plugins64 │ │ ├── KFMDeint.avsi │ │ ├── KSMDegrain.avsi │ │ ├── KTGMC.avsi │ │ ├── QTGMC.avsi │ │ └── SMDegrain v.3.1.2d.avsi └── profile │ ├── サンプル_NVEnc-HEVC10bit(要CUDA).profile │ ├── サンプル_NVEnc-自動フィールドシフト24fps.profile │ ├── サンプル_QSVEnc-720@60p.profile │ ├── サンプル_QSVEnc-HEVC.profile │ ├── サンプル_QSVEnc-インタレ保持.profile │ ├── サンプル_svtav1-高品質インタレ解除アニメ用(要CUDA).profile │ ├── サンプル_tsreplace-NVEnc-HEVC.profile │ ├── サンプル_tsreplace-QSVEnc-HEVC.profile │ ├── サンプル_x265-高品質インタレ解除アニメ用(要CUDA).profile │ └── デフォルト.profile ├── doc ├── BuildLinux.md ├── GenSubtitle.md ├── InstallLinux.md └── RunBat.md ├── docker ├── Dockerfile ├── base │ └── Dockerfile ├── compose.sample.yml ├── docker_ubuntu2204 ├── docker_ubuntu2404 ├── readme.md └── setup.sh ├── include ├── Caption.h ├── CaptionDef.h ├── TextOut.cpp ├── TextOut.h └── logo.h ├── include_gpl ├── faad.h └── neaacdec.h ├── include_win ├── avisynth.h ├── avs │ ├── alignment.h │ ├── capi.h │ ├── config.h │ ├── cpuid.h │ ├── minmax.h │ ├── types.h │ └── win.h ├── gtest │ ├── gtest-death-test.h │ ├── gtest-message.h │ ├── gtest-param-test.h │ ├── gtest-param-test.h.pump │ ├── gtest-printers.h │ ├── gtest-spi.h │ ├── gtest-test-part.h │ ├── gtest-typed-test.h │ ├── gtest.h │ ├── gtest_pred_impl.h │ ├── gtest_prod.h │ └── internal │ │ ├── custom │ │ ├── gtest-port.h │ │ ├── gtest-printers.h │ │ └── gtest.h │ │ ├── gtest-death-test-internal.h │ │ ├── gtest-filepath.h │ │ ├── gtest-internal.h │ │ ├── gtest-linked_ptr.h │ │ ├── gtest-param-util-generated.h │ │ ├── gtest-param-util-generated.h.pump │ │ ├── gtest-param-util.h │ │ ├── gtest-port-arch.h │ │ ├── gtest-port.h │ │ ├── gtest-string.h │ │ ├── gtest-tuple.h │ │ ├── gtest-tuple.h.pump │ │ ├── gtest-type-util.h │ │ └── gtest-type-util.h.pump ├── libavcodec │ ├── ac3_parser.h │ ├── adts_parser.h │ ├── avcodec.h │ ├── avdct.h │ ├── avfft.h │ ├── d3d11va.h │ ├── dirac.h │ ├── dv_profile.h │ ├── dxva2.h │ ├── jni.h │ ├── mediacodec.h │ ├── qsv.h │ ├── vaapi.h │ ├── vdpau.h │ ├── version.h │ ├── videotoolbox.h │ ├── vorbis_parser.h │ └── xvmc.h ├── libavdevice │ ├── avdevice.h │ └── version.h ├── libavfilter │ ├── avfilter.h │ ├── buffersink.h │ ├── buffersrc.h │ └── version.h ├── libavformat │ ├── avformat.h │ ├── avio.h │ └── version.h ├── libavutil │ ├── adler32.h │ ├── aes.h │ ├── aes_ctr.h │ ├── attributes.h │ ├── audio_fifo.h │ ├── avassert.h │ ├── avconfig.h │ ├── avstring.h │ ├── avutil.h │ ├── base64.h │ ├── blowfish.h │ ├── bprint.h │ ├── bswap.h │ ├── buffer.h │ ├── camellia.h │ ├── cast5.h │ ├── channel_layout.h │ ├── common.h │ ├── cpu.h │ ├── crc.h │ ├── des.h │ ├── dict.h │ ├── display.h │ ├── downmix_info.h │ ├── encryption_info.h │ ├── error.h │ ├── eval.h │ ├── ffversion.h │ ├── fifo.h │ ├── file.h │ ├── frame.h │ ├── hash.h │ ├── hmac.h │ ├── hwcontext.h │ ├── hwcontext_cuda.h │ ├── hwcontext_d3d11va.h │ ├── hwcontext_drm.h │ ├── hwcontext_dxva2.h │ ├── hwcontext_mediacodec.h │ ├── hwcontext_qsv.h │ ├── hwcontext_vaapi.h │ ├── hwcontext_vdpau.h │ ├── hwcontext_videotoolbox.h │ ├── imgutils.h │ ├── intfloat.h │ ├── intreadwrite.h │ ├── lfg.h │ ├── log.h │ ├── lzo.h │ ├── macros.h │ ├── mastering_display_metadata.h │ ├── mathematics.h │ ├── md5.h │ ├── mem.h │ ├── motion_vector.h │ ├── murmur3.h │ ├── opt.h │ ├── parseutils.h │ ├── pixdesc.h │ ├── pixelutils.h │ ├── pixfmt.h │ ├── random_seed.h │ ├── rational.h │ ├── rc4.h │ ├── replaygain.h │ ├── ripemd.h │ ├── samplefmt.h │ ├── sha.h │ ├── sha512.h │ ├── spherical.h │ ├── stereo3d.h │ ├── tea.h │ ├── threadmessage.h │ ├── time.h │ ├── timecode.h │ ├── timestamp.h │ ├── tree.h │ ├── twofish.h │ ├── version.h │ └── xtea.h ├── libswresample │ ├── swresample.h │ └── version.h └── libswscale │ ├── swscale.h │ └── version.h ├── libfaad ├── Makefile.am ├── analysis.h ├── bits.c ├── bits.h ├── cfft.c ├── cfft.h ├── cfft_tab.h ├── codebook │ ├── hcb.h │ ├── hcb_1.h │ ├── hcb_10.h │ ├── hcb_11.h │ ├── hcb_2.h │ ├── hcb_3.h │ ├── hcb_4.h │ ├── hcb_5.h │ ├── hcb_6.h │ ├── hcb_7.h │ ├── hcb_8.h │ ├── hcb_9.h │ └── hcb_sf.h ├── common.c ├── common.h ├── config.h ├── decoder.c ├── drc.c ├── drc.h ├── drm_dec.c ├── drm_dec.h ├── error.c ├── error.h ├── filtbank.c ├── filtbank.h ├── fixed.h ├── hcr.c ├── huffman.c ├── huffman.h ├── ic_predict.c ├── ic_predict.h ├── iq_table.h ├── is.c ├── is.h ├── kbd_win.h ├── libfaad.vcproj ├── libfaad.vcxproj ├── libfaad.vcxproj.filters ├── libfaad2.def ├── libfaad2.vcproj ├── libfaad2.vcxproj ├── libfaad2.vcxproj.filters ├── libfaad2.vcxproj.user ├── lt_predict.c ├── lt_predict.h ├── mdct.c ├── mdct.h ├── mdct_tab.h ├── meson.build ├── mp4.c ├── mp4.h ├── ms.c ├── ms.h ├── output.c ├── output.h ├── pns.c ├── pns.h ├── ps_dec.c ├── ps_dec.h ├── ps_syntax.c ├── ps_tables.h ├── pulse.c ├── pulse.h ├── rvlc.c ├── rvlc.h ├── sbr_dct.c ├── sbr_dct.h ├── sbr_dec.c ├── sbr_dec.h ├── sbr_e_nf.c ├── sbr_e_nf.h ├── sbr_fbt.c ├── sbr_fbt.h ├── sbr_hfadj.c ├── sbr_hfadj.h ├── sbr_hfgen.c ├── sbr_hfgen.h ├── sbr_huff.c ├── sbr_huff.h ├── sbr_noise.h ├── sbr_qmf.c ├── sbr_qmf.h ├── sbr_qmf_c.h ├── sbr_syntax.c ├── sbr_syntax.h ├── sbr_tf_grid.c ├── sbr_tf_grid.h ├── sine_win.h ├── specrec.c ├── specrec.h ├── ssr.c ├── ssr.h ├── ssr_fb.c ├── ssr_fb.h ├── ssr_ipqf.c ├── ssr_ipqf.h ├── ssr_win.h ├── structs.h ├── syntax.c ├── syntax.h ├── tns.c └── tns.h ├── meson.build ├── meson_options.txt ├── publish.bat └── scripts ├── AmatsukazeServer.sh ├── build.sh ├── build_dep.sh ├── install.sh └── mfx.diff /.github/workflows/build_amatsukazeaddtask.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/.github/workflows/build_amatsukazeaddtask.yml -------------------------------------------------------------------------------- /.github/workflows/build_base_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/.github/workflows/build_base_image.yml -------------------------------------------------------------------------------- /.github/workflows/build_packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/.github/workflows/build_packages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Amatsukaze.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze.sln -------------------------------------------------------------------------------- /Amatsukaze/AMTDebug.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AMTDebug.natvis -------------------------------------------------------------------------------- /Amatsukaze/AMTLogo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AMTLogo.cpp -------------------------------------------------------------------------------- /Amatsukaze/AMTLogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AMTLogo.h -------------------------------------------------------------------------------- /Amatsukaze/AMTSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AMTSource.cpp -------------------------------------------------------------------------------- /Amatsukaze/AMTSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AMTSource.h -------------------------------------------------------------------------------- /Amatsukaze/AdtsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AdtsParser.cpp -------------------------------------------------------------------------------- /Amatsukaze/AdtsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AdtsParser.h -------------------------------------------------------------------------------- /Amatsukaze/Amatsukaze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Amatsukaze.cpp -------------------------------------------------------------------------------- /Amatsukaze/Amatsukaze.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Amatsukaze.vcxproj -------------------------------------------------------------------------------- /Amatsukaze/Amatsukaze.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Amatsukaze.vcxproj.filters -------------------------------------------------------------------------------- /Amatsukaze/AmatsukazeCLI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AmatsukazeCLI.hpp -------------------------------------------------------------------------------- /Amatsukaze/AmatsukazeTestImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AmatsukazeTestImpl.cpp -------------------------------------------------------------------------------- /Amatsukaze/AmatsukazeTestImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AmatsukazeTestImpl.h -------------------------------------------------------------------------------- /Amatsukaze/Amatsukaze_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Amatsukaze_version.h -------------------------------------------------------------------------------- /Amatsukaze/Amatsukaze_version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Amatsukaze_version.rc -------------------------------------------------------------------------------- /Amatsukaze/AribString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AribString.cpp -------------------------------------------------------------------------------- /Amatsukaze/AribString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AribString.hpp -------------------------------------------------------------------------------- /Amatsukaze/AudioEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AudioEncoder.cpp -------------------------------------------------------------------------------- /Amatsukaze/AudioEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AudioEncoder.h -------------------------------------------------------------------------------- /Amatsukaze/AviSynthWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/AviSynthWrapper.h -------------------------------------------------------------------------------- /Amatsukaze/CMAnalyze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/CMAnalyze.cpp -------------------------------------------------------------------------------- /Amatsukaze/CMAnalyze.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/CMAnalyze.h -------------------------------------------------------------------------------- /Amatsukaze/CaptionData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/CaptionData.cpp -------------------------------------------------------------------------------- /Amatsukaze/CaptionData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/CaptionData.h -------------------------------------------------------------------------------- /Amatsukaze/CaptionFormatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/CaptionFormatter.cpp -------------------------------------------------------------------------------- /Amatsukaze/CaptionFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/CaptionFormatter.h -------------------------------------------------------------------------------- /Amatsukaze/ComputeKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ComputeKernel.cpp -------------------------------------------------------------------------------- /Amatsukaze/ComputeKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ComputeKernel.h -------------------------------------------------------------------------------- /Amatsukaze/ComputeKernelAVX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ComputeKernelAVX.cpp -------------------------------------------------------------------------------- /Amatsukaze/ComputeKernelAVX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ComputeKernelAVX2.cpp -------------------------------------------------------------------------------- /Amatsukaze/ComputeKernelSIMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ComputeKernelSIMD.h -------------------------------------------------------------------------------- /Amatsukaze/ConvertPix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ConvertPix.cpp -------------------------------------------------------------------------------- /Amatsukaze/ConvertPix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ConvertPix.h -------------------------------------------------------------------------------- /Amatsukaze/ConvertPixAVX2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ConvertPixAVX2.cpp -------------------------------------------------------------------------------- /Amatsukaze/CoreUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/CoreUtils.hpp -------------------------------------------------------------------------------- /Amatsukaze/Encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Encoder.cpp -------------------------------------------------------------------------------- /Amatsukaze/Encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Encoder.h -------------------------------------------------------------------------------- /Amatsukaze/EncoderOptionParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/EncoderOptionParser.cpp -------------------------------------------------------------------------------- /Amatsukaze/EncoderOptionParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/EncoderOptionParser.h -------------------------------------------------------------------------------- /Amatsukaze/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/FileUtils.cpp -------------------------------------------------------------------------------- /Amatsukaze/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/FileUtils.h -------------------------------------------------------------------------------- /Amatsukaze/FilteredSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/FilteredSource.cpp -------------------------------------------------------------------------------- /Amatsukaze/FilteredSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/FilteredSource.h -------------------------------------------------------------------------------- /Amatsukaze/H264VideoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/H264VideoParser.cpp -------------------------------------------------------------------------------- /Amatsukaze/H264VideoParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/H264VideoParser.h -------------------------------------------------------------------------------- /Amatsukaze/HEVCVideoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/HEVCVideoParser.cpp -------------------------------------------------------------------------------- /Amatsukaze/HEVCVideoParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/HEVCVideoParser.h -------------------------------------------------------------------------------- /Amatsukaze/InterProcessComm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/InterProcessComm.cpp -------------------------------------------------------------------------------- /Amatsukaze/InterProcessComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/InterProcessComm.h -------------------------------------------------------------------------------- /Amatsukaze/LogoGUISupport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/LogoGUISupport.hpp -------------------------------------------------------------------------------- /Amatsukaze/LogoScan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/LogoScan.cpp -------------------------------------------------------------------------------- /Amatsukaze/LogoScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/LogoScan.h -------------------------------------------------------------------------------- /Amatsukaze/Mpeg2PsWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Mpeg2PsWriter.hpp -------------------------------------------------------------------------------- /Amatsukaze/Mpeg2TsParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Mpeg2TsParser.cpp -------------------------------------------------------------------------------- /Amatsukaze/Mpeg2TsParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Mpeg2TsParser.h -------------------------------------------------------------------------------- /Amatsukaze/Mpeg2VideoParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Mpeg2VideoParser.cpp -------------------------------------------------------------------------------- /Amatsukaze/Mpeg2VideoParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Mpeg2VideoParser.h -------------------------------------------------------------------------------- /Amatsukaze/Muxer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Muxer.cpp -------------------------------------------------------------------------------- /Amatsukaze/Muxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Muxer.h -------------------------------------------------------------------------------- /Amatsukaze/NicoJK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/NicoJK.cpp -------------------------------------------------------------------------------- /Amatsukaze/NicoJK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/NicoJK.h -------------------------------------------------------------------------------- /Amatsukaze/OSUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/OSUtil.cpp -------------------------------------------------------------------------------- /Amatsukaze/OSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/OSUtil.h -------------------------------------------------------------------------------- /Amatsukaze/PacketCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/PacketCache.cpp -------------------------------------------------------------------------------- /Amatsukaze/PacketCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/PacketCache.h -------------------------------------------------------------------------------- /Amatsukaze/PerformanceUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/PerformanceUtil.cpp -------------------------------------------------------------------------------- /Amatsukaze/PerformanceUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/PerformanceUtil.h -------------------------------------------------------------------------------- /Amatsukaze/ProcessThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ProcessThread.cpp -------------------------------------------------------------------------------- /Amatsukaze/ProcessThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ProcessThread.h -------------------------------------------------------------------------------- /Amatsukaze/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ReadMe.txt -------------------------------------------------------------------------------- /Amatsukaze/ReaderWriterFFmpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ReaderWriterFFmpeg.cpp -------------------------------------------------------------------------------- /Amatsukaze/ReaderWriterFFmpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/ReaderWriterFFmpeg.h -------------------------------------------------------------------------------- /Amatsukaze/StreamReform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/StreamReform.cpp -------------------------------------------------------------------------------- /Amatsukaze/StreamReform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/StreamReform.h -------------------------------------------------------------------------------- /Amatsukaze/StreamUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/StreamUtils.cpp -------------------------------------------------------------------------------- /Amatsukaze/StreamUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/StreamUtils.h -------------------------------------------------------------------------------- /Amatsukaze/StringUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/StringUtils.cpp -------------------------------------------------------------------------------- /Amatsukaze/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/StringUtils.h -------------------------------------------------------------------------------- /Amatsukaze/Subtitle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Subtitle.cpp -------------------------------------------------------------------------------- /Amatsukaze/Subtitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Subtitle.h -------------------------------------------------------------------------------- /Amatsukaze/TranscodeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/TranscodeManager.cpp -------------------------------------------------------------------------------- /Amatsukaze/TranscodeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/TranscodeManager.h -------------------------------------------------------------------------------- /Amatsukaze/TranscodeSetting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/TranscodeSetting.cpp -------------------------------------------------------------------------------- /Amatsukaze/TranscodeSetting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/TranscodeSetting.h -------------------------------------------------------------------------------- /Amatsukaze/TsInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/TsInfo.cpp -------------------------------------------------------------------------------- /Amatsukaze/TsInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/TsInfo.h -------------------------------------------------------------------------------- /Amatsukaze/TsSplitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/TsSplitter.cpp -------------------------------------------------------------------------------- /Amatsukaze/TsSplitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/TsSplitter.h -------------------------------------------------------------------------------- /Amatsukaze/Version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/Version.bat -------------------------------------------------------------------------------- /Amatsukaze/VideoFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/VideoFilter.cpp -------------------------------------------------------------------------------- /Amatsukaze/VideoFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/VideoFilter.h -------------------------------------------------------------------------------- /Amatsukaze/WaveWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/WaveWriter.cpp -------------------------------------------------------------------------------- /Amatsukaze/WaveWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/WaveWriter.h -------------------------------------------------------------------------------- /Amatsukaze/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/common.h -------------------------------------------------------------------------------- /Amatsukaze/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Amatsukaze/meson.build -------------------------------------------------------------------------------- /AmatsukazeAddTask/AddTaskMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeAddTask/AddTaskMain.cs -------------------------------------------------------------------------------- /AmatsukazeAddTask/AmatsukazeAddTask.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeAddTask/AmatsukazeAddTask.csproj -------------------------------------------------------------------------------- /AmatsukazeAddTask/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeAddTask/App.config -------------------------------------------------------------------------------- /AmatsukazeAddTask/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeAddTask/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /AmatsukazeAddTask/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeAddTask/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /AmatsukazeCLI/AmatsukazeCLI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeCLI/AmatsukazeCLI.cpp -------------------------------------------------------------------------------- /AmatsukazeCLI/AmatsukazeCLI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeCLI/AmatsukazeCLI.vcxproj -------------------------------------------------------------------------------- /AmatsukazeCLI/AmatsukazeCLI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeCLI/AmatsukazeCLI.vcxproj.filters -------------------------------------------------------------------------------- /AmatsukazeCLI/AmatsukazeCLI_version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeCLI/AmatsukazeCLI_version.rc -------------------------------------------------------------------------------- /AmatsukazeCLI/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeCLI/meson.build -------------------------------------------------------------------------------- /AmatsukazeGUI/AmatsukazeGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/AmatsukazeGUI.csproj -------------------------------------------------------------------------------- /AmatsukazeGUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/App.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/App.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/BrowserBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/BrowserBehavior.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/CollectionItemListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/CollectionItemListener.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/ControlHostAdornerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/ControlHostAdornerBase.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/DragBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/DragBehavior.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/DragContentAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/DragContentAdorner.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/DragExtentionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/DragExtentionMethods.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/DropDownButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/DropDownButton.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/ExtentionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/ExtentionMethods.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/GridViewSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/GridViewSort.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/InsertionAdorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/InsertionAdorner.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/InsertionCursor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/InsertionCursor.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/InsertionCursor.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/InsertionCursor.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/InverseBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/InverseBooleanConverter.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/LogScrollViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/LogScrollViewer.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/MultiStyleExtension .cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/MultiStyleExtension .cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/NegateValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/NegateValueConverter.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/NotifyIconWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/NotifyIconWrapper.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/ObservableViewModelCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/ObservableViewModelCollection.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/TaskbarInfoBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/TaskbarInfoBehavior.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Components/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Components/Utils.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/InfrastructureAssemblies/Design/Livet.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/InfrastructureAssemblies/Design/Livet.Design.dll -------------------------------------------------------------------------------- /AmatsukazeGUI/InfrastructureAssemblies/Livet.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/InfrastructureAssemblies/Livet.XML -------------------------------------------------------------------------------- /AmatsukazeGUI/InfrastructureAssemblies/Livet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/InfrastructureAssemblies/Livet.dll -------------------------------------------------------------------------------- /AmatsukazeGUI/InfrastructureAssemblies/Microsoft.Expression.Interactions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/InfrastructureAssemblies/Microsoft.Expression.Interactions.dll -------------------------------------------------------------------------------- /AmatsukazeGUI/InfrastructureAssemblies/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/InfrastructureAssemblies/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /AmatsukazeGUI/Models/ClientModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Models/ClientModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Models/DisplayData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Models/DisplayData.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Models/LogoAnalyzeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Models/LogoAnalyzeModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Models/UIConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Models/UIConstants.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /AmatsukazeGUI/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /AmatsukazeGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /AmatsukazeGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /AmatsukazeGUI/ServerIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ServerIcon.ico -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/AddQueueConsoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/AddQueueConsoleViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/AutoSelectSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/AutoSelectSettingViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/CheckLogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/CheckLogViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/ClientLogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/ClientLogViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/ConfigWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/ConfigWindowViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/ConsoleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/ConsoleViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/DiskFreeSpaceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/DiskFreeSpaceViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/DrcsImageListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/DrcsImageListViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/DrcsImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/DrcsImageViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/EncodeLogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/EncodeLogViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/LogFileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/LogFileViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/LogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/LogViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/LogoAnalyzeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/LogoAnalyzeViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/LogoImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/LogoImageViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/MakeBatchResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/MakeBatchResultViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/MakeScriptViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/MakeScriptViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/NamedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/NamedViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/NewAutoSelectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/NewAutoSelectViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/NewProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/NewProfileViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/ProfileSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/ProfileSettingViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/QueueViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/QueueViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/SelectOutPathViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/SelectOutPathViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/ServerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/ServerViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/ServiceSettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/ServiceSettingViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/SettingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/SettingViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/SleepCancelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/SleepCancelViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/SummaryItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/SummaryItemViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/ViewModels/SummaryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/ViewModels/SummaryViewModel.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/AddQueueConsolePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/AddQueueConsolePanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/AddQueueConsolePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/AddQueueConsolePanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/AutoSelectSettingPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/AutoSelectSettingPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/AutoSelectSettingPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/AutoSelectSettingPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/CheckLogPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/CheckLogPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/CheckLogPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/CheckLogPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ClientLogPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ClientLogPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ClientLogPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ClientLogPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/CommonResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/CommonResources.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ConfigWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ConfigWindow.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ConfigWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ConfigWindow.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ConsolePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ConsolePanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ConsolePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ConsolePanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/DiskFreeSpacePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/DiskFreeSpacePanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/DiskFreeSpacePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/DiskFreeSpacePanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/DrcsImage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/DrcsImage.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/DrcsImage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/DrcsImage.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/DrcsImageListPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/DrcsImageListPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/DrcsImageListPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/DrcsImageListPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/DrcsImagePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/DrcsImagePanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/EncodeLogPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/EncodeLogPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/EncodeLogPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/EncodeLogPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterAutoVfrPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterAutoVfrPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterAutoVfrPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterAutoVfrPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterD3DVPPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterD3DVPPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterD3DVPPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterD3DVPPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterKFMPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterKFMPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterKFMPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterKFMPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterQTGMCPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterQTGMCPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterQTGMCPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterQTGMCPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterSettingPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterSettingPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterSettingPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterSettingPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterYadifPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterYadifPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/FilterYadifPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/FilterYadifPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogFilePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogFilePanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogFilePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogFilePanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogoAnalyzeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogoAnalyzeWindow.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogoAnalyzeWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogoAnalyzeWindow.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogoImageWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogoImageWindow.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogoImageWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogoImageWindow.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogoItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogoItem.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/LogoItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/LogoItem.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/MainWindow.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/MainWindow.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/MakeBatchResultWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/MakeBatchResultWindow.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/MakeBatchResultWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/MakeBatchResultWindow.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/MakeScriptPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/MakeScriptPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/MakeScriptPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/MakeScriptPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/NewProfileWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/NewProfileWindow.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/NewProfileWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/NewProfileWindow.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ProfileSettingPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ProfileSettingPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ProfileSettingPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ProfileSettingPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/QueuePanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/QueuePanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/QueuePanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/QueuePanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SelectOutPath.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SelectOutPath.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SelectOutPath.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SelectOutPath.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ServerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ServerWindow.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ServerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ServerWindow.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ServiceSettingPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ServiceSettingPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ServiceSettingPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ServiceSettingPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SettingPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SettingPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SettingPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SettingPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SleepCancelWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SleepCancelWindow.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SleepCancelWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SleepCancelWindow.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SummaryItem.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SummaryItem.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SummaryItem.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SummaryItem.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SummaryPanel.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SummaryPanel.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/SummaryPanel.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/SummaryPanel.xaml.cs -------------------------------------------------------------------------------- /AmatsukazeGUI/Views/ThemeResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/Views/ThemeResources.xaml -------------------------------------------------------------------------------- /AmatsukazeGUI/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/app.config -------------------------------------------------------------------------------- /AmatsukazeGUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeGUI/packages.config -------------------------------------------------------------------------------- /AmatsukazeLinux.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeLinux.sln -------------------------------------------------------------------------------- /AmatsukazeServer/AmatsukazeServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/AmatsukazeServer.csproj -------------------------------------------------------------------------------- /AmatsukazeServer/DynamicJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/DynamicJson.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/AmatsukazeNatives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/AmatsukazeNatives.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/BitmapManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/BitmapManager.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/DefaultBitmapFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/DefaultBitmapFactory.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/DefaultSystemUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/DefaultSystemUtility.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/IBitmapFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/IBitmapFactory.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/NotificationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/NotificationBase.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/OrderedSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/OrderedSet.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/SoundUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/SoundUtility.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/StorageUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/StorageUtility.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/SystemStructures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/SystemStructures.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/SystemUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/SystemUtility.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Lib/WindowsNativesDefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Lib/WindowsNativesDefs.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Log4net.Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Log4net.Config.xml -------------------------------------------------------------------------------- /AmatsukazeServer/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /AmatsukazeServer/Server/ClientManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/ClientManager.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/DRCSManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/DRCSManager.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/DataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/DataFile.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/EncodeServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/EncodeServer.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/EncodeServerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/EncodeServerData.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/GenreData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/GenreData.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/Misc.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/PauseScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/PauseScheduler.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/ProcessExecuter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/ProcessExecuter.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/QueueManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/QueueManager.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/ResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/ResourceManager.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/Scheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/Scheduler.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/ServerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/ServerConnection.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/ServerInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/ServerInterface.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/TranscodeWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/TranscodeWorker.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Server/UserScriptExecuter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Server/UserScriptExecuter.cs -------------------------------------------------------------------------------- /AmatsukazeServer/Version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Version.bat -------------------------------------------------------------------------------- /AmatsukazeServer/Version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/Version.sh -------------------------------------------------------------------------------- /AmatsukazeServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServer/packages.config -------------------------------------------------------------------------------- /AmatsukazeServerCLI/AmatsukazeServerCLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerCLI/AmatsukazeServerCLI.csproj -------------------------------------------------------------------------------- /AmatsukazeServerCLI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerCLI/App.config -------------------------------------------------------------------------------- /AmatsukazeServerCLI/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerCLI/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /AmatsukazeServerCLI/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerCLI/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /AmatsukazeServerCLI/ServerCLI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerCLI/ServerCLI.cs -------------------------------------------------------------------------------- /AmatsukazeServerCLI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerCLI/packages.config -------------------------------------------------------------------------------- /AmatsukazeServerWin/AmatsukazeServerWin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerWin/AmatsukazeServerWin.csproj -------------------------------------------------------------------------------- /AmatsukazeServerWin/BitmapFactoryInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerWin/BitmapFactoryInitializer.cs -------------------------------------------------------------------------------- /AmatsukazeServerWin/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerWin/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /AmatsukazeServerWin/WindowsSystemUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerWin/WindowsSystemUtility.cs -------------------------------------------------------------------------------- /AmatsukazeServerWin/WpfBitmapFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeServerWin/WpfBitmapFactory.cs -------------------------------------------------------------------------------- /AmatsukazeUnitTest/AmatsukazeUnitTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeUnitTest/AmatsukazeUnitTest.cpp -------------------------------------------------------------------------------- /AmatsukazeUnitTest/AmatsukazeUnitTest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeUnitTest/AmatsukazeUnitTest.vcxproj -------------------------------------------------------------------------------- /AmatsukazeUnitTest/AmatsukazeUnitTest.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeUnitTest/AmatsukazeUnitTest.vcxproj.filters -------------------------------------------------------------------------------- /AmatsukazeUnitTest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/AmatsukazeUnitTest/ReadMe.txt -------------------------------------------------------------------------------- /BatchHashChecker/BatchHashChecker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/BatchHashChecker.cpp -------------------------------------------------------------------------------- /BatchHashChecker/BatchHashChecker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/BatchHashChecker.vcxproj -------------------------------------------------------------------------------- /BatchHashChecker/BatchHashChecker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/BatchHashChecker.vcxproj.filters -------------------------------------------------------------------------------- /BatchHashChecker/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/ReadMe.txt -------------------------------------------------------------------------------- /BatchHashChecker/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/common.h -------------------------------------------------------------------------------- /BatchHashChecker/fileutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/fileutils.hpp -------------------------------------------------------------------------------- /BatchHashChecker/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/hash.cpp -------------------------------------------------------------------------------- /BatchHashChecker/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/hash.hpp -------------------------------------------------------------------------------- /BatchHashChecker/int64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/int64.hpp -------------------------------------------------------------------------------- /BatchHashChecker/kexception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/BatchHashChecker/kexception.hpp -------------------------------------------------------------------------------- /FileCutter/FileCutter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/FileCutter/FileCutter.cpp -------------------------------------------------------------------------------- /FileCutter/FileCutter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/FileCutter/FileCutter.vcxproj -------------------------------------------------------------------------------- /FileCutter/FileCutter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/FileCutter/FileCutter.vcxproj.filters -------------------------------------------------------------------------------- /NicoJK18Client/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/NicoJK18Client/App.config -------------------------------------------------------------------------------- /NicoJK18Client/NicoJK18Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/NicoJK18Client/NicoJK18Client.csproj -------------------------------------------------------------------------------- /NicoJK18Client/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/NicoJK18Client/Program.cs -------------------------------------------------------------------------------- /NicoJK18Client/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/NicoJK18Client/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /Publish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/Publish.proj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/README.md -------------------------------------------------------------------------------- /ScriptCommand/.vs/ScriptCommand.csproj.dtbcache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommand/.vs/ScriptCommand.csproj.dtbcache.json -------------------------------------------------------------------------------- /ScriptCommand/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommand/App.config -------------------------------------------------------------------------------- /ScriptCommand/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommand/Program.cs -------------------------------------------------------------------------------- /ScriptCommand/Properties/AssemblyInfo.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommand/Properties/AssemblyInfo.tt -------------------------------------------------------------------------------- /ScriptCommand/ScriptCommand.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommand/ScriptCommand.csproj -------------------------------------------------------------------------------- /ScriptCommandWrapper/ScriptCommandWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommandWrapper/ScriptCommandWrapper.cpp -------------------------------------------------------------------------------- /ScriptCommandWrapper/ScriptCommandWrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommandWrapper/ScriptCommandWrapper.vcxproj -------------------------------------------------------------------------------- /ScriptCommandWrapper/ScriptCommandWrapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommandWrapper/ScriptCommandWrapper.vcxproj.filters -------------------------------------------------------------------------------- /ScriptCommandWrapper/ScriptCommandWrapper_version.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/ScriptCommandWrapper/ScriptCommandWrapper_version.rc -------------------------------------------------------------------------------- /common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/common.vcxproj -------------------------------------------------------------------------------- /common/common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/common.vcxproj.filters -------------------------------------------------------------------------------- /common/convert_csp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/convert_csp.h -------------------------------------------------------------------------------- /common/cpu_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/cpu_info.cpp -------------------------------------------------------------------------------- /common/cpu_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/cpu_info.h -------------------------------------------------------------------------------- /common/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/meson.build -------------------------------------------------------------------------------- /common/rgy_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_arch.h -------------------------------------------------------------------------------- /common/rgy_bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_bitstream.cpp -------------------------------------------------------------------------------- /common/rgy_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_bitstream.h -------------------------------------------------------------------------------- /common/rgy_bitstream_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_bitstream_avx2.cpp -------------------------------------------------------------------------------- /common/rgy_bitstream_avx512bw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_bitstream_avx512bw.cpp -------------------------------------------------------------------------------- /common/rgy_codepage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_codepage.cpp -------------------------------------------------------------------------------- /common/rgy_codepage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_codepage.h -------------------------------------------------------------------------------- /common/rgy_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_def.h -------------------------------------------------------------------------------- /common/rgy_env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_env.cpp -------------------------------------------------------------------------------- /common/rgy_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_env.h -------------------------------------------------------------------------------- /common/rgy_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_event.cpp -------------------------------------------------------------------------------- /common/rgy_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_event.h -------------------------------------------------------------------------------- /common/rgy_filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_filesystem.cpp -------------------------------------------------------------------------------- /common/rgy_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_filesystem.h -------------------------------------------------------------------------------- /common/rgy_memmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_memmem.cpp -------------------------------------------------------------------------------- /common/rgy_memmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_memmem.h -------------------------------------------------------------------------------- /common/rgy_memmem_avx2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_memmem_avx2.cpp -------------------------------------------------------------------------------- /common/rgy_memmem_avx512bw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_memmem_avx512bw.cpp -------------------------------------------------------------------------------- /common/rgy_mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_mutex.cpp -------------------------------------------------------------------------------- /common/rgy_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_mutex.h -------------------------------------------------------------------------------- /common/rgy_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_osdep.h -------------------------------------------------------------------------------- /common/rgy_pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_pipe.cpp -------------------------------------------------------------------------------- /common/rgy_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_pipe.h -------------------------------------------------------------------------------- /common/rgy_pipe_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_pipe_linux.cpp -------------------------------------------------------------------------------- /common/rgy_simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_simd.cpp -------------------------------------------------------------------------------- /common/rgy_simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_simd.h -------------------------------------------------------------------------------- /common/rgy_tchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_tchar.h -------------------------------------------------------------------------------- /common/rgy_thread_affinity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_thread_affinity.cpp -------------------------------------------------------------------------------- /common/rgy_thread_affinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_thread_affinity.h -------------------------------------------------------------------------------- /common/rgy_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_util.cpp -------------------------------------------------------------------------------- /common/rgy_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_util.h -------------------------------------------------------------------------------- /common/rgy_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/common/rgy_version.h -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/compile_flags.txt -------------------------------------------------------------------------------- /data/AmatsukazeServerLinuxStartDocker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeServerLinuxStartDocker.png -------------------------------------------------------------------------------- /data/AmatsukazeServerLinuxStart_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeServerLinuxStart_00.png -------------------------------------------------------------------------------- /data/AmatsukazeServerLinuxStart_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeServerLinuxStart_01.png -------------------------------------------------------------------------------- /data/AmatsukazeServerLinuxStart_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeServerLinuxStart_02.png -------------------------------------------------------------------------------- /data/AmatsukazeServerLinuxStart_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeServerLinuxStart_03.png -------------------------------------------------------------------------------- /data/AmatsukazeServerLinuxStart_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeServerLinuxStart_04.png -------------------------------------------------------------------------------- /data/AmatsukazeServerLinuxStart_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeServerLinuxStart_05.png -------------------------------------------------------------------------------- /data/AmatsukazeStartBat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeStartBat.png -------------------------------------------------------------------------------- /data/AmatsukazeStartQSVEnc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/AmatsukazeStartQSVEnc.png -------------------------------------------------------------------------------- /data/amatsukaze_20251004_parallel_KFM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/amatsukaze_20251004_parallel_KFM.png -------------------------------------------------------------------------------- /data/amatsukaze_20251101_whisper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/amatsukaze_20251101_whisper.png -------------------------------------------------------------------------------- /data/amatsukaze_20251106_whispercpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/data/amatsukaze_20251106_whispercpp.png -------------------------------------------------------------------------------- /defaults/avs/_カスタムavsファイル置き場.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/avs/_カスタムavsファイル置き場.txt -------------------------------------------------------------------------------- /defaults/avs/_旧バージョンのavsファイル.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/avs/_旧バージョンのavsファイル.7z -------------------------------------------------------------------------------- /defaults/bat_linux/エンコード前_サンプル.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_linux/エンコード前_サンプル.sh -------------------------------------------------------------------------------- /defaults/bat_linux/キュー完了後_サンプル.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash echo "キュー動作終了: $(date)" >> data\queue_fin.txt -------------------------------------------------------------------------------- /defaults/bat_linux/実行前_サンプル.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_linux/実行前_サンプル.sh -------------------------------------------------------------------------------- /defaults/bat_linux/実行後_サンプル.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_linux/実行後_サンプル.sh -------------------------------------------------------------------------------- /defaults/bat_linux/追加時_サンプル.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_linux/追加時_サンプル.sh -------------------------------------------------------------------------------- /defaults/bat_win/エンコード前_サンプル.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_win/エンコード前_サンプル.bat -------------------------------------------------------------------------------- /defaults/bat_win/キュー完了後_サンプル.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_win/キュー完了後_サンプル.bat -------------------------------------------------------------------------------- /defaults/bat_win/実行前_サンプル.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_win/実行前_サンプル.bat -------------------------------------------------------------------------------- /defaults/bat_win/実行後_サンプル.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_win/実行後_サンプル.bat -------------------------------------------------------------------------------- /defaults/bat_win/追加時_サンプル.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/bat_win/追加時_サンプル.bat -------------------------------------------------------------------------------- /defaults/drcs/drcs_map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/drcs/drcs_map.txt -------------------------------------------------------------------------------- /defaults/exe_files/cmd/AddTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/cmd/AddTag -------------------------------------------------------------------------------- /defaults/exe_files/cmd/CancelItem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/cmd/CancelItem -------------------------------------------------------------------------------- /defaults/exe_files/cmd/GetOutFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/cmd/GetOutFiles -------------------------------------------------------------------------------- /defaults/exe_files/cmd/SetOutDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/cmd/SetOutDir -------------------------------------------------------------------------------- /defaults/exe_files/cmd/SetPriority: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/cmd/SetPriority -------------------------------------------------------------------------------- /defaults/exe_files/plugins64/KFMDeint.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/plugins64/KFMDeint.avsi -------------------------------------------------------------------------------- /defaults/exe_files/plugins64/KSMDegrain.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/plugins64/KSMDegrain.avsi -------------------------------------------------------------------------------- /defaults/exe_files/plugins64/KTGMC.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/plugins64/KTGMC.avsi -------------------------------------------------------------------------------- /defaults/exe_files/plugins64/QTGMC.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/plugins64/QTGMC.avsi -------------------------------------------------------------------------------- /defaults/exe_files/plugins64/SMDegrain v.3.1.2d.avsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/exe_files/plugins64/SMDegrain v.3.1.2d.avsi -------------------------------------------------------------------------------- /defaults/profile/サンプル_NVEnc-HEVC10bit(要CUDA).profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_NVEnc-HEVC10bit(要CUDA).profile -------------------------------------------------------------------------------- /defaults/profile/サンプル_NVEnc-自動フィールドシフト24fps.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_NVEnc-自動フィールドシフト24fps.profile -------------------------------------------------------------------------------- /defaults/profile/サンプル_QSVEnc-720@60p.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_QSVEnc-720@60p.profile -------------------------------------------------------------------------------- /defaults/profile/サンプル_QSVEnc-HEVC.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_QSVEnc-HEVC.profile -------------------------------------------------------------------------------- /defaults/profile/サンプル_QSVEnc-インタレ保持.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_QSVEnc-インタレ保持.profile -------------------------------------------------------------------------------- /defaults/profile/サンプル_svtav1-高品質インタレ解除アニメ用(要CUDA).profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_svtav1-高品質インタレ解除アニメ用(要CUDA).profile -------------------------------------------------------------------------------- /defaults/profile/サンプル_tsreplace-NVEnc-HEVC.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_tsreplace-NVEnc-HEVC.profile -------------------------------------------------------------------------------- /defaults/profile/サンプル_tsreplace-QSVEnc-HEVC.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_tsreplace-QSVEnc-HEVC.profile -------------------------------------------------------------------------------- /defaults/profile/サンプル_x265-高品質インタレ解除アニメ用(要CUDA).profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/サンプル_x265-高品質インタレ解除アニメ用(要CUDA).profile -------------------------------------------------------------------------------- /defaults/profile/デフォルト.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/defaults/profile/デフォルト.profile -------------------------------------------------------------------------------- /doc/BuildLinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/doc/BuildLinux.md -------------------------------------------------------------------------------- /doc/GenSubtitle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/doc/GenSubtitle.md -------------------------------------------------------------------------------- /doc/InstallLinux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/doc/InstallLinux.md -------------------------------------------------------------------------------- /doc/RunBat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/doc/RunBat.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/docker/base/Dockerfile -------------------------------------------------------------------------------- /docker/compose.sample.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/docker/compose.sample.yml -------------------------------------------------------------------------------- /docker/docker_ubuntu2204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/docker/docker_ubuntu2204 -------------------------------------------------------------------------------- /docker/docker_ubuntu2404: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/docker/docker_ubuntu2404 -------------------------------------------------------------------------------- /docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/docker/readme.md -------------------------------------------------------------------------------- /docker/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/docker/setup.sh -------------------------------------------------------------------------------- /include/Caption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include/Caption.h -------------------------------------------------------------------------------- /include/CaptionDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include/CaptionDef.h -------------------------------------------------------------------------------- /include/TextOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include/TextOut.cpp -------------------------------------------------------------------------------- /include/TextOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include/TextOut.h -------------------------------------------------------------------------------- /include/logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include/logo.h -------------------------------------------------------------------------------- /include_gpl/faad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_gpl/faad.h -------------------------------------------------------------------------------- /include_gpl/neaacdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_gpl/neaacdec.h -------------------------------------------------------------------------------- /include_win/avisynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/avisynth.h -------------------------------------------------------------------------------- /include_win/avs/alignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/avs/alignment.h -------------------------------------------------------------------------------- /include_win/avs/capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/avs/capi.h -------------------------------------------------------------------------------- /include_win/avs/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/avs/config.h -------------------------------------------------------------------------------- /include_win/avs/cpuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/avs/cpuid.h -------------------------------------------------------------------------------- /include_win/avs/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/avs/minmax.h -------------------------------------------------------------------------------- /include_win/avs/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/avs/types.h -------------------------------------------------------------------------------- /include_win/avs/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/avs/win.h -------------------------------------------------------------------------------- /include_win/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /include_win/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest-message.h -------------------------------------------------------------------------------- /include_win/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /include_win/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /include_win/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest-printers.h -------------------------------------------------------------------------------- /include_win/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest-spi.h -------------------------------------------------------------------------------- /include_win/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /include_win/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /include_win/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest.h -------------------------------------------------------------------------------- /include_win/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /include_win/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/gtest_prod.h -------------------------------------------------------------------------------- /include_win/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /include_win/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /include_win/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /include_win/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /include_win/libavcodec/ac3_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/ac3_parser.h -------------------------------------------------------------------------------- /include_win/libavcodec/adts_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/adts_parser.h -------------------------------------------------------------------------------- /include_win/libavcodec/avcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/avcodec.h -------------------------------------------------------------------------------- /include_win/libavcodec/avdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/avdct.h -------------------------------------------------------------------------------- /include_win/libavcodec/avfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/avfft.h -------------------------------------------------------------------------------- /include_win/libavcodec/d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/d3d11va.h -------------------------------------------------------------------------------- /include_win/libavcodec/dirac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/dirac.h -------------------------------------------------------------------------------- /include_win/libavcodec/dv_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/dv_profile.h -------------------------------------------------------------------------------- /include_win/libavcodec/dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/dxva2.h -------------------------------------------------------------------------------- /include_win/libavcodec/jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/jni.h -------------------------------------------------------------------------------- /include_win/libavcodec/mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/mediacodec.h -------------------------------------------------------------------------------- /include_win/libavcodec/qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/qsv.h -------------------------------------------------------------------------------- /include_win/libavcodec/vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/vaapi.h -------------------------------------------------------------------------------- /include_win/libavcodec/vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/vdpau.h -------------------------------------------------------------------------------- /include_win/libavcodec/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/version.h -------------------------------------------------------------------------------- /include_win/libavcodec/videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/videotoolbox.h -------------------------------------------------------------------------------- /include_win/libavcodec/vorbis_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/vorbis_parser.h -------------------------------------------------------------------------------- /include_win/libavcodec/xvmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavcodec/xvmc.h -------------------------------------------------------------------------------- /include_win/libavdevice/avdevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavdevice/avdevice.h -------------------------------------------------------------------------------- /include_win/libavdevice/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavdevice/version.h -------------------------------------------------------------------------------- /include_win/libavfilter/avfilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavfilter/avfilter.h -------------------------------------------------------------------------------- /include_win/libavfilter/buffersink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavfilter/buffersink.h -------------------------------------------------------------------------------- /include_win/libavfilter/buffersrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavfilter/buffersrc.h -------------------------------------------------------------------------------- /include_win/libavfilter/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavfilter/version.h -------------------------------------------------------------------------------- /include_win/libavformat/avformat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavformat/avformat.h -------------------------------------------------------------------------------- /include_win/libavformat/avio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavformat/avio.h -------------------------------------------------------------------------------- /include_win/libavformat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavformat/version.h -------------------------------------------------------------------------------- /include_win/libavutil/adler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/adler32.h -------------------------------------------------------------------------------- /include_win/libavutil/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/aes.h -------------------------------------------------------------------------------- /include_win/libavutil/aes_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/aes_ctr.h -------------------------------------------------------------------------------- /include_win/libavutil/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/attributes.h -------------------------------------------------------------------------------- /include_win/libavutil/audio_fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/audio_fifo.h -------------------------------------------------------------------------------- /include_win/libavutil/avassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/avassert.h -------------------------------------------------------------------------------- /include_win/libavutil/avconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/avconfig.h -------------------------------------------------------------------------------- /include_win/libavutil/avstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/avstring.h -------------------------------------------------------------------------------- /include_win/libavutil/avutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/avutil.h -------------------------------------------------------------------------------- /include_win/libavutil/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/base64.h -------------------------------------------------------------------------------- /include_win/libavutil/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/blowfish.h -------------------------------------------------------------------------------- /include_win/libavutil/bprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/bprint.h -------------------------------------------------------------------------------- /include_win/libavutil/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/bswap.h -------------------------------------------------------------------------------- /include_win/libavutil/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/buffer.h -------------------------------------------------------------------------------- /include_win/libavutil/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/camellia.h -------------------------------------------------------------------------------- /include_win/libavutil/cast5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/cast5.h -------------------------------------------------------------------------------- /include_win/libavutil/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/channel_layout.h -------------------------------------------------------------------------------- /include_win/libavutil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/common.h -------------------------------------------------------------------------------- /include_win/libavutil/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/cpu.h -------------------------------------------------------------------------------- /include_win/libavutil/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/crc.h -------------------------------------------------------------------------------- /include_win/libavutil/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/des.h -------------------------------------------------------------------------------- /include_win/libavutil/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/dict.h -------------------------------------------------------------------------------- /include_win/libavutil/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/display.h -------------------------------------------------------------------------------- /include_win/libavutil/downmix_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/downmix_info.h -------------------------------------------------------------------------------- /include_win/libavutil/encryption_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/encryption_info.h -------------------------------------------------------------------------------- /include_win/libavutil/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/error.h -------------------------------------------------------------------------------- /include_win/libavutil/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/eval.h -------------------------------------------------------------------------------- /include_win/libavutil/ffversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/ffversion.h -------------------------------------------------------------------------------- /include_win/libavutil/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/fifo.h -------------------------------------------------------------------------------- /include_win/libavutil/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/file.h -------------------------------------------------------------------------------- /include_win/libavutil/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/frame.h -------------------------------------------------------------------------------- /include_win/libavutil/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hash.h -------------------------------------------------------------------------------- /include_win/libavutil/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hmac.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_cuda.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_d3d11va.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_d3d11va.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_drm.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_dxva2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_dxva2.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_mediacodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_mediacodec.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_qsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_qsv.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_vaapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_vaapi.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_vdpau.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_vdpau.h -------------------------------------------------------------------------------- /include_win/libavutil/hwcontext_videotoolbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/hwcontext_videotoolbox.h -------------------------------------------------------------------------------- /include_win/libavutil/imgutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/imgutils.h -------------------------------------------------------------------------------- /include_win/libavutil/intfloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/intfloat.h -------------------------------------------------------------------------------- /include_win/libavutil/intreadwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/intreadwrite.h -------------------------------------------------------------------------------- /include_win/libavutil/lfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/lfg.h -------------------------------------------------------------------------------- /include_win/libavutil/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/log.h -------------------------------------------------------------------------------- /include_win/libavutil/lzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/lzo.h -------------------------------------------------------------------------------- /include_win/libavutil/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/macros.h -------------------------------------------------------------------------------- /include_win/libavutil/mastering_display_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/mastering_display_metadata.h -------------------------------------------------------------------------------- /include_win/libavutil/mathematics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/mathematics.h -------------------------------------------------------------------------------- /include_win/libavutil/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/md5.h -------------------------------------------------------------------------------- /include_win/libavutil/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/mem.h -------------------------------------------------------------------------------- /include_win/libavutil/motion_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/motion_vector.h -------------------------------------------------------------------------------- /include_win/libavutil/murmur3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/murmur3.h -------------------------------------------------------------------------------- /include_win/libavutil/opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/opt.h -------------------------------------------------------------------------------- /include_win/libavutil/parseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/parseutils.h -------------------------------------------------------------------------------- /include_win/libavutil/pixdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/pixdesc.h -------------------------------------------------------------------------------- /include_win/libavutil/pixelutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/pixelutils.h -------------------------------------------------------------------------------- /include_win/libavutil/pixfmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/pixfmt.h -------------------------------------------------------------------------------- /include_win/libavutil/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/random_seed.h -------------------------------------------------------------------------------- /include_win/libavutil/rational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/rational.h -------------------------------------------------------------------------------- /include_win/libavutil/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/rc4.h -------------------------------------------------------------------------------- /include_win/libavutil/replaygain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/replaygain.h -------------------------------------------------------------------------------- /include_win/libavutil/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/ripemd.h -------------------------------------------------------------------------------- /include_win/libavutil/samplefmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/samplefmt.h -------------------------------------------------------------------------------- /include_win/libavutil/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/sha.h -------------------------------------------------------------------------------- /include_win/libavutil/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/sha512.h -------------------------------------------------------------------------------- /include_win/libavutil/spherical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/spherical.h -------------------------------------------------------------------------------- /include_win/libavutil/stereo3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/stereo3d.h -------------------------------------------------------------------------------- /include_win/libavutil/tea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/tea.h -------------------------------------------------------------------------------- /include_win/libavutil/threadmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/threadmessage.h -------------------------------------------------------------------------------- /include_win/libavutil/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/time.h -------------------------------------------------------------------------------- /include_win/libavutil/timecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/timecode.h -------------------------------------------------------------------------------- /include_win/libavutil/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/timestamp.h -------------------------------------------------------------------------------- /include_win/libavutil/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/tree.h -------------------------------------------------------------------------------- /include_win/libavutil/twofish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/twofish.h -------------------------------------------------------------------------------- /include_win/libavutil/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/version.h -------------------------------------------------------------------------------- /include_win/libavutil/xtea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libavutil/xtea.h -------------------------------------------------------------------------------- /include_win/libswresample/swresample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libswresample/swresample.h -------------------------------------------------------------------------------- /include_win/libswresample/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libswresample/version.h -------------------------------------------------------------------------------- /include_win/libswscale/swscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libswscale/swscale.h -------------------------------------------------------------------------------- /include_win/libswscale/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/include_win/libswscale/version.h -------------------------------------------------------------------------------- /libfaad/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/Makefile.am -------------------------------------------------------------------------------- /libfaad/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/analysis.h -------------------------------------------------------------------------------- /libfaad/bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/bits.c -------------------------------------------------------------------------------- /libfaad/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/bits.h -------------------------------------------------------------------------------- /libfaad/cfft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/cfft.c -------------------------------------------------------------------------------- /libfaad/cfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/cfft.h -------------------------------------------------------------------------------- /libfaad/cfft_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/cfft_tab.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_1.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_10.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_11.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_2.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_3.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_4.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_5.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_6.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_7.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_8.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_9.h -------------------------------------------------------------------------------- /libfaad/codebook/hcb_sf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/codebook/hcb_sf.h -------------------------------------------------------------------------------- /libfaad/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/common.c -------------------------------------------------------------------------------- /libfaad/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/common.h -------------------------------------------------------------------------------- /libfaad/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/config.h -------------------------------------------------------------------------------- /libfaad/decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/decoder.c -------------------------------------------------------------------------------- /libfaad/drc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/drc.c -------------------------------------------------------------------------------- /libfaad/drc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/drc.h -------------------------------------------------------------------------------- /libfaad/drm_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/drm_dec.c -------------------------------------------------------------------------------- /libfaad/drm_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/drm_dec.h -------------------------------------------------------------------------------- /libfaad/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/error.c -------------------------------------------------------------------------------- /libfaad/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/error.h -------------------------------------------------------------------------------- /libfaad/filtbank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/filtbank.c -------------------------------------------------------------------------------- /libfaad/filtbank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/filtbank.h -------------------------------------------------------------------------------- /libfaad/fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/fixed.h -------------------------------------------------------------------------------- /libfaad/hcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/hcr.c -------------------------------------------------------------------------------- /libfaad/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/huffman.c -------------------------------------------------------------------------------- /libfaad/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/huffman.h -------------------------------------------------------------------------------- /libfaad/ic_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ic_predict.c -------------------------------------------------------------------------------- /libfaad/ic_predict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ic_predict.h -------------------------------------------------------------------------------- /libfaad/iq_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/iq_table.h -------------------------------------------------------------------------------- /libfaad/is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/is.c -------------------------------------------------------------------------------- /libfaad/is.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/is.h -------------------------------------------------------------------------------- /libfaad/kbd_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/kbd_win.h -------------------------------------------------------------------------------- /libfaad/libfaad.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/libfaad.vcproj -------------------------------------------------------------------------------- /libfaad/libfaad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/libfaad.vcxproj -------------------------------------------------------------------------------- /libfaad/libfaad.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/libfaad.vcxproj.filters -------------------------------------------------------------------------------- /libfaad/libfaad2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/libfaad2.def -------------------------------------------------------------------------------- /libfaad/libfaad2.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/libfaad2.vcproj -------------------------------------------------------------------------------- /libfaad/libfaad2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/libfaad2.vcxproj -------------------------------------------------------------------------------- /libfaad/libfaad2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/libfaad2.vcxproj.filters -------------------------------------------------------------------------------- /libfaad/libfaad2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/libfaad2.vcxproj.user -------------------------------------------------------------------------------- /libfaad/lt_predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/lt_predict.c -------------------------------------------------------------------------------- /libfaad/lt_predict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/lt_predict.h -------------------------------------------------------------------------------- /libfaad/mdct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/mdct.c -------------------------------------------------------------------------------- /libfaad/mdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/mdct.h -------------------------------------------------------------------------------- /libfaad/mdct_tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/mdct_tab.h -------------------------------------------------------------------------------- /libfaad/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/meson.build -------------------------------------------------------------------------------- /libfaad/mp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/mp4.c -------------------------------------------------------------------------------- /libfaad/mp4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/mp4.h -------------------------------------------------------------------------------- /libfaad/ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ms.c -------------------------------------------------------------------------------- /libfaad/ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ms.h -------------------------------------------------------------------------------- /libfaad/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/output.c -------------------------------------------------------------------------------- /libfaad/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/output.h -------------------------------------------------------------------------------- /libfaad/pns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/pns.c -------------------------------------------------------------------------------- /libfaad/pns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/pns.h -------------------------------------------------------------------------------- /libfaad/ps_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ps_dec.c -------------------------------------------------------------------------------- /libfaad/ps_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ps_dec.h -------------------------------------------------------------------------------- /libfaad/ps_syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ps_syntax.c -------------------------------------------------------------------------------- /libfaad/ps_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ps_tables.h -------------------------------------------------------------------------------- /libfaad/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/pulse.c -------------------------------------------------------------------------------- /libfaad/pulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/pulse.h -------------------------------------------------------------------------------- /libfaad/rvlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/rvlc.c -------------------------------------------------------------------------------- /libfaad/rvlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/rvlc.h -------------------------------------------------------------------------------- /libfaad/sbr_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_dct.c -------------------------------------------------------------------------------- /libfaad/sbr_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_dct.h -------------------------------------------------------------------------------- /libfaad/sbr_dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_dec.c -------------------------------------------------------------------------------- /libfaad/sbr_dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_dec.h -------------------------------------------------------------------------------- /libfaad/sbr_e_nf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_e_nf.c -------------------------------------------------------------------------------- /libfaad/sbr_e_nf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_e_nf.h -------------------------------------------------------------------------------- /libfaad/sbr_fbt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_fbt.c -------------------------------------------------------------------------------- /libfaad/sbr_fbt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_fbt.h -------------------------------------------------------------------------------- /libfaad/sbr_hfadj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_hfadj.c -------------------------------------------------------------------------------- /libfaad/sbr_hfadj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_hfadj.h -------------------------------------------------------------------------------- /libfaad/sbr_hfgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_hfgen.c -------------------------------------------------------------------------------- /libfaad/sbr_hfgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_hfgen.h -------------------------------------------------------------------------------- /libfaad/sbr_huff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_huff.c -------------------------------------------------------------------------------- /libfaad/sbr_huff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_huff.h -------------------------------------------------------------------------------- /libfaad/sbr_noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_noise.h -------------------------------------------------------------------------------- /libfaad/sbr_qmf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_qmf.c -------------------------------------------------------------------------------- /libfaad/sbr_qmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_qmf.h -------------------------------------------------------------------------------- /libfaad/sbr_qmf_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_qmf_c.h -------------------------------------------------------------------------------- /libfaad/sbr_syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_syntax.c -------------------------------------------------------------------------------- /libfaad/sbr_syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_syntax.h -------------------------------------------------------------------------------- /libfaad/sbr_tf_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_tf_grid.c -------------------------------------------------------------------------------- /libfaad/sbr_tf_grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sbr_tf_grid.h -------------------------------------------------------------------------------- /libfaad/sine_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/sine_win.h -------------------------------------------------------------------------------- /libfaad/specrec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/specrec.c -------------------------------------------------------------------------------- /libfaad/specrec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/specrec.h -------------------------------------------------------------------------------- /libfaad/ssr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ssr.c -------------------------------------------------------------------------------- /libfaad/ssr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ssr.h -------------------------------------------------------------------------------- /libfaad/ssr_fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ssr_fb.c -------------------------------------------------------------------------------- /libfaad/ssr_fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ssr_fb.h -------------------------------------------------------------------------------- /libfaad/ssr_ipqf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ssr_ipqf.c -------------------------------------------------------------------------------- /libfaad/ssr_ipqf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ssr_ipqf.h -------------------------------------------------------------------------------- /libfaad/ssr_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/ssr_win.h -------------------------------------------------------------------------------- /libfaad/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/structs.h -------------------------------------------------------------------------------- /libfaad/syntax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/syntax.c -------------------------------------------------------------------------------- /libfaad/syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/syntax.h -------------------------------------------------------------------------------- /libfaad/tns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/tns.c -------------------------------------------------------------------------------- /libfaad/tns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/libfaad/tns.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/meson_options.txt -------------------------------------------------------------------------------- /publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/publish.bat -------------------------------------------------------------------------------- /scripts/AmatsukazeServer.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | ./exe_files/AmatsukazeServerCLI -p 32768 4 | 5 | -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/build_dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/scripts/build_dep.sh -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/mfx.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigaya/Amatsukaze/HEAD/scripts/mfx.diff --------------------------------------------------------------------------------