1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-25 15:53:52 +02:00

Fix: bug 2054

Windows: Macros - "ExportMP3 before" and "ExportMP3 after" overwrite
causing non-critical data loss.

Thanks to Mike Barker for locating the problem.

This fix also corrects the bit-rate for the ExportMP3_56k commands.
This commit is contained in:
Steve Daulton
2019-01-21 10:21:03 +00:00
parent 226851ab91
commit b3dafcedd1
3 changed files with 17 additions and 5 deletions

View File

@@ -105,11 +105,6 @@
// ExportMP3Options
//----------------------------------------------------------------------------
#define MODE_SET 0
#define MODE_VBR 1
#define MODE_ABR 2
#define MODE_CBR 3
#define CHANNEL_JOINT 0
#define CHANNEL_STEREO 1
#define CHANNEL_MONO 2

View File

@@ -14,6 +14,12 @@
/* --------------------------------------------------------------------------*/
#include "../MemoryX.h"
#define MODE_SET 0
#define MODE_VBR 1
#define MODE_ABR 2
#define MODE_CBR 3
class ExportPlugin;
class wxString;
class wxWindow;