Skip to content

Commit

Permalink
ドキュメント類を整理
Browse files Browse the repository at this point in the history
AppVeyor の構成ファイルは GitHub Actions が使える現在では不要なため削除した
  • Loading branch information
tsukumijima committed Aug 25, 2023
1 parent e3fb0c6 commit be5b608
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 142 deletions.
131 changes: 0 additions & 131 deletions .appveyor.yml

This file was deleted.

4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ set(ARIBB1_MAJOR_VERSION "0")
set(ARIBB1_MINOR_VERSION "2")
set(ARIBB1_PATCH_VERSION "8")
set(ARIBB1_VERSION_NUMBER ${ARIBB1_MAJOR_VERSION}.${ARIBB1_MINOR_VERSION}.${ARIBB1_PATCH_VERSION})
set(ARIBB1_VERSION_STRING stz-${ARIBB1_VERSION_NUMBER})
set(ARIBB1_VERSION_STRING ${ARIBB1_VERSION_NUMBER})

# ---------- set variable (libaribb25) ----------

Expand All @@ -70,7 +70,7 @@ set(ARIBB25_MAJOR_VERSION "0")
set(ARIBB25_MINOR_VERSION "2")
set(ARIBB25_PATCH_VERSION "8")
set(ARIBB25_VERSION_NUMBER ${ARIBB25_MAJOR_VERSION}.${ARIBB25_MINOR_VERSION}.${ARIBB25_PATCH_VERSION})
set(ARIBB25_VERSION_STRING stz-${ARIBB25_VERSION_NUMBER})
set(ARIBB25_VERSION_STRING ${ARIBB25_VERSION_NUMBER})

# ---------- define flags ----------

Expand Down
7 changes: 0 additions & 7 deletions MEMO.txt

This file was deleted.

17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,21 @@ sudo make install
`sudo make install` でビルドした libaribb1 / libaribb25 をインストールします。
`build/` ディレクトリで `sudo make uninstall` を実行することで、インストールしたファイルをアンインストールすることができます。

以下のドキュメントは、元の readme.txt を内容をそのままに Markdown 形式に書き直したものです。
HaijinW 版での変更内容が記載されている [MEMO.txt](https://github.com/tsukumijima/libaribb25/blob/master/MEMO.txt) もあわせて参照してください。
-----

このフォークに取り込んだ [HaijinW 版](https://github.com/HaijinW/libaribb25) での変更内容は下記の通りです (原文ママ: [出典](https://github.com/HaijinW/libaribb25/blob/feature/simd/MEMO.txt)) 。

```plain
勉強用に復号処理を SIMD 拡張命令で実装。
既存のコードや資料などを参考に、SSE2、SSSE3、AVX2 に対応した。
初期化時には、AVX2、SSSE3、SSE2、拡張命令なしの順で利用可能なものを選択する。
ラウンド関数のあと、最後の XOR 演算はもっとよい方法があればよかったが、思いつかなかった。
Windows環境 (x86-64) でのみ動作確認。開発環境は Visual Studio 2017 Community (15.9.7) 。
あくまで勉強用なので、安定的な動作の保証はない。
```

以下のドキュメントは、原作者のまるも氏が書かれた元の readme.txt を、記述をそのままに Markdown 形式に書き直したものです。

----

Expand Down

0 comments on commit be5b608

Please sign in to comment.