- 06 Dec, 2017 2 commits
-
-
Thomas Guillem authored
-
Thomas Guillem authored
Refs #18991
-
- 02 Nov, 2017 1 commit
-
-
Thomas Guillem authored
-
- 20 Sep, 2017 2 commits
-
-
Thomas Guillem authored
Add a new parameter: psz_flatpath. If not NULL, readdir_helper_additem() will un-flatten the folder hierarchy. It will create an input item for each sub folders (separated by '/') of psz_nullpath. Example: a stream directory that have the following items: - "foo/bar/item1" - "foo/bar/item2" will output the following items while using this new parameter: - foo - bar - item1 - item2 This functionality can be used by "stream directory" modules that have a flattened folder hierarchy, like libarchive. Access modules should not need this functionality.
-
Thomas Guillem authored
This helper can now be used by other modules like "stream directory".
-
- 23 Jul, 2017 1 commit
-
-
Rémi Denis-Courmont authored
-
- 18 Apr, 2017 1 commit
-
-
Rémi Denis-Courmont authored
-
- 15 Nov, 2016 1 commit
-
-
Rémi Denis-Courmont authored
-
- 22 Jul, 2016 1 commit
-
-
Sebastian Roth authored
Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
- 21 Jul, 2016 5 commits
-
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
They have been identical for a while.
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
Rémi Denis-Courmont authored
-
- 20 Jul, 2016 1 commit
-
-
Rémi Denis-Courmont authored
This matches the stream_t.pf_read convention.
-
- 15 Jul, 2016 2 commits
-
-
Thomas Guillem authored
-
Thomas Guillem authored
-
- 08 Jul, 2016 1 commit
-
-
Thomas Guillem authored
login is valid only if vlc_credential_get returned true
-
- 24 Jun, 2016 1 commit
-
-
Jean-Baptiste Kempf authored
-
- 15 Jun, 2016 1 commit
-
-
Hugo Beauzée-Luyssen authored
-
- 19 May, 2016 2 commits
-
-
Thomas Guillem authored
The first sort argument is no longer necessary.
-
Thomas Guillem authored
This commit changes pf_readdir callback to its original behavior. Accesses and streams now add items to a node. Archive stream_filters will now be able to add nodes to a node (when an archive has directory). This was not possible before. This commit also adds an access_fsdir helper to help fs accesses (file, smb, nfs, ftp, sftp) adding items to a node. These accesses need the same treatment that is now done by this helper: - hide hidden files or not (depending on "show-hiddenfiles" option) - skip some file extensions (depending on "ignore-filetypes" option) - sort items by type and alphabetically (depending on "directory-sort" option). - For a next commit: attach slaves to items The directory demux won't do these operations anymore for every access/stream. This commit doesn't change the interruptible state of the pf_readdir function, accesses/streams are still interruptible in the middle of a pf_readdir call. This partially reverts commit 88ffe158.
-
- 16 May, 2016 2 commits
-
-
Jean-Baptiste Kempf authored
-
Jean-Baptiste Kempf authored
-
- 17 Apr, 2016 1 commit
-
-
Thomas Guillem authored
Remove "int options, const char *const *options, unsigned option_flags" arguments from every New() functions since these args are mainly unused. You now have to call input_item_AddOptions after input item creation to add options. Add input_item_net_type enum in order to avoid confusion between 2 int arguments: i_duration and i_net that could both be -1, 0 or > 0. Replace input_item_NewWithType and input_item_NewWithTypeExt with input_item_NewExt. Add input_item_NewCard, input_item_NewDisc, input_item_NewStream, input_item_NewDirectory, input_item_NewFile MACRO. These MACROS avoid to use useless arguments for an item type (for example, it's useless to specify a duration for a directory type).
-
- 12 Apr, 2016 1 commit
-
-
Thomas Guillem authored
-
- 15 Mar, 2016 2 commits
-
-
Thomas Guillem authored
-
Thomas Guillem authored
Don't decode url before parsing it. psz_share and psz_path are now stored on the same allocated and decoded string.
-
- 07 Mar, 2016 1 commit
-
-
Thomas Guillem authored
libdsm functions return now a negative number in case of error. Add NT_STATUS error check to detect permission errors in order to ask for credentials only in that case.
-
- 26 Feb, 2016 2 commits
-
-
Thomas Guillem authored
-
Thomas Guillem authored
This keystore is used to store credentials on memory if no others keystore is found or if the user doesn't want to store them permanently. This keystore is owned by libvlc and is shared with all vlc objects. It's released when the libvlc instance is released.
-
- 15 Feb, 2016 1 commit
-
-
Hugo Beauzée-Luyssen authored
cid #1352643a
-
- 24 Jan, 2016 2 commits
-
-
Thomas Guillem authored
-
Thomas Guillem authored
-
- 14 Jan, 2016 1 commit
-
-
Thomas Guillem authored
-
- 12 Jan, 2016 4 commits
-
-
Thomas Guillem authored
-
Thomas Guillem authored
- Never save guest credentials - Don't save password in options if it's in the keystore
-
Thomas Guillem authored
This reverts commit 76ae877d.
-
Thomas Guillem authored
-
- 11 Jan, 2016 1 commit
-
-
Thomas Guillem authored
-