Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
d4cfab5a
Commit
d4cfab5a
authored
May 10, 2005
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support for large files in stream output
Closes #48 Closes Debian #306110
parent
2f322e1f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
modules/access_output/file.c
modules/access_output/file.c
+4
-1
No files found.
modules/access_output/file.c
View file @
d4cfab5a
...
@@ -51,6 +51,9 @@
...
@@ -51,6 +51,9 @@
#ifndef STDOUT_FILENO
#ifndef STDOUT_FILENO
# define STDOUT_FILENO 1
# define STDOUT_FILENO 1
#endif
#endif
#ifndef O_LARGEFILE
# define O_LARGEFILE 0
#endif
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
@@ -115,7 +118,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -115,7 +118,7 @@ static int Open( vlc_object_t *p_this )
msg_Err
(
p_access
,
"no file name specified"
);
msg_Err
(
p_access
,
"no file name specified"
);
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
}
}
i_flags
=
O_RDWR
|
O_CREAT
;
i_flags
=
O_RDWR
|
O_CREAT
|
O_LARGEFILE
;
var_Get
(
p_access
,
SOUT_CFG_PREFIX
"append"
,
&
val
);
var_Get
(
p_access
,
SOUT_CFG_PREFIX
"append"
,
&
val
);
if
(
val
.
b_bool
)
if
(
val
.
b_bool
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment