Skip to content

Commit 0f9d921

Browse files
authored
Fix typos (#830)
1 parent dff2adb commit 0f9d921

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

hificore/src/main/cpp/compressor/intrinsic_utils.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,7 +1184,7 @@ namespace android::audio_utils::intrinsics {
11841184
* Evaluate f(v1 [, v2 [, v3]]) and return an intrinsic struct result.
11851185
*
11861186
* The veval method returns the vector result by element-wise
1187-
* evaulating a functional f to one or more intrinsic struct inputs.
1187+
* evaluating a functional f to one or more intrinsic struct inputs.
11881188
* Compare this method with the single argument vapply,
11891189
* which can modify a single struct argument in-place.
11901190
*/
@@ -1378,7 +1378,7 @@ namespace android::audio_utils::intrinsics {
13781378

13791379
ret_t ret = a[0];
13801380
// array_like is not the same as an array, so we use sizeof here
1381-
// to handle neon instrinsics.
1381+
// to handle neon intrinsics.
13821382
#pragma unroll
13831383
for (size_t i = 1; i < sizeof(a) / sizeof(a[0]); ++i) {
13841384
ret = f(ret, a[i]);

misc/alacdecoder/src/main/java/com/beatofthedrum/alacdecoder/AlacFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class AlacFile {
4444
public int setinfo_max_samples_per_frame = 0; // 0x1000 = 4096
4545
public int max_frame_bytes = 0;
4646
int ibIdx = 0;
47-
int input_buffer_bitaccumulator = 0; /* used so we can do arbitary
47+
int input_buffer_bitaccumulator = 0; /* used so we can do arbitrary
4848
bit reads */
4949
LeadingZeros lz = new LeadingZeros();
5050
/* buffers */

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Then, try to reboot your phone, then wait a few minutes (this will rescan the sy
7373
If it's still not visible, your system version may not support scanning this file extension: this most commonly is observed for .opus, which will only be scanned since Android 10 (pro tip: rename your .opus file to .ogg, and it will be detected on Android 6 and later).
7474

7575
**My song isn't playing! / My song is playing, but it's completely silent, yet the volume is turned up!**
76-
Please note that Gramophone relys on system media codecs to make the app smaller. This means
76+
Please note that Gramophone relies on system media codecs to make the app smaller. This means
7777
- int32 (32-bit) FLAC files will only work on Android 14 or later
7878
- FLAC files often do work even on versions prior to Android 8, but are only officially supported on Android 8 or later
7979
- xHE-AAC files in general will only work on Android 9 or later

0 commit comments

Comments
 (0)