Mercurial > mplayer.hg
annotate get_path.c @ 8365:423a19edc0a4
This patch makes it possible to navigate among the subtitles while
playing movies. It can be very useful when using desynched subtitles.
A new command 'sub_step' is added, which takes an integer argument.
'sub_step +1' will immediately display the next subtitle, adjusting
sub_delay as if one had used the 'sub_delay' command to navigate to
the subtitle. 'sub_step -1' displays the previous subtitle and
adjusts the sub_delay. By using these two commands you can navigate
among the subtitles without having to search blindly using 'sub_delay'.
patch by Oskar Liljeblad (oskar@osk.mine.nu)
author | arpi |
---|---|
date | Thu, 05 Dec 2002 00:15:56 +0000 |
parents | d21bae2028a6 |
children | ad429d617df4 |
rev | line source |
---|---|
2557 | 1 |
2 char *get_path(char *filename){ | |
3 char *homedir; | |
4 char *buff; | |
5 static char *config_dir = "/.mplayer"; | |
6 int len; | |
7 | |
8 if ((homedir = getenv("HOME")) == NULL) | |
9 return NULL; | |
10 len = strlen(homedir) + strlen(config_dir) + 1; | |
11 if (filename == NULL) { | |
12 if ((buff = (char *) malloc(len)) == NULL) | |
13 return NULL; | |
14 sprintf(buff, "%s%s", homedir, config_dir); | |
15 } else { | |
16 len += strlen(filename) + 1; | |
17 if ((buff = (char *) malloc(len)) == NULL) | |
18 return NULL; | |
19 sprintf(buff, "%s%s/%s", homedir, config_dir, filename); | |
20 } | |
3746 | 21 mp_msg(MSGT_GLOBAL,MSGL_V,"get_path('%s') -> '%s'\n",filename,buff); |
2557 | 22 return buff; |
23 } |