Skip to content
Snippets Groups Projects
  1. Aug 02, 2022
  2. Aug 01, 2022
  3. Jul 31, 2022
  4. Jul 30, 2022
  5. Jul 29, 2022
  6. Jul 28, 2022
  7. Jul 27, 2022
    • Thomas Guillem's avatar
      libvlc: add bool selected in libvlc_media_player_get_tracklist · 7949712a
      Thomas Guillem authored and Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen committed
      Asked by API users, more convenient than dropping !selected tracks
      ourself.
      7949712a
    • Thomas Guillem's avatar
      libvlc: media_player: add a param to get selected tracks · db81e6e1
      Thomas Guillem authored and Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen committed
      db81e6e1
    • Alexandre Janniaux's avatar
      vlc_fixups: fix ssize_t not being defined · 94386bab
      Alexandre Janniaux authored and Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen committed
      When compiling and not having writev/readv, the following error happens:
      
          make[2]: Entering directory '/home/janniaux/Projects/videolabs/vlc/build-tsan/compat'
            CC       strlcpy.lo
            CC       strnstr.lo
          In file included from ../config.h:952,
                           from ../../compat/strnstr.c:22:
          ../../include/vlc_fixups.h:232:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’?
            232 | ssize_t readv(int, const struct iovec *, int);
                | ^~~~~~~
                | size_t
          In file included from ../config.h:952,
                           from ../../compat/strlcpy.c:22:
          ../../include/vlc_fixups.h:232:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’?
            232 | ssize_t readv(int, const struct iovec *, int);
                | ^~~~~~~
                | size_t
          ../../include/vlc_fixups.h:237:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’?
            237 | ssize_t writev(int, const struct iovec *, int);
                | ^~~~~~~
                | size_t
          ../../include/vlc_fixups.h:237:1: error: unknown type name ‘ssize_t’; did you mean ‘size_t’?
            237 | ssize_t writev(int, const struct iovec *, int);
                | ^~~~~~~
                | size_t
          make[2]: *** [Makefile:1531: strnstr.lo] Error 1
      94386bab
  8. Jul 26, 2022
    • Marvin Scholz's avatar
      access: file: properly report local files on Darwin · 132ef662
      Marvin Scholz authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      While Darwin implements fstatvfs, the statvfs structures f_flag
      field is only defined to contain two flags, ST_RDONLY and ST_NOSUID.
      So the check for MNT_LOCAL would always be false, reporting all files
      as non-local.
      
      To mitigate that, on Darwin we can just use fstatfs and check
      statfs.f_flags for MNT_LOCAL.
      132ef662
Loading