You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -69,18 +69,18 @@ make
69
69
70
70
## Parameters
71
71
72
-
The decoder needs to allocate a buffer to store a frame and the decoded data. The following default values have been defined:
72
+
The decoder needs to allocate a buffer to store a frame and the decoded data. The following default values have been defined in ConfigHelix.h:
73
73
74
74
```
75
75
#define MP3_MAX_OUTPUT_SIZE 1024 * 5
76
-
#define MP3_MAX_FRAME_SIZE 1600
77
-
#define AAC_MAX_OUTPUT_SIZE 1024 * 3
76
+
#define MP3_MAX_FRAME_SIZE 1024 * 2
77
+
#define AAC_MAX_OUTPUT_SIZE 1024 * 8
78
78
#define AAC_MAX_FRAME_SIZE 2100
79
79
```
80
80
81
81
These values are working with standard bitrates, but in some exceptional cases (with extreme (220kbs) or insane (320kbs) bitrates) you might need to increase these values e.g. to
0 commit comments