X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Ffile.C;h=2a1330059cd468069f5e248f6343846445776e8f;hb=02c179665199bb8bd1b057f83c26c070ce618901;hp=0406e174f4f24bb58f81c593b2856e412e22a48d;hpb=086c7ab39d47770c4e37615e02e361fe012e1655;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/cinelerra/file.C b/cinelerra-5.1/cinelerra/file.C index 0406e174..2a133005 100644 --- a/cinelerra-5.1/cinelerra/file.C +++ b/cinelerra-5.1/cinelerra/file.C @@ -390,7 +390,9 @@ const char *File::default_probes[] = { #ifdef HAVE_GIFLIB "GIF", #endif +#ifdef HAVE_LIBDPX "DPX", +#endif #ifdef HAVE_OPENEXR "EXR", #endif @@ -402,7 +404,9 @@ const char *File::default_probes[] = { "OGG", "Vorbis", #endif +#ifdef HAVE_LIBZMPEG "MPEG", +#endif "EDL", "FFMPEG_Late", }; @@ -1662,7 +1666,14 @@ int File::record_fd() void File::get_exe_path(char *result, char *bnp) { // Get executable path, basename +#if !defined(__FreeBSD__) int len = readlink("/proc/self/exe", result, BCTEXTLEN-1); +#else + char exe_path[BCTEXTLEN]; + sprintf(exe_path,"/proc/%d/file",getpid()); + int len = readlink(exe_path, result, BCTEXTLEN-1); +#endif + if( len >= 0 ) { result[len] = 0; char *ptr = strrchr(result, '/');