HomeSort by relevance Sort by last modified time
    Searched full:mixer (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
mixer.h 2 * \file include/mixer.h
36 * \defgroup Mixer Mixer Interface
37 * The mixer interface.
41 /** Mixer handle */
43 /** Mixer elements class handle */
45 /** Mixer element handle */
49 * \brief Mixer callback function
50 * \param mixer Mixer handl
    [all...]
mixer_abst.h 3 * \brief Mixer abstract implementation interface library for the ALSA library
7 * Mixer abstact implementation interface library for the ALSA library
34 * \defgroup Mixer_Abstract Mixer Abstact Module Interface
35 * The mixer abstact module interface.
  /device/samsung/crespo/libaudio/
alsa_mixer.c 38 case SNDRV_CTL_ELEM_IFACE_MIXER: return "MIXER";
63 struct mixer *mixer; member in struct:mixer_ctl
68 struct mixer { struct
75 void mixer_close(struct mixer *mixer)
79 if (mixer->fd >= 0)
80 close(mixer->fd);
82 if (mixer->ctl) {
83 for (n = 0; n < mixer->count; n++)
105 struct mixer *mixer = NULL; local
    [all...]
alsa_audio.h 62 struct mixer;
65 struct mixer *mixer_open(void);
66 void mixer_close(struct mixer *mixer);
67 void mixer_dump(struct mixer *mixer);
69 struct mixer_ctl *mixer_get_control(struct mixer *mixer,
71 struct mixer_ctl *mixer_get_nth_control(struct mixer *mixer, unsigned n)
    [all...]
amix.c 26 struct mixer_ctl *get_ctl(struct mixer *mixer, char *name)
32 return mixer_get_nth_control(mixer, atoi(name) - 1);
40 return mixer_get_control(mixer, name, idx);
45 struct mixer *mixer; local
49 mixer = mixer_open();
50 if (!mixer)
54 mixer_dump(mixer);
58 ctl = get_ctl(mixer, argv[1])
    [all...]
aplay.c 52 struct mixer *mixer; local
69 mixer = mixer_open();
70 if (mixer)
71 ctl = mixer_get_control(mixer,"Playback Path", 0);
AudioHardware.h 33 struct mixer;
132 struct mixer *openMixer_l();
155 struct mixer* mMixer;
233 struct mixer *mMixer;
347 struct mixer *mMixer;
  /frameworks/base/media/libeffects/lvm/lib/StereoWidening/src/
LVCS_BypassMix.h 41 /* Bypass mixer structure */
44 /* Mixer settings */
45 LVMixer3_2St_st Mixer_Instance; /* Mixer instance */
LVCS_Private.h 45 #include "LVCS_BypassMix.h" /* Bypass Mixer module definitions */
59 #define LVCS_BYPASSMIXSWITCH 0x0008 /* Bypass mixer enable control */
67 #define LVCS_BYPASS_MIXER_TC 100 /* Bypass mixer time */
122 LVCS_BypassMix_t BypassMix; /* Bypass mixer configuration */
125 LVM_INT16 MSTarget0; /* Mixer state control variable for smooth transtion */
126 LVM_INT16 MSTarget1; /* Mixer state control variable for smooth transtion */
LVCS_BypassMix.c 44 /* Initialises the bypass mixer module */
54 /* linear scaler, loss. The loss ensures the sum in the mixer does not saturate */
103 * Setup the mixer gain for the processed path
115 * Setup the mixer gain for the unprocessed path
191 /* When the bypass mixer is enabled the output is the processed signal only and */
219 * Check if the bypass mixer is enabled
  /frameworks/base/media/libeffects/lvm/lib/Bass/src/
LVDBE_Private.h 69 #define LVDBE_MIXER_TC 5 /* Mixer time */
70 #define LVDBE_BYPASS_MIXER_TC 100 /* Bypass mixer time */
89 LVMixer3_2St_st BypassMixer; /* Bypass Mixer for Click Removal */
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
Mixer_private.h 25 #include "Mixer.h"
LVC_Mixer.h 73 /* This time constant calculation function assumes the mixer will be called with */
75 /* then the calculation will give an incorrect value for alpha, see the mixer */
LVM_Mixer_FilterCoeffs.h 20 /* Mixer library tables */
22 /* Coefficients and table values for the mixer library, generated by the Matlab */
  /frameworks/base/media/libeffects/lvm/lib/Reverb/src/
LVREV_Private.h 36 #include "Mixer.h"
72 #define LVREV_BYPASSMIXER_TC 1000 /* Bypass mixer time constant*/
75 #define LVREV_FEEDBACKMIXER_TC 100 /* Feedback mixer time constant*/
142 Mix_1St_Cll_t FeedbackMixer[4]; /* Mixer for Pop and Click Supression caused by feedback Gain */
153 Mix_2St_Cll_t Mixer_APTaps[4]; /* Smoothed AP delay mixer */
158 Mix_2St_Cll_t BypassMixer; /* Dry/wet mixer */
LVREV_GetInstanceHandle.c 227 * Set mixer parameters
248 * Set the output gain mixer parameters
266 /* Delay tap selection mixer */
281 /* Feedforward mixer */
289 /* Feedback mixer */
297 /* Feedback gain mixer */
  /frameworks/base/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Private.h 52 #define LVEQNB_BYPASS_MIXER_TC 100 /* Bypass Mixer TC */
99 LVMixer3_2St_st BypassMixer; /* Bypass mixer used in transitions */
  /system/media/opensles/libopensles/
CAudioPlayer.c 83 // Request the mixer thread to unlink this audio player's track
88 // Mixer thread has acknowledged the request
COutputMix.c 74 // Tell the asynchronous mixer callback that we want to destroy the output mix
80 // Mixer callback has acknowledged our request and unlinked output mix from engine.
OutputMixExt.h 39 CAudioPlayer *mAudioPlayer; ///< Mixer examines this track if non-NULL
IOutputMixExt.c 34 /** \brief Summary of the gain, as an optimization for the mixer */
71 // application thread(s) that call BufferQueue::Clear while mixer is active
72 // will block synchronously until mixer acknowledges the Clear request
84 // an application thread that calls Object::Destroy while mixer is active will block
85 // synchronously in the PreDestroy hook until mixer acknowledges the Destroy request
167 /** \brief This is the track mixer: fill the specified 16-bit stereo PCM buffer */
289 // within the same mixer frame
294 // else we would set play state to playable but not playing during next mixer
304 // We will find out later during the next mixer frame.
  /external/qemu/distrib/sdl-1.2.12/src/audio/dart/
SDL_dart.h 59 MCI_MIXSETUP_PARMS MixSetupParms; // Mixer setup parameters
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
sound.h 8 #define SND_DEV_CTL 0 /* Control port /dev/mixer */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/esound/
libesddsp.so.0 
libesddsp.so.0.2.38 

Completed in 195 milliseconds

1 2 3 4 5 6