[MPlayer-cvslog] r27123 - in trunk: help/help_mp-en.h libao2/audio_out.c
corey
subversion at mplayerhq.hu
Sun Jun 22 21:25:55 CEST 2008
Author: corey
Date: Sun Jun 22 21:25:54 2008
New Revision: 27123
Log:
Add verbose messages about trying and searching for audio output drivers.
Add messages showing why a specified audio output driver failed to be used.
Based on a patch from Bryan Henderson, giraffedata [[]] gmail :: com
Modified:
trunk/libao2/audio_out.c
Changes in other areas also in this revision:
Modified:
trunk/help/help_mp-en.h
Modified: trunk/libao2/audio_out.c
==============================================================================
--- trunk/libao2/audio_out.c (original)
+++ trunk/libao2/audio_out.c Sun Jun 22 21:25:54 2008
@@ -134,14 +134,23 @@ const ao_functions_t* init_best_audio_ou
}
else
ao_len = strlen(ao);
+
+ mp_msg(MSGT_AO, MSGL_V, MSGTR_AO_TryingPreferredAudioDriver,
+ ao_len, ao, ao_subdevice ? ao_subdevice : "[none]");
+
for(i=0;audio_out_drivers[i];i++){
const ao_functions_t* audio_out=audio_out_drivers[i];
if(!strncmp(audio_out->info->short_name,ao,ao_len)){
// name matches, try it
if(audio_out->init(rate,channels,format,flags))
return audio_out; // success!
+ else
+ mp_msg(MSGT_AO, MSGL_WARN, MSGTR_AO_FailedInit, ao);
+ break;
}
}
+ if (!audio_out_drivers[i]) // we searched through the entire list
+ mp_msg(MSGT_AO, MSGL_WARN, MSGTR_AO_NoSuchDriver, ao_len, ao);
// continue...
++ao_list;
if(!(ao_list[0])) return NULL; // do NOT fallback to others
@@ -150,6 +159,9 @@ const ao_functions_t* init_best_audio_ou
free(ao_subdevice);
ao_subdevice = NULL;
}
+
+ mp_msg(MSGT_AO, MSGL_V, MSGTR_AO_TryingEveryKnown);
+
// now try the rest...
for(i=0;audio_out_drivers[i];i++){
const ao_functions_t* audio_out=audio_out_drivers[i];
More information about the MPlayer-cvslog
mailing list