Skip to content

Commit 17d4f08

Browse files
chore(loader): use versioned library filenames (#12)
1 parent 9aa2242 commit 17d4f08

18 files changed

+67
-26
lines changed

composer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
"codewithkyrian/platform-package-installer": "^1.0"
1010
},
1111
"require-dev": {
12-
"symfony/var-dumper": "^6.4.11|^7.1.5",
12+
"symfony/var-dumper": "^6.4.11|^7.1.5|^8.0",
1313
"pestphp/pest": "^2.36.0|^3.5.0",
14-
"mockery/mockery": "^1.6",
15-
"laravel/pint": "^1.18"
14+
"mockery/mockery": "^1.6"
1615
},
1716
"license": "MIT",
1817
"autoload": {

include/whisper.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#ifndef WHISPER_H
22
#define WHISPER_H
3+
#endif
4+
5+
#include <stdint.h>
6+
#include <stddef.h>
37

48
#define WHISPER_SAMPLE_RATE 16000
59
#define WHISPER_N_FFT 400
@@ -52,7 +56,7 @@ typedef int32_t whisper_pos;
5256
typedef int32_t whisper_token;
5357
typedef int32_t whisper_seq_id;
5458

55-
enum whisper_alignment_heads_preset {
59+
enum whisper_alignment_heads_preset {
5660
WHISPER_AHEADS_NONE,
5761
WHISPER_AHEADS_N_TOP_MOST, // All heads from the N-top-most text-layers
5862
WHISPER_AHEADS_CUSTOM,
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)