vlc_aout.h

Go to the documentation of this file.
00001 /*****************************************************************************
00002  * vlc_aout.h : audio output interface
00003  *****************************************************************************
00004  * Copyright (C) 2002-2011 VLC authors and VideoLAN
00005  *
00006  * Authors: Christophe Massiot <massiot@via.ecp.fr>
00007  *
00008  * This program is free software; you can redistribute it and/or modify it
00009  * under the terms of the GNU Lesser General Public License as published by
00010  * the Free Software Foundation; either version 2.1 of the License, or
00011  * (at your option) any later version.
00012  *
00013  * This program is distributed in the hope that it will be useful,
00014  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00015  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00016  * GNU Lesser General Public License for more details.
00017  *
00018  * You should have received a copy of the GNU Lesser General Public License
00019  * along with this program; if not, write to the Free Software Foundation,
00020  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
00021  *****************************************************************************/
00022 
00023 #ifndef VLC_AOUT_H
00024 #define VLC_AOUT_H 1
00025 
00026 /**
00027  * \file
00028  * This file defines functions, structures and macros for audio output object
00029  */
00030 
00031 /* Max number of pre-filters per input, and max number of post-filters */
00032 #define AOUT_MAX_FILTERS                10
00033 
00034 /* Buffers which arrive in advance of more than AOUT_MAX_ADVANCE_TIME
00035  * will be considered as bogus and be trashed */
00036 #define AOUT_MAX_ADVANCE_TIME           (AOUT_MAX_PREPARE_TIME + CLOCK_FREQ)
00037 
00038 /* Buffers which arrive in advance of more than AOUT_MAX_PREPARE_TIME
00039  * will cause the calling thread to sleep */
00040 #define AOUT_MAX_PREPARE_TIME           (2 * CLOCK_FREQ)
00041 
00042 /* Buffers which arrive after pts - AOUT_MIN_PREPARE_TIME will be trashed
00043  * to avoid too heavy resampling */
00044 #define AOUT_MIN_PREPARE_TIME           AOUT_MAX_PTS_ADVANCE
00045 
00046 /* Tolerance values from EBU Recommendation 37 */
00047 /** Maximum advance of actual audio playback time to coded PTS,
00048  * above which downsampling will be performed */
00049 #define AOUT_MAX_PTS_ADVANCE            (CLOCK_FREQ / 25)
00050 
00051 /** Maximum delay of actual audio playback time from coded PTS,
00052  * above which upsampling will be performed */
00053 #define AOUT_MAX_PTS_DELAY              (3 * CLOCK_FREQ / 50)
00054 
00055 /* Max acceptable resampling (in %) */
00056 #define AOUT_MAX_RESAMPLING             10
00057 
00058 #include "vlc_es.h"
00059 
00060 #define AOUT_FMTS_IDENTICAL( p_first, p_second ) (                          \
00061     ((p_first)->i_format == (p_second)->i_format)                           \
00062       && AOUT_FMTS_SIMILAR(p_first, p_second) )
00063 
00064 /* Check if i_rate == i_rate and i_channels == i_channels */
00065 #define AOUT_FMTS_SIMILAR( p_first, p_second ) (                            \
00066     ((p_first)->i_rate == (p_second)->i_rate)                               \
00067       && ((p_first)->i_physical_channels == (p_second)->i_physical_channels)\
00068       && ((p_first)->i_original_channels == (p_second)->i_original_channels) )
00069 
00070 #define AOUT_FMT_LINEAR( p_format ) \
00071     (aout_BitsPerSample((p_format)->i_format) != 0)
00072 
00073 #define VLC_CODEC_SPDIFL VLC_FOURCC('s','p','d','i')
00074 #define VLC_CODEC_SPDIFB VLC_FOURCC('s','p','d','b')
00075 
00076 #define AOUT_FMT_SPDIF( p_format ) \
00077     ( ((p_format)->i_format == VLC_CODEC_SPDIFL)       \
00078        || ((p_format)->i_format == VLC_CODEC_SPDIFB)   \
00079        || ((p_format)->i_format == VLC_CODEC_A52)       \
00080        || ((p_format)->i_format == VLC_CODEC_DTS) )
00081 
00082 /* This is heavily borrowed from libmad, by Robert Leslie <rob@mars.org> */
00083 /*
00084  * Fixed-point format: 0xABBBBBBB
00085  * A == whole part      (sign + 3 bits)
00086  * B == fractional part (28 bits)
00087  *
00088  * Values are signed two's complement, so the effective range is:
00089  * 0x80000000 to 0x7fffffff
00090  *       -8.0 to +7.9999999962747097015380859375
00091  *
00092  * The smallest representable value is:
00093  * 0x00000001 == 0.0000000037252902984619140625 (i.e. about 3.725e-9)
00094  *
00095  * 28 bits of fractional accuracy represent about
00096  * 8.6 digits of decimal accuracy.
00097  *
00098  * Fixed-point numbers can be added or subtracted as normal
00099  * integers, but multiplication requires shifting the 64-bit result
00100  * from 56 fractional bits back to 28 (and rounding.)
00101  */
00102 typedef int32_t vlc_fixed_t;
00103 #define FIXED32_FRACBITS 28
00104 #define FIXED32_MIN ((vlc_fixed_t) -0x80000000L)
00105 #define FIXED32_MAX ((vlc_fixed_t) +0x7fffffffL)
00106 #define FIXED32_ONE ((vlc_fixed_t) 0x10000000)
00107 
00108 /* Values used for the audio-device and audio-channels object variables */
00109 #define AOUT_VAR_MONO               1
00110 #define AOUT_VAR_STEREO             2
00111 #define AOUT_VAR_2F2R               4
00112 #define AOUT_VAR_3F2R               5
00113 #define AOUT_VAR_5_1                6
00114 #define AOUT_VAR_6_1                7
00115 #define AOUT_VAR_7_1                8
00116 #define AOUT_VAR_SPDIF              10
00117 
00118 #define AOUT_VAR_CHAN_STEREO        1
00119 #define AOUT_VAR_CHAN_RSTEREO       2
00120 #define AOUT_VAR_CHAN_LEFT          3
00121 #define AOUT_VAR_CHAN_RIGHT         4
00122 #define AOUT_VAR_CHAN_DOLBYS        5
00123 
00124 /*****************************************************************************
00125  * Main audio output structures
00126  *****************************************************************************/
00127 
00128 #define aout_BufferFree( buffer ) block_Release( buffer )
00129 
00130 /* Size of a frame for S/PDIF output. */
00131 #define AOUT_SPDIF_SIZE 6144
00132 
00133 /* Number of samples in an A/52 frame. */
00134 #define A52_FRAME_NB 1536
00135 
00136 /* FIXME to remove once aout.h is cleaned a bit more */
00137 #include <vlc_block.h>
00138 
00139 typedef int (*aout_volume_cb) (audio_output_t *, float, bool);
00140 
00141 /** Audio output object */
00142 struct audio_output
00143 {
00144     VLC_COMMON_MEMBERS
00145 
00146     audio_sample_format_t format; /**< Output format (plugin can modify it
00147         only when succesfully probed and not afterward) */
00148 
00149     struct aout_sys_t *sys; /**< Output plugin private data */
00150     void (*pf_play)(audio_output_t *, block_t *); /**< Audio buffer callback */
00151     void (* pf_pause)( audio_output_t *, bool, mtime_t ); /**< Pause/resume
00152         callback (optional, may be NULL) */
00153     void (* pf_flush)( audio_output_t *, bool ); /**< Flush/drain callback
00154         (optional, may be NULL) */
00155     aout_volume_cb          pf_volume_set; /**< Volume setter (or NULL) */
00156 };
00157 
00158 /**
00159  * It describes the audio channel order VLC expect.
00160  */
00161 static const uint32_t pi_vlc_chan_order_wg4[] =
00162 {
00163     AOUT_CHAN_LEFT, AOUT_CHAN_RIGHT,
00164     AOUT_CHAN_MIDDLELEFT, AOUT_CHAN_MIDDLERIGHT,
00165     AOUT_CHAN_REARLEFT, AOUT_CHAN_REARRIGHT, AOUT_CHAN_REARCENTER,
00166     AOUT_CHAN_CENTER, AOUT_CHAN_LFE, 0
00167 };
00168 
00169 /*****************************************************************************
00170  * Prototypes
00171  *****************************************************************************/
00172 
00173 /**
00174  * This function computes the reordering needed to go from pi_chan_order_in to
00175  * pi_chan_order_out.
00176  * If pi_chan_order_in or pi_chan_order_out is NULL, it will assume that vlc
00177  * internal (WG4) order is requested.
00178  */
00179 VLC_API int aout_CheckChannelReorder( const uint32_t *pi_chan_order_in, const uint32_t *pi_chan_order_out, uint32_t i_channel_mask, int i_channels, int *pi_chan_table );
00180 VLC_API void aout_ChannelReorder( uint8_t *, int, int, const int *, int );
00181 
00182 /**
00183  * This fonction will compute the extraction parameter into pi_selection to go
00184  * from i_channels with their type given by pi_order_src[] into the order
00185  * describe by pi_order_dst.
00186  * It will also set :
00187  * - *pi_channels as the number of channels that will be extracted which is
00188  * lower (in case of non understood channels type) or equal to i_channels.
00189  * - the layout of the channels (*pi_layout).
00190  *
00191  * It will return true if channel extraction is really needed, in which case
00192  * aout_ChannelExtract must be used
00193  *
00194  * XXX It must be used when the source may have channel type not understood
00195  * by VLC. In this case the channel type pi_order_src[] must be set to 0.
00196  * XXX It must also be used if multiple channels have the same type.
00197  */
00198 VLC_API bool aout_CheckChannelExtraction( int *pi_selection, uint32_t *pi_layout, int *pi_channels, const uint32_t pi_order_dst[AOUT_CHAN_MAX], const uint32_t *pi_order_src, int i_channels );
00199 
00200 /**
00201  * Do the actual channels extraction using the parameters created by
00202  * aout_CheckChannelExtraction.
00203  *
00204  * XXX this function does not work in place (p_dst and p_src must not overlap).
00205  * XXX Only 8, 16, 24, 32, 64 bits per sample are supported.
00206  */
00207 VLC_API void aout_ChannelExtract( void *p_dst, int i_dst_channels, const void *p_src, int i_src_channels, int i_sample_count, const int *pi_selection, int i_bits_per_sample );
00208 
00209 /* */
00210 static inline unsigned aout_FormatNbChannels(const audio_sample_format_t *fmt)
00211 {
00212     return popcount(fmt->i_physical_channels);
00213 }
00214 
00215 VLC_API unsigned int aout_BitsPerSample( vlc_fourcc_t i_format ) VLC_USED;
00216 VLC_API void aout_FormatPrepare( audio_sample_format_t * p_format );
00217 VLC_API void aout_FormatPrint(vlc_object_t *, const char *,
00218                               const audio_sample_format_t *);
00219 #define aout_FormatPrint(o, t, f) aout_FormatPrint(VLC_OBJECT(o), t, f)
00220 VLC_API const char * aout_FormatPrintChannels( const audio_sample_format_t * ) VLC_USED;
00221 
00222 VLC_API void aout_VolumeNoneInit( audio_output_t * );
00223 VLC_API void aout_VolumeSoftInit( audio_output_t * );
00224 VLC_API void aout_VolumeHardInit( audio_output_t *, aout_volume_cb );
00225 VLC_API void aout_VolumeHardSet( audio_output_t *, float, bool );
00226 
00227 VLC_API void aout_TimeReport(audio_output_t *, mtime_t);
00228 
00229 VLC_API int aout_ChannelsRestart( vlc_object_t *, const char *, vlc_value_t, vlc_value_t, void * );
00230 
00231 /* */
00232 VLC_API vout_thread_t * aout_filter_RequestVout( filter_t *, vout_thread_t *p_vout, video_format_t *p_fmt ) VLC_USED;
00233 
00234 /** Audio output buffer FIFO */
00235 struct aout_fifo_t
00236 {
00237     aout_buffer_t *         p_first;
00238     aout_buffer_t **        pp_last;
00239     date_t                  end_date;
00240 };
00241 
00242 /* Legacy packet-oriented audio output helpers */
00243 typedef struct
00244 {
00245     vlc_mutex_t lock;
00246     aout_fifo_t partial; /**< Audio blocks before packetization */
00247     aout_fifo_t fifo; /**< Packetized audio blocks */
00248     mtime_t pause_date; /**< Date when paused or VLC_TS_INVALID */
00249     mtime_t time_report; /**< Desynchronization estimate or VLC_TS_INVALID */
00250     unsigned samples; /**< Samples per packet */
00251     bool starving; /**< Whether currently starving (to limit error messages) */
00252 } aout_packet_t;
00253 
00254 VLC_DEPRECATED void aout_PacketInit(audio_output_t *, aout_packet_t *, unsigned);
00255 VLC_DEPRECATED void aout_PacketDestroy(audio_output_t *);
00256 
00257 VLC_DEPRECATED void aout_PacketPlay(audio_output_t *, block_t *);
00258 VLC_DEPRECATED void aout_PacketPause(audio_output_t *, bool, mtime_t);
00259 VLC_DEPRECATED void aout_PacketFlush(audio_output_t *, bool);
00260 
00261 VLC_DEPRECATED block_t *aout_PacketNext(audio_output_t *, mtime_t) VLC_USED;
00262 
00263 
00264 #endif /* VLC_AOUT_H */
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines