~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to libao2/audio_out.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
extern const ao_functions_t audio_out_jack;
40
40
extern const ao_functions_t audio_out_openal;
41
41
extern const ao_functions_t audio_out_null;
42
 
extern const ao_functions_t audio_out_alsa5;
43
42
extern const ao_functions_t audio_out_alsa;
44
43
extern const ao_functions_t audio_out_nas;
45
44
extern const ao_functions_t audio_out_sdl;
80
79
#ifdef CONFIG_ALSA
81
80
        &audio_out_alsa,
82
81
#endif
83
 
#ifdef CONFIG_ALSA5
84
 
        &audio_out_alsa5,
85
 
#endif
86
82
#ifdef CONFIG_SGI_AUDIO
87
83
        &audio_out_sgi,
88
84
#endif
159
155
        else
160
156
            ao_len = strlen(ao);
161
157
 
162
 
        mp_msg(MSGT_AO, MSGL_V, MSGTR_AO_TryingPreferredAudioDriver,
 
158
        mp_msg(MSGT_AO, MSGL_V, "Trying preferred audio driver '%.*s', options '%s'\n",
163
159
               ao_len, ao, ao_subdevice ? ao_subdevice : "[none]");
164
160
 
165
161
        for(i=0;audio_out_drivers[i];i++){
182
178
    free(ao_subdevice);
183
179
    ao_subdevice = NULL;
184
180
 
185
 
    mp_msg(MSGT_AO, MSGL_V, MSGTR_AO_TryingEveryKnown);
 
181
    mp_msg(MSGT_AO, MSGL_V, "Trying every known audio driver...\n");
186
182
 
187
183
    // now try the rest...
188
184
    for(i=0;audio_out_drivers[i];i++){