Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
d54a5f8f
Commit
d54a5f8f
authored
Dec 18, 2000
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
We can now read from stdin.
parent
1cf5dd7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
34 deletions
+49
-34
src/input/input.c
src/input/input.c
+49
-34
No files found.
src/input/input.c
View file @
d54a5f8f
...
...
@@ -338,48 +338,63 @@ static void FileOpen( input_thread_t * p_input )
#define p_config p_input->p_config
if
(
stat
(
p_config
->
p_source
,
&
stat_info
)
==
(
-
1
)
)
{
intf_ErrMsg
(
"Cannot stat() file %s (%s)"
,
p_config
->
p_source
,
strerror
(
errno
));
p_input
->
b_error
=
1
;
return
;
}
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
/* If we are here we can control the pace... */
p_input
->
stream
.
b_pace_control
=
1
;
if
(
S_ISREG
(
stat_info
.
st_mode
)
||
S_ISCHR
(
stat_info
.
st_mode
)
||
S_ISBLK
(
stat_info
.
st_mode
)
)
{
p_input
->
stream
.
b_seekable
=
1
;
p_input
->
stream
.
i_size
=
stat_info
.
st_size
;
}
else
if
(
S_ISFIFO
(
stat_info
.
st_mode
)
||
S_ISSOCK
(
stat_info
.
st_mode
)
)
if
(
!
strncmp
(
p_config
->
p_source
,
"-"
,
1
)
)
{
/* stdin */
p_input
->
i_handle
=
0
;
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
p_input
->
stream
.
b_pace_control
=
1
;
p_input
->
stream
.
b_seekable
=
0
;
p_input
->
stream
.
i_size
=
0
;
p_input
->
stream
.
i_tell
=
0
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
}
else
{
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
intf_ErrMsg
(
"Unknown file type"
);
p_input
->
b_error
=
1
;
return
;
}
if
(
stat
(
p_config
->
p_source
,
&
stat_info
)
==
(
-
1
)
)
{
intf_ErrMsg
(
"Cannot stat() file %s (%s)"
,
p_config
->
p_source
,
strerror
(
errno
));
p_input
->
b_error
=
1
;
return
;
}
p_input
->
stream
.
i_tell
=
0
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
intf_Msg
(
"Opening file %s"
,
p_config
->
p_source
);
if
(
(
p_input
->
i_handle
=
open
(
p_config
->
p_source
,
/*O_NONBLOCK | O_LARGEFILE*/
0
))
==
(
-
1
)
)
{
intf_ErrMsg
(
"Cannot open file (%s)"
,
strerror
(
errno
));
p_input
->
b_error
=
1
;
return
;
/* If we are here we can control the pace... */
p_input
->
stream
.
b_pace_control
=
1
;
if
(
S_ISREG
(
stat_info
.
st_mode
)
||
S_ISCHR
(
stat_info
.
st_mode
)
||
S_ISBLK
(
stat_info
.
st_mode
)
)
{
p_input
->
stream
.
b_seekable
=
1
;
p_input
->
stream
.
i_size
=
stat_info
.
st_size
;
}
else
if
(
S_ISFIFO
(
stat_info
.
st_mode
)
||
S_ISSOCK
(
stat_info
.
st_mode
)
)
{
p_input
->
stream
.
b_seekable
=
0
;
p_input
->
stream
.
i_size
=
0
;
}
else
{
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
intf_ErrMsg
(
"Unknown file type"
);
p_input
->
b_error
=
1
;
return
;
}
p_input
->
stream
.
i_tell
=
0
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
intf_Msg
(
"Opening file %s"
,
p_config
->
p_source
);
if
(
(
p_input
->
i_handle
=
open
(
p_config
->
p_source
,
/*O_NONBLOCK | O_LARGEFILE*/
0
))
==
(
-
1
)
)
{
intf_ErrMsg
(
"Cannot open file (%s)"
,
strerror
(
errno
));
p_input
->
b_error
=
1
;
return
;
}
}
#undef p_config
...
...
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