summaryrefslogtreecommitdiffstats
path: root/mplayer.c
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-28 10:08:30 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-05-28 10:08:30 +0000
commit2eee0cefb01b149c86d2ca58df69c3f29c3af971 (patch)
tree65fd53748af0f34dab74bdaa35f109245f6cc27b /mplayer.c
parent6eef61184000dc9e63dd1a7ad6414aa5373ceb74 (diff)
downloadmpv-2eee0cefb01b149c86d2ca58df69c3f29c3af971.tar.bz2
mpv-2eee0cefb01b149c86d2ca58df69c3f29c3af971.tar.xz
Fix audio/video driver name parsing and remove 2 little memleaks
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6218 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mplayer.c')
-rw-r--r--mplayer.c31
1 files changed, 24 insertions, 7 deletions
diff --git a/mplayer.c b/mplayer.c
index 94e19d5600..3caa3901fa 100644
--- a/mplayer.c
+++ b/mplayer.c
@@ -883,6 +883,12 @@ if(!use_stdin && !slave_mode){
//==================== Init Video Out ============================
// check video_out driver name:
+{
+ char* vo = video_driver ? strdup(video_driver) : NULL;
+ if(vo_subdevice) {
+ free(vo_subdevice);
+ vo_subdevice = NULL;
+ }
if (video_driver)
if ((i = strcspn(video_driver, ":")) > 0)
{
@@ -893,7 +899,7 @@ if(!use_stdin && !slave_mode){
vo_subdevice = malloc(i2-i);
if (vo_subdevice != NULL)
strncpy(vo_subdevice, (char *)(video_driver+i+1), i2-i);
- video_driver[i] = '\0';
+ vo[i] = '\0';
}
// printf("video_driver: %s, subdevice: %s\n", video_driver, vo_subdevice);
}
@@ -902,19 +908,28 @@ if(!use_stdin && !slave_mode){
else
for (i=0; video_out_drivers[i] != NULL; i++){
const vo_info_t *info = video_out_drivers[i]->get_info ();
- if(strcmp(info->short_name,video_driver) == 0){
+ if(strcmp(info->short_name,vo) == 0){
video_out = video_out_drivers[i];break;
}
}
if(!video_out){
- mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_InvalidVOdriver,video_driver?video_driver:"?");
+ mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_InvalidVOdriver,vo?vo:"?");
exit_player(MSGTR_Exit_error);
}
+ if(vo)
+ free(vo);
+}
//==================== Init Audio Out ============================
// check audio_out driver name:
+{
+ char* ao = audio_driver ? strdup(audio_driver) : NULL;
+ if(ao_subdevice) {
+ free(ao_subdevice);
+ ao_subdevice = NULL;
+ }
if (audio_driver)
if ((i = strcspn(audio_driver, ":")) > 0)
{
@@ -925,7 +940,7 @@ if(!use_stdin && !slave_mode){
ao_subdevice = malloc(i2-i);
if (ao_subdevice != NULL)
strncpy(ao_subdevice, (char *)(audio_driver+i+1), i2-i);
- audio_driver[i] = '\0';
+ ao[i] = '\0';
}
// printf("audio_driver: %s, subdevice: %s\n", audio_driver, ao_subdevice);
}
@@ -934,14 +949,16 @@ if(!use_stdin && !slave_mode){
else
for (i=0; audio_out_drivers[i] != NULL; i++){
const ao_info_t *info = audio_out_drivers[i]->info;
- if(strcmp(info->short_name,audio_driver) == 0){
+ if(strcmp(info->short_name,ao) == 0){
audio_out = audio_out_drivers[i];break;
}
}
if (!audio_out){
- mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_InvalidAOdriver,audio_driver);
+ mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_InvalidAOdriver,ao?ao:"?");
exit_player(MSGTR_Exit_error);
}
+ if(ao)
+ free(ao);
/* Initailize audio plugin interface if used */
if(ao_plugin_cfg.plugin_list){
for (i=0; audio_out_drivers[i] != NULL; i++){
@@ -953,7 +970,7 @@ if(!use_stdin && !slave_mode){
}
}
}
-
+}
//============ Open & Sync STREAM --- fork cache2 ====================
stream=NULL;