annotate get_path.c @ 10252:d275152390ee

I've found some time to implement the encoding support for the new DivX API. Now it's possible to play and encode movies with the latest DivX release. One thing that doesn't work is the new Video Buffer Verifier (VBV) multipass encoding. The encoder segfaults. Maybe it just isn't supported with the standard profile of the released binary encoder. Andreas Hess <jaska@gmx.net>
author arpi
date Fri, 06 Jun 2003 19:57:37 +0000
parents b8780122e043
children 133e0ebde74d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
1
6a74454ea121 some cleanup
arpi
parents:
diff changeset
2 char *get_path(char *filename){
6a74454ea121 some cleanup
arpi
parents:
diff changeset
3 char *homedir;
6a74454ea121 some cleanup
arpi
parents:
diff changeset
4 char *buff;
10026
b8780122e043 Cygwin should behave like a Unix environment, i.e. config files should be
diego
parents: 9929
diff changeset
5 #if defined(__MINGW32__)
9926
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
6 static char *config_dir = "/mplayer";
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
7 #else
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
8 static char *config_dir = "/.mplayer";
9926
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
9 #endif
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
10 int len;
6a74454ea121 some cleanup
arpi
parents:
diff changeset
11
6a74454ea121 some cleanup
arpi
parents:
diff changeset
12 if ((homedir = getenv("HOME")) == NULL)
9926
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
13 #if defined(__MINGW32__)||defined(__CYGWIN__) /*hack to get fonts etc. loaded outside of cygwin environment*/
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
14 {
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
15 int __stdcall GetModuleFileNameA(void* hModule,char* lpFilename,int nSize);
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
16 int i,imax=0;
9929
faust3
parents: 9926
diff changeset
17 char exedir[260];
faust3
parents: 9926
diff changeset
18 GetModuleFileNameA(NULL, exedir, 260);
9926
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
19 for(i=0; i< strlen(exedir);i++)if(exedir[i] =='\\'){exedir[i]='/';imax=i;}
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
20 exedir[imax]='\0';
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
21 homedir = exedir;
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
22 }
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
23 #else
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
24 return NULL;
9926
ad429d617df4 allow config file loading outside of cygwin environment
faust3
parents: 3746
diff changeset
25 #endif
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
26 len = strlen(homedir) + strlen(config_dir) + 1;
6a74454ea121 some cleanup
arpi
parents:
diff changeset
27 if (filename == NULL) {
6a74454ea121 some cleanup
arpi
parents:
diff changeset
28 if ((buff = (char *) malloc(len)) == NULL)
6a74454ea121 some cleanup
arpi
parents:
diff changeset
29 return NULL;
6a74454ea121 some cleanup
arpi
parents:
diff changeset
30 sprintf(buff, "%s%s", homedir, config_dir);
6a74454ea121 some cleanup
arpi
parents:
diff changeset
31 } else {
6a74454ea121 some cleanup
arpi
parents:
diff changeset
32 len += strlen(filename) + 1;
6a74454ea121 some cleanup
arpi
parents:
diff changeset
33 if ((buff = (char *) malloc(len)) == NULL)
6a74454ea121 some cleanup
arpi
parents:
diff changeset
34 return NULL;
6a74454ea121 some cleanup
arpi
parents:
diff changeset
35 sprintf(buff, "%s%s/%s", homedir, config_dir, filename);
6a74454ea121 some cleanup
arpi
parents:
diff changeset
36 }
3746
d21bae2028a6 some debugging
arpi
parents: 2557
diff changeset
37 mp_msg(MSGT_GLOBAL,MSGL_V,"get_path('%s') -> '%s'\n",filename,buff);
2557
6a74454ea121 some cleanup
arpi
parents:
diff changeset
38 return buff;
6a74454ea121 some cleanup
arpi
parents:
diff changeset
39 }