Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
ca9786f7
Commit
ca9786f7
authored
Nov 21, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* livedotcom: added return value for sdp:// Open.
parent
40c4b640
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/demux/livedotcom.cpp
modules/demux/livedotcom.cpp
+4
-2
No files found.
modules/demux/livedotcom.cpp
View file @
ca9786f7
...
...
@@ -2,7 +2,7 @@
* live.cpp : live.com support.
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: livedotcom.cpp,v 1.1
0 2003/11/21 00:38:01 gbazin
Exp $
* $Id: livedotcom.cpp,v 1.1
1 2003/11/21 06:14:59 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -258,6 +258,8 @@ static int AccessOpen( vlc_object_t *p_this )
p_input
->
stream
.
p_selected_area
->
i_size
=
0
;
p_input
->
stream
.
i_method
=
INPUT_METHOD_NETWORK
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
return
VLC_SUCCESS
;
}
}
...
...
@@ -296,7 +298,7 @@ static ssize_t Read ( input_thread_t *p_input, byte_t *p_buffer, size_t i_len )
static
ssize_t
MRLRead
(
input_thread_t
*
p_input
,
byte_t
*
p_buffer
,
size_t
i_len
)
{
int
i_done
=
(
int
)
p_input
->
p_access_data
;
int
i_copy
=
__MIN
(
(
int
)
i_len
,
strlen
(
p_input
->
psz_name
)
-
i_done
);
int
i_copy
=
__MIN
(
(
int
)
i_len
,
(
int
)
strlen
(
p_input
->
psz_name
)
-
i_done
);
if
(
i_copy
>
0
)
{
...
...
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