Mercurial > mplayer.hg
view get_path.c @ 3366:005b875788f7
rage128_vid are fully works!!!
{Also there works brightness and saturation control ;)
(Cause: there was saturation == 0 and as effect - grayscaled output).
(on Radeons brightness and saturation still don't work)}
Reversed color and video key definition for radeons - they caused problems
author | nick |
---|---|
date | Fri, 07 Dec 2001 09:56:39 +0000 |
parents | 6a74454ea121 |
children | d21bae2028a6 |
line wrap: on
line source
char *get_path(char *filename){ char *homedir; char *buff; static char *config_dir = "/.mplayer"; int len; if ((homedir = getenv("HOME")) == NULL) return NULL; len = strlen(homedir) + strlen(config_dir) + 1; if (filename == NULL) { if ((buff = (char *) malloc(len)) == NULL) return NULL; sprintf(buff, "%s%s", homedir, config_dir); } else { len += strlen(filename) + 1; if ((buff = (char *) malloc(len)) == NULL) return NULL; sprintf(buff, "%s%s/%s", homedir, config_dir, filename); } return buff; }