mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 00:29:41 +02:00
Merge branch 'master' of https://github.com/tenacityteam/tenacity
This commit is contained in:
commit
d52f8602aa
@ -11,9 +11,13 @@ sources:
|
|||||||
tasks:
|
tasks:
|
||||||
- conan: |
|
- conan: |
|
||||||
sudo pip install conan
|
sudo pip install conan
|
||||||
- build: |
|
- configure: |
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake -G "Unix Makefiles" \
|
cmake -G "Unix Makefiles" \
|
||||||
-Daudacity_use_ffmpeg=loaded \
|
-Daudacity_use_ffmpeg=loaded \
|
||||||
../tenacity
|
../tenacity
|
||||||
|
- make: |
|
||||||
|
cd build
|
||||||
|
make -j4
|
||||||
|
# TODO: Add artifacts
|
||||||
|
18
.editorconfig
Normal file
18
.editorconfig
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# top-most EditorConfig file
|
||||||
|
root = true
|
||||||
|
|
||||||
|
# Unix-style newlines with a newline ending every file
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
# 4-wide spaces
|
||||||
|
[*.{c,h,cpp,hpp}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
# use tabs for Makefile
|
||||||
|
[Makefile]
|
||||||
|
indent_style = tab
|
20
BUILDING.md
20
BUILDING.md
@ -122,19 +122,30 @@ cmake -GXCode -T buildsystem=1 -Duse_mad="off" -Duse_id3tag=off ../tenacity
|
|||||||
|
|
||||||
```
|
```
|
||||||
$ git clone https://github.com/tenacityteam/tenacity/
|
$ git clone https://github.com/tenacityteam/tenacity/
|
||||||
|
$ cd tenacity
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Configure Tenacity using CMake:
|
2. Configure Tenacity using CMake:
|
||||||
```
|
```bash
|
||||||
$ mkdir build && cd build
|
$ mkdir build && cd build
|
||||||
$ cmake -G "Unix Makefiles" -Duse_ffmpeg=loaded ../tenacity
|
$ cmake -G "Unix Makefiles" -Duse_ffmpeg=loaded ..
|
||||||
```
|
```
|
||||||
By default, Debug build will be configured. To change that, pass `-DCMAKE_BUILD_TYPE=Release` to CMake.
|
By default, Debug build will be configured. To change that, pass `-DCMAKE_BUILD_TYPE=Release` to CMake.
|
||||||
|
|
||||||
3. Build Tenacity:
|
3. Build Tenacity:
|
||||||
```
|
```bash
|
||||||
$ make -j`nproc`
|
$ make -j`nproc`
|
||||||
```
|
```
|
||||||
|
Note that this may slow your computer down quite a bit. To avoid this, you can use the alternate command:
|
||||||
|
```bash
|
||||||
|
$ make -j$(($(nproc)-2))
|
||||||
|
```
|
||||||
|
This will use 2 fewer CPU cores than the default, which is to use the absolute maximum number of cores. Feel free to change this to `make -j$(($(nproc)-3))` if you want to use (MAX-3) cores, or any other custom values.
|
||||||
|
Alternatively, you can manually specify the number of CPU cores to use:
|
||||||
|
```bash
|
||||||
|
$ make -j2
|
||||||
|
# Uses only 2 cores
|
||||||
|
```
|
||||||
|
|
||||||
4. Testing the build:
|
4. Testing the build:
|
||||||
Adding a "Portable Settings" folder allows Tenacity to ignore the settings of any existing Tenacity installation.
|
Adding a "Portable Settings" folder allows Tenacity to ignore the settings of any existing Tenacity installation.
|
||||||
@ -156,8 +167,9 @@ You can use `cmake -LH` to get a list of the options available (or use CMake GUI
|
|||||||
|
|
||||||
On Linux it is possible to build Tenacity using (almost) only the libraries provided by the package manager. Please, see the list of required libraries [here](linux/required_libraries.md).
|
On Linux it is possible to build Tenacity using (almost) only the libraries provided by the package manager. Please, see the list of required libraries [here](linux/required_libraries.md).
|
||||||
|
|
||||||
|
Follow the steps from [Linux & Other OS](#linux--other-os) section but run CMake with the following arguments:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ mkdir build && cd build
|
|
||||||
$ cmake -G "Unix Makefiles" \
|
$ cmake -G "Unix Makefiles" \
|
||||||
-Duse_ffmpeg=loaded \
|
-Duse_ffmpeg=loaded \
|
||||||
-Dlib_preference=system \
|
-Dlib_preference=system \
|
||||||
|
@ -29,11 +29,10 @@ set( AUDACITY_RELEASE 0 )
|
|||||||
set( AUDACITY_REVISION 4 )
|
set( AUDACITY_REVISION 4 )
|
||||||
set( AUDACITY_MODLEVEL 0 )
|
set( AUDACITY_MODLEVEL 0 )
|
||||||
|
|
||||||
string( TIMESTAMP __TDATE__ "%Y%m%d" )
|
|
||||||
if( AUDACITY_BUILD_LEVEL EQUAL 0 )
|
if( AUDACITY_BUILD_LEVEL EQUAL 0 )
|
||||||
set( AUDACITY_SUFFIX "-alpha-${__TDATE__}" )
|
set( AUDACITY_SUFFIX "-alpha" )
|
||||||
elseif( AUDACITY_BUILD_LEVEL EQUAL 1 )
|
elseif( AUDACITY_BUILD_LEVEL EQUAL 1 )
|
||||||
set( AUDACITY_SUFFIX "-beta-${__TDATE__}" )
|
set( AUDACITY_SUFFIX "-beta" )
|
||||||
else()
|
else()
|
||||||
set( AUDACITY_SUFFIX "" )
|
set( AUDACITY_SUFFIX "" )
|
||||||
endif()
|
endif()
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
[](LICENSE.txt)
|
[](LICENSE.txt)
|
||||||
[](https://github.com/tenacityteam/tenacity/issues)
|
[](https://github.com/tenacityteam/tenacity/issues)
|
||||||
[](https://github.com/tenacityteam/tenacity/actions?query=branch%3Amaster)
|
[](https://github.com/tenacityteam/tenacity/actions?query=branch%3Amaster)
|
||||||
[](https://builds.sr.ht/~tenacity/tenacity/?)
|
[](https://builds.sr.ht/~tenacity/tenacity/commits/?)
|
||||||
[](https://hosted.weblate.org/engage/tenacity/)
|
[](https://hosted.weblate.org/engage/tenacity/)
|
||||||
|
|
||||||
Tenacity is an easy-to-use, cross-platform multi-track audio editor/recorder for Windows, MacOS, GNU/Linux and other operating systems and is developed by a group of volunteers as open source software.
|
Tenacity is an easy-to-use, cross-platform multi-track audio editor/recorder for Windows, MacOS, GNU/Linux and other operating systems and is developed by a group of volunteers as open source software.
|
||||||
@ -23,7 +23,7 @@ Tenacity is an easy-to-use, cross-platform multi-track audio editor/recorder for
|
|||||||
You can find more information on the causes of the fork here:
|
You can find more information on the causes of the fork here:
|
||||||
|
|
||||||
- [**Privacy policy which may violate the original project's GPL license**](https://github.com/audacity/audacity/issues/1213)
|
- [**Privacy policy which may violate the original project's GPL license**](https://github.com/audacity/audacity/issues/1213)
|
||||||
- [**Contributer's License Agreement (CLA) which may violate the same GPL license**](https://github.com/audacity/audacity/discussions/932)
|
- [**Contributor's License Agreement (CLA) which may violate the same GPL license**](https://github.com/audacity/audacity/discussions/932)
|
||||||
- [**Attempts at adding telemetry using Google services for data collection**](https://github.com/audacity/audacity/pull/835)
|
- [**Attempts at adding telemetry using Google services for data collection**](https://github.com/audacity/audacity/pull/835)
|
||||||
|
|
||||||
## Pre-fork Access
|
## Pre-fork Access
|
||||||
|
@ -140,7 +140,7 @@ set_conan_vars_to_parent()
|
|||||||
# directory option symbol req chk version
|
# directory option symbol req chk version
|
||||||
addlib( libsndfile sndfile SNDFILE YES YES "sndfile >= 1.0.28" )
|
addlib( libsndfile sndfile SNDFILE YES YES "sndfile >= 1.0.28" )
|
||||||
addlib( libsoxr soxr SOXR YES YES "soxr >= 0.1.1" )
|
addlib( libsoxr soxr SOXR YES YES "soxr >= 0.1.1" )
|
||||||
addlib( portaudio-v19 portaudio PORTAUDIO YES YES "" )
|
addlib( portaudio-v19 portaudio PORTAUDIO YES YES "portaudio-2.0 >= 19" )
|
||||||
addlib( sqlite sqlite SQLITE YES YES "sqlite3 >= 3.32.0" )
|
addlib( sqlite sqlite SQLITE YES YES "sqlite3 >= 3.32.0" )
|
||||||
|
|
||||||
# Optional libraries
|
# Optional libraries
|
||||||
@ -162,6 +162,11 @@ endif ()
|
|||||||
|
|
||||||
|
|
||||||
addlib( portmixer portmixer PORTMIXER NO YES "" )
|
addlib( portmixer portmixer PORTMIXER NO YES "" )
|
||||||
|
if (USE_PORTMIXER AND use_portaudio STREQUAL "system")
|
||||||
|
message(FATAL_ERROR "Tenacity's use of PortMixer requires using the vendored fork of PortAudio.\n"
|
||||||
|
"${_OPT}use_portaudio=local is required if ${_OPT}use_portmixer=local\n"
|
||||||
|
"Alternatively set ${_OPT}use_portmixer=off to keep ${_OPT}use_portaudio=system")
|
||||||
|
endif()
|
||||||
if (NOT USE_PORTMIXER AND
|
if (NOT USE_PORTMIXER AND
|
||||||
"EXPERIMENTAL_AUTOMATED_INPUT_LEVEL_ADJUSTMENT" IN_LIST
|
"EXPERIMENTAL_AUTOMATED_INPUT_LEVEL_ADJUSTMENT" IN_LIST
|
||||||
EXPERIMENTAL_OPTIONS_LIST )
|
EXPERIMENTAL_OPTIONS_LIST )
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AColor.cpp
|
AColor.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AColor.h
|
AColor.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file AColorResources.h
|
@file AColorResources.h
|
||||||
@brief RGB data of 'Color (New)' spectrogram color scheme
|
@brief RGB data of 'Color (New)' spectrogram color scheme
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AboutDialog.cpp
|
AboutDialog.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AboutDialog.h
|
AboutDialog.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
ActiveProjects.cpp
|
ActiveProjects.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
ActiveProjects.h
|
ActiveProjects.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AdornedRulerPanel.cpp
|
AdornedRulerPanel.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AdornedRulerPanel.h
|
AdornedRulerPanel.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AllThemeResources.cpp
|
AllThemeResources.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AllThemeResources.h
|
AllThemeResources.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*!********************************************************************
|
/*!********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file AttachedVirtualFunction.h
|
@file AttachedVirtualFunction.h
|
||||||
@brief Utility for non-intrusive definition of a new method on a base class
|
@brief Utility for non-intrusive definition of a new method on a base class
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudacityApp.cpp
|
AudacityApp.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudacityApp.h
|
AudacityApp.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*!********************************************************************
|
/*!********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file AudacityException.cpp
|
@file AudacityException.cpp
|
||||||
@brief Implements AudacityException and related
|
@brief Implements AudacityException and related
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
/*!********************************************************************
|
/*!********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file AudacityException.h
|
@file AudacityException.h
|
||||||
@brief Declare abstract class AudacityException, some often-used subclasses, and @ref GuardedCall
|
@brief Declare abstract class AudacityException, some often-used subclasses, and @ref GuardedCall
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudacityFileConfig.cpp
|
AudacityFileConfig.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file AudacityFileConfig.h
|
@file AudacityFileConfig.h
|
||||||
@brief Extend FileConfig with application-specific behavior
|
@brief Extend FileConfig with application-specific behavior
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudacityHeaders.cpp
|
AudacityHeaders.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudacityHeaders.h
|
AudacityHeaders.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudacityLogger.cpp
|
AudacityLogger.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudacityLogger.h
|
AudacityLogger.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudioIO.cpp
|
AudioIO.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudioIO.h
|
AudioIO.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudioIOBase.cpp
|
AudioIOBase.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudioIOBase.h
|
AudioIOBase.h
|
||||||
|
|
||||||
@ -21,6 +21,8 @@ Paul Licameli split from AudioIO.h
|
|||||||
#include <wx/weakref.h> // member variable
|
#include <wx/weakref.h> // member variable
|
||||||
#include "MemoryX.h"
|
#include "MemoryX.h"
|
||||||
|
|
||||||
|
#include <portaudio.h>
|
||||||
|
|
||||||
struct PaDeviceInfo;
|
struct PaDeviceInfo;
|
||||||
typedef void PaStream;
|
typedef void PaStream;
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AudioIOListener.h
|
AudioIOListener.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AutoRecoveryDialog.cpp
|
AutoRecoveryDialog.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
AutoRecoveryDialog.h
|
AutoRecoveryDialog.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
BatchCommandDialog.cpp
|
BatchCommandDialog.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
BatchCommandDialog.h
|
BatchCommandDialog.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
MacroCommands.cpp
|
MacroCommands.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
MacroCommands.h
|
MacroCommands.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
ApplyMacroDialog.cpp
|
ApplyMacroDialog.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
BatchProcessDialog.h
|
BatchProcessDialog.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Benchmark.cpp
|
Benchmark.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Benchmark.h
|
Benchmark.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
CellularPanel.cpp
|
CellularPanel.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
CellularPanel.h
|
CellularPanel.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*!********************************************************************
|
/*!********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file ClientData.h
|
@file ClientData.h
|
||||||
@brief Utility ClientData::Site to register hooks into a host class that attach client data
|
@brief Utility ClientData::Site to register hooks into a host class that attach client data
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*!********************************************************************
|
/*!********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file ClientDataHelpers.h
|
@file ClientDataHelpers.h
|
||||||
@brief Some implementation details for ClientData
|
@brief Some implementation details for ClientData
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Clipboard.cpp
|
Clipboard.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Clipboard.h
|
Clipboard.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
CommonCommandFlags.cpp
|
CommonCommandFlags.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
CommonCommandFlags.h
|
CommonCommandFlags.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
CrossFade.cpp
|
CrossFade.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
CrossFade.h
|
CrossFade.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*!********************************************************************
|
/*!********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file DBConnection.cpp
|
@file DBConnection.cpp
|
||||||
@brief Implements DBConnection
|
@brief Implements DBConnection
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*!********************************************************************
|
/*!********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
@file DBConnection.h
|
@file DBConnection.h
|
||||||
@brief Declare DBConnection, which maintains database connection and associated status and background thread
|
@brief Declare DBConnection, which maintains database connection and associated status and background thread
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
Audacity(R) is copyright (c) 1999-2008 Audacity Team.
|
Audacity(R) is copyright (c) 1999-2008 Audacity Team.
|
||||||
License: GPL v2. See License.txt.
|
License: GPL v2. See License.txt.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
Audacity(R) is copyright (c) 1999-2008 Audacity Team.
|
Audacity(R) is copyright (c) 1999-2008 Audacity Team.
|
||||||
License: GPL v2. See License.txt.
|
License: GPL v2. See License.txt.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
DeviceChange.cpp
|
DeviceChange.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
DeviceChange.h
|
DeviceChange.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
DeviceManager.h
|
DeviceManager.h
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Diags.cpp
|
Diags.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Diags.h
|
Diags.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Dither.cpp
|
Dither.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Steve Harris
|
Steve Harris
|
||||||
Markus Meyer
|
Markus Meyer
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Envelope.cpp
|
Envelope.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Envelope.h
|
Envelope.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
EnvelopeEditor.cpp
|
EnvelopeEditor.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
EnvelopeEditor.h
|
EnvelopeEditor.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FFmpeg.cpp
|
FFmpeg.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FFmpeg.h
|
FFmpeg.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FileFormats.cpp
|
FileFormats.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FileFormats.h
|
FileFormats.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FileIO.cpp
|
FileIO.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FileIO.h
|
FileIO.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FileNames.cpp
|
FileNames.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FileNames.h
|
FileNames.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FreqWindow.cpp
|
FreqWindow.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
FreqWindow.h
|
FreqWindow.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
HelpText.cpp
|
HelpText.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
HelpText.h
|
HelpText.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
HistoryWindow.cpp
|
HistoryWindow.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
HistoryWindow.h
|
HistoryWindow.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
HitTestResult.h
|
HitTestResult.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
ImageManipulation.cpp
|
ImageManipulation.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
ImageManipulation.h
|
ImageManipulation.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
InterpolateAudio.cpp
|
InterpolateAudio.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
InterpolateAudio.h
|
InterpolateAudio.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
KeyboardCapture.cpp
|
KeyboardCapture.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
KeyboardCapture.h
|
KeyboardCapture.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
LabelDialog.cpp
|
LabelDialog.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
LabelDialog.h
|
LabelDialog.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
LabelTrack.cpp
|
LabelTrack.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
LabelTrack.h
|
LabelTrack.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
LangChoice.cpp
|
LangChoice.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
LangChoice.h
|
LangChoice.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Legacy.cpp
|
Legacy.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Legacy.h
|
Legacy.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Lyrics.cpp
|
Lyrics.cpp
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
Lyrics.h
|
Lyrics.h
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
|
|
||||||
Audacity: A Digital Audio Editor
|
Tenacity
|
||||||
|
|
||||||
LyricsWindow.cpp
|
LyricsWindow.cpp
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user