diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Plugins/Encoder/enc_fhgaac/preferences.h | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/Plugins/Encoder/enc_fhgaac/preferences.h')
-rw-r--r-- | Src/Plugins/Encoder/enc_fhgaac/preferences.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Src/Plugins/Encoder/enc_fhgaac/preferences.h b/Src/Plugins/Encoder/enc_fhgaac/preferences.h new file mode 100644 index 00000000..0ed9cabc --- /dev/null +++ b/Src/Plugins/Encoder/enc_fhgaac/preferences.h @@ -0,0 +1,18 @@ +#pragma once +#include <windows.h> +#include "config.h" + +extern HINSTANCE enc_fhg_HINST; +INT_PTR CALLBACK Preferences_MP4_DlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); +INT_PTR CALLBACK Preferences_ADTS_DlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam); + +/* common to both */ +extern const int bitrate_slider_precision; +void UpdateInfo(HWND hwnd, const AACConfiguration *config); +void UpdateUI(HWND hwnd, AACConfigurationFile *config); +int Preferences_GetEncoderVersion(char *version_string, size_t cch); +unsigned int GetSliderBitrate(HWND hwnd); + +#include <api/application/api_application.h> +extern api_application *applicationApi; +#define WASABI_API_APP applicationApi
\ No newline at end of file |