-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5919 from lazka/twolame-fix-export
twolame: fix missing export of twolame_encode_buffer_float32_interleaved
- Loading branch information
Showing
2 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
From: Sebastian Ramacher <[email protected]> | ||
Date: Tue, 15 Oct 2019 20:22:34 +0200 | ||
Subject: Add missing TL_API | ||
|
||
--- | ||
libtwolame/twolame.h | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/libtwolame/twolame.h b/libtwolame/twolame.h | ||
index 4348fde..a88e8ac 100644 | ||
--- a/libtwolame/twolame.h | ||
+++ b/libtwolame/twolame.h | ||
@@ -263,7 +263,7 @@ TL_API int twolame_encode_buffer_float32(twolame_options * glopts, | ||
* \return The number of bytes put in output buffer | ||
* or a negative value on error | ||
*/ | ||
-int twolame_encode_buffer_float32_interleaved(twolame_options * glopts, | ||
+TL_API int twolame_encode_buffer_float32_interleaved(twolame_options * glopts, | ||
const float pcm[], | ||
int num_samples, | ||
unsigned char *mp2buffer, int mp2buffer_size); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters