From: Soft Works <softworkz@hotmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Cc: Hendrik Leppkes <h.leppkes@gmail.com> Subject: Re: [FFmpeg-devel] [PATCH v5 2/2] avformat/os_support: Support long file names on Windows Date: Tue, 24 May 2022 13:41:44 +0000 Message-ID: <DM8P223MB0365D8034B324BB3E88D3B88BAD79@DM8P223MB0365.NAMP223.PROD.OUTLOOK.COM> (raw) In-Reply-To: <82336d75-db8e-53b2-79a8-78bae51d5ee0@martin.st> > -----Original Message----- > From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of Martin > Storsjö > Sent: Tuesday, May 24, 2022 2:44 PM > To: Soft Works <softworkz@hotmail.com> > Cc: Hendrik Leppkes <h.leppkes@gmail.com>; FFmpeg development discussions > and patches <ffmpeg-devel@ffmpeg.org> > Subject: Re: [FFmpeg-devel] [PATCH v5 2/2] avformat/os_support: Support > long file names on Windows > > On Tue, 24 May 2022, Soft Works wrote: > > >> -----Original Message----- > >> From: Martin Storsjö <martin@martin.st> > >> Sent: Tuesday, May 24, 2022 1:26 PM > >> To: Soft Works <softworkz@hotmail.com> > >> Cc: FFmpeg development discussions and patches <ffmpeg- > devel@ffmpeg.org>; > >> Hendrik Leppkes <h.leppkes@gmail.com> > >> Subject: RE: [FFmpeg-devel] [PATCH v5 2/2] avformat/os_support: Support > >> long file names on Windows > >> > >> On Tue, 24 May 2022, Soft Works wrote: > >> > >>>> but Clang doesn't. (It's possible to use it > >>>> in Clang too if you enable it with -fms-extensions though.) > >>> > >>> Is it possible to compile ffmpeg for Windows using Clang? > >>> And if yes, does it even work without that flag? > >>> (assuming it was introduced in order to be able to > >>> compile Windows stuff). > >> > >> Yes, it is possible to build it with Clang without any custom extra > flags > >> to enable nondefault modes. In fact, it's tested continuously on FATE > too: > >> > >> http://fate.ffmpeg.org/history.cgi?slot=x86_64-mingw32-clang-trunk > >> > >> Also for other architectures, e.g.: > >> > >> http://fate.ffmpeg.org/history.cgi?slot=aarch64-mingw32-clang-trunk > > > > > > OK, thanks for the pointers. I'm not sure whether it would be > > acceptable to require this compilation flag for Windows builds? > > I would very much prefer not to require adding -fms-extensions when > building with Clang - that option unlocks a lot of stuff that we generally > shouldn't be enabling. OK, sure, it always smells when doing something like that just to achieve a single thing. > > > Can you think of any other ideas? > > Right now, mainly doing a #define ff_stat_struct which would require > updating the calling code. It's not ideal but worse things have been done > anyway (there's not that many stat calls). > > I was exploring the idea of just redefining the struct, but e.g. "typedef > struct _stati64 win32_stat", but that only works when referring to the > type as "win32_stat", not "struct win32_stat". So that doesn't seem like a > good path forward either. > > I'd prefer to slow down and think more about other alternatives here, > rather than rushing forward with adding -fms-extensions. I have a new idea, see below > Also note that currently, we don't even have a proper automatic redirect > from stat to win32_stat, see the ifdef in libavformat/file.c. Yes, that can be dropped (once we got it)... What do you think of the following: We could define our own win32_stat struct, but not in a way that matches the Windows API, just matching the POSIX definition (like the consuming code expects), e.g.: struct win_32stat { dev_t st_dev; /* ID of device containing file */ ino_t st_ino; /* inode number */ unsigned short st_mode; /* protection */ short st_nlink; /* number of hard links */ short st_uid; /* user ID of owner */ short st_gid; /* group ID of owner */ dev_t st_rdev; /* device ID (if special file) */ off_t st_size; /* total size, in bytes */ time_t st_atime; /* time of last access */ time_t st_mtime; /* time of last modification */ time_t st_ctime; /* time of last status change */ }; And then, in our win32_stat() function, we call the win api with the "right" struct and simply copy over the values..: static int win32_stat(const char *filename_utf8, struct stat *par) { wchar_t *filename_w; int ret; struct _stati64 winstat; if (get_extended_win32_path(filename_utf8, &filename_w)) return -1; if (filename_w) { ret = _wstat64(filename_w, &winstat); av_free(filename_w); } else ret = _stat64(filename_utf8, &winstat); par->st_dev = winstat.st_dev; par->st_ino = winstat.st_ino; par->st_mode = winstat.st_mode; par->st_nlink = winstat.st_nlink; par->st_uid = winstat.st_uid; par->st_gid = winstat.st_gid; par->st_rdev = winstat.st_rdev; par->st_size = winstat.st_size; par->st_atime = winstat.st_atime; par->st_mtime = winstat.st_mtime; par->st_ctime = winstat.st_ctime; return ret; } This would be safe and without any weirdness (just a bit more code). What do you think about it? Thanks, sw _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2022-05-24 13:41 UTC|newest] Thread overview: 83+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-05-13 9:53 [FFmpeg-devel] [PATCH 0/2] " ffmpegagent 2022-05-13 9:53 ` [FFmpeg-devel] [PATCH 1/2] avutil/wchar_filename, file_open: " softworkz 2022-05-15 19:02 ` nil-admirari 2022-05-15 20:24 ` Soft Works 2022-05-16 8:34 ` nil-admirari 2022-05-13 9:53 ` [FFmpeg-devel] [PATCH 2/2] avformat/os_support: " softworkz 2022-05-15 19:13 ` nil-admirari 2022-05-15 22:14 ` Soft Works 2022-05-16 8:19 ` nil-admirari 2022-05-13 10:02 ` [FFmpeg-devel] [PATCH 0/2] " Soft Works 2022-05-15 19:36 ` nil-admirari 2022-05-15 20:31 ` Soft Works 2022-05-16 8:45 ` nil-admirari 2022-05-17 0:37 ` Soft Works 2022-05-15 22:17 ` [FFmpeg-devel] [PATCH v2 " ffmpegagent 2022-05-15 22:17 ` [FFmpeg-devel] [PATCH v2 1/2] avutil/wchar_filename, file_open: " softworkz 2022-05-16 8:12 ` nil-admirari 2022-05-16 21:14 ` Soft Works 2022-05-17 15:06 ` nil-admirari 2022-05-17 15:28 ` Soft Works 2022-05-17 15:43 ` Soft Works 2022-05-20 17:51 ` nil-admirari 2022-05-20 18:03 ` Soft Works 2022-05-21 11:08 ` nil-admirari 2022-05-21 11:12 ` Soft Works 2022-05-23 15:35 ` nil-admirari 2022-05-23 15:47 ` Soft Works 2022-05-23 17:12 ` Hendrik Leppkes 2022-05-24 5:32 ` Soft Works 2022-05-24 5:54 ` Soft Works 2022-05-24 9:47 ` Soft Works 2022-05-24 12:11 ` nil-admirari 2022-05-15 22:17 ` [FFmpeg-devel] [PATCH v2 2/2] avformat/os_support: " softworkz 2022-05-16 21:23 ` [FFmpeg-devel] [PATCH v3 0/2] " ffmpegagent 2022-05-16 21:23 ` [FFmpeg-devel] [PATCH v3 1/2] avutil/wchar_filename, file_open: " softworkz 2022-05-16 21:23 ` [FFmpeg-devel] [PATCH v3 2/2] avformat/os_support: " softworkz 2022-05-23 11:29 ` [FFmpeg-devel] [PATCH v4 0/2] " ffmpegagent 2022-05-23 11:29 ` [FFmpeg-devel] [PATCH v4 1/2] avutil/wchar_filename, file_open: " softworkz 2022-05-23 11:29 ` [FFmpeg-devel] [PATCH v4 2/2] avformat/os_support: " softworkz 2022-05-24 8:43 ` [FFmpeg-devel] [PATCH v5 0/2] " ffmpegagent 2022-05-24 8:43 ` [FFmpeg-devel] [PATCH v5 1/2] avutil/wchar_filename, file_open: " softworkz 2022-05-24 9:09 ` Martin Storsjö 2022-05-24 8:43 ` [FFmpeg-devel] [PATCH v5 2/2] avformat/os_support: " softworkz 2022-05-24 9:23 ` Martin Storsjö 2022-05-24 9:33 ` Soft Works 2022-05-24 10:25 ` Martin Storsjö 2022-05-24 11:15 ` Soft Works 2022-05-24 11:26 ` Martin Storsjö 2022-05-24 12:31 ` Soft Works 2022-05-24 12:44 ` Martin Storsjö 2022-05-24 13:41 ` Soft Works [this message] 2022-05-24 13:58 ` [FFmpeg-devel] [PATCH v6 0/2] " ffmpegagent 2022-05-24 13:58 ` [FFmpeg-devel] [PATCH v6 1/2] avutil/wchar_filename, file_open: " softworkz 2022-05-24 20:55 ` Martin Storsjö 2022-05-24 13:58 ` [FFmpeg-devel] [PATCH v6 2/2] avformat/os_support: " softworkz 2022-05-24 20:58 ` Martin Storsjö 2022-05-24 22:12 ` Soft Works 2022-05-25 7:09 ` Martin Storsjö 2022-05-24 22:20 ` [FFmpeg-devel] [PATCH v7 0/3] " ffmpegagent 2022-05-24 22:20 ` [FFmpeg-devel] [PATCH v7 1/3] avutil/wchar_filename, file_open: " softworkz 2022-05-24 22:20 ` [FFmpeg-devel] [PATCH v7 2/3] avformat/os_support: " softworkz 2022-05-25 14:47 ` nil-admirari 2022-05-25 15:28 ` Soft Works 2022-05-25 19:17 ` nil-admirari 2022-05-26 5:09 ` Soft Works 2022-05-25 18:50 ` Martin Storsjö 2022-05-24 22:20 ` [FFmpeg-devel] [PATCH v7 3/3] avformat/file: remove _WIN32 condition softworkz 2022-05-25 7:34 ` [FFmpeg-devel] [PATCH v7 0/3] Support long file names on Windows Martin Storsjö 2022-05-26 9:28 ` [FFmpeg-devel] [PATCH v8 " ffmpegagent 2022-05-26 9:28 ` [FFmpeg-devel] [PATCH v8 1/3] avutil/wchar_filename, file_open: " softworkz 2022-05-26 9:28 ` [FFmpeg-devel] [PATCH v8 2/3] avformat/os_support: " softworkz 2022-05-26 9:28 ` [FFmpeg-devel] [PATCH v8 3/3] avformat/file: remove _WIN32 condition softworkz 2022-05-26 21:26 ` [FFmpeg-devel] [PATCH v8 0/3] Support long file names on Windows Martin Storsjö 2022-06-09 10:03 ` Martin Storsjö 2022-06-09 19:37 ` nil-admirari 2022-06-09 20:15 ` Soft Works 2022-06-09 20:22 ` nil-admirari 2022-06-09 21:32 ` Soft Works 2022-06-09 20:21 ` Martin Storsjö 2022-06-09 20:57 ` nil-admirari 2022-06-09 21:02 ` Martin Storsjö 2022-06-13 16:42 ` nil-admirari 2022-06-09 21:03 ` Soft Works
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=DM8P223MB0365D8034B324BB3E88D3B88BAD79@DM8P223MB0365.NAMP223.PROD.OUTLOOK.COM \ --to=softworkz@hotmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ --cc=h.leppkes@gmail.com \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git