1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/**********************************************************************
Audacity: A Digital Audio Editor
OtherHeaders.dox2
James Crook
********************************************************************//**
\page OtherHeaders Other Headers
\section OtherHeadersIntro Introduction
Some of the header files contained in the Audacity source directory
are headers for linkage with other modules.
- lapspa.h provides the API for Linux Audio Plugins Architecture.
*//*****************************************************************//**
\class _LADSPA_PortRangeHint
\brief _LADSPA_PortRangeHint is a structure that gives parameter
validation information for a LADSPA (Linux Audio Plugin Architecture)
plug in effect.
For example it can indicate that a value (called a
'Port' in LADSPA terminology) has a logarithmic scale, and what its
upper and lower bounds are.
*//*****************************************************************//**
\class _LADSPA_Descriptor
\brief _LADSPA_Descriptor is a structure that provides the API to a
LADSPA (Linux Audio Plugin Architecture) Effect.
It specifies how many parameters there are and the callback to run
the effect, amongst other properties.
*//*****************************************************************//**
\class BE_CONFIG
\brief BE_CONFIG is a structure defined in the Blade DLL Interface
for LAME (MP3 Conversion DLL).
*//*****************************************************************//**
\class BE_VERSION
\brief BE_VERSION is a structure defined in the Blade DLL Interface
for LAME (MP3 Conversion DLL).
*//*****************************************************************//**
\class lame_global_flags
\brief struct with zillion of control parameters that control
lame export (MP3 Conversion DLL).
*//*****************************************************************//**
\class mad_bitptr
\brief struct in the MPEG library, used for MP3 compression by
MP3Exporter
*//*****************************************************************//**
\class mad_decoder
\brief struct in the MPEG library, used for MP3 compression by
MP3Exporter
*//*****************************************************************//**
\class mad_frame
\brief struct in the MPEG library, used for MP3 compression by
MP3Exporter
*//*****************************************************************//**
\class mad_header
\brief struct in the MPEG library, used for MP3 compression by
MP3Exporter
*//*****************************************************************//**
\class mad_pcm
\brief struct in the MPEG library, used for MP3 compression by
MP3Exporter
*//*****************************************************************//**
\class mad_stream
\brief struct in the MPEG library, used for MP3 compression by
MP3Exporter
*//*****************************************************************//**
\class mad_synth
\brief struct in the MPEG library, used for MP3 compression by
MP3Exporter
*//*****************************************************************//**
\class mad_timer_t
\brief struct in the MPEG library, used for MP3 compression by
MP3Exporter
*//*****************************************************************//**
\class wxTreebook
\brief A wxTreebook is a class like wxNotebook, but not yet supported
by wxWidgets 2.6.3
*//*****************************************************************//**
\class wxTreebookItemData
\brief One item in a wxTreebook. (I think)
*//*******************************************************************/
|