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
cb233fee
Commit
cb233fee
authored
Jul 22, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: use concat access rather than stream access
parent
dfe06d6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
49 deletions
+55
-49
src/input/input.c
src/input/input.c
+55
-49
No files found.
src/input/input.c
View file @
cb233fee
...
@@ -2231,6 +2231,60 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2231,6 +2231,60 @@ static int InputSourceInit( input_thread_t *p_input,
}
}
else
else
{
/* Now try a real access */
{
/* Now try a real access */
if
(
&
p_input
->
p
->
input
==
in
)
{
/* On master stream only, use input-list */
char
*
str
=
var_InheritString
(
p_input
,
"input-list"
);
if
(
str
!=
NULL
)
{
char
*
list
;
var_Create
(
p_input
,
"concat-list"
,
VLC_VAR_STRING
);
if
(
likely
(
asprintf
(
&
list
,
"%s://%s,%s"
,
psz_access
,
psz_path
,
str
)
>=
0
)
)
{
var_SetString
(
p_input
,
"concat-list"
,
list
);
free
(
list
);
}
free
(
str
);
psz_access
=
"concat"
;
}
}
if
(
strcasecmp
(
psz_access
,
"concat"
)
)
{
/* Autodetect extra files if none specified */
int
count
;
char
**
tab
;
TAB_INIT
(
count
,
tab
);
InputGetExtraFiles
(
p_input
,
&
count
,
&
tab
,
psz_access
,
psz_path
);
if
(
count
>
0
)
{
char
*
list
=
NULL
;
for
(
int
i
=
0
;
i
<
count
;
i
++
)
{
char
*
str
;
if
(
asprintf
(
&
str
,
"%s,%s"
,
list
?
list
:
psz_mrl
,
tab
[
i
]
)
<
0
)
break
;
free
(
tab
[
i
]
);
free
(
list
);
list
=
str
;
}
var_Create
(
p_input
,
"concat-list"
,
VLC_VAR_STRING
);
if
(
likely
(
list
!=
NULL
)
)
{
var_SetString
(
p_input
,
"concat-list"
,
list
);
free
(
list
);
}
psz_access
=
"concat"
;
}
TAB_CLEAN
(
count
,
tab
);
}
/* */
access_t
*
p_access
=
access_New
(
p_input
,
p_input
,
access_t
*
p_access
=
access_New
(
p_input
,
p_input
,
psz_access
,
psz_demux
,
psz_path
);
psz_access
,
psz_demux
,
psz_path
);
if
(
p_access
==
NULL
)
if
(
p_access
==
NULL
)
...
@@ -2247,56 +2301,8 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2247,56 +2301,8 @@ static int InputSourceInit( input_thread_t *p_input,
if
(
!
psz_demux
[
0
]
||
!
strcasecmp
(
psz_demux
,
"any"
)
)
if
(
!
psz_demux
[
0
]
||
!
strcasecmp
(
psz_demux
,
"any"
)
)
psz_demux
=
p_access
->
psz_demux
;
psz_demux
=
p_access
->
psz_demux
;
/* */
int
i_input_list
;
char
**
ppsz_input_list
;
TAB_INIT
(
i_input_list
,
ppsz_input_list
);
/* On master stream only, use input-list */
if
(
&
p_input
->
p
->
input
==
in
)
{
char
*
psz_list
;
char
*
psz_parser
;
psz_list
=
psz_parser
=
var_CreateGetNonEmptyString
(
p_input
,
"input-list"
);
while
(
psz_parser
&&
*
psz_parser
)
{
char
*
p
=
strchr
(
psz_parser
,
','
);
if
(
p
)
*
p
++
=
'\0'
;
if
(
*
psz_parser
)
{
char
*
psz_name
=
strdup
(
psz_parser
);
if
(
psz_name
)
TAB_APPEND
(
i_input_list
,
ppsz_input_list
,
psz_name
);
}
psz_parser
=
p
;
}
free
(
psz_list
);
}
/* Autodetect extra files if none specified */
if
(
i_input_list
<=
0
)
{
InputGetExtraFiles
(
p_input
,
&
i_input_list
,
&
ppsz_input_list
,
psz_access
,
psz_path
);
}
if
(
i_input_list
>
0
)
TAB_APPEND
(
i_input_list
,
ppsz_input_list
,
NULL
);
/* Create the stream_t */
/* Create the stream_t */
stream_t
*
p_stream
=
stream_AccessNew
(
p_access
,
ppsz_input_list
);
stream_t
*
p_stream
=
stream_AccessNew
(
p_access
,
NULL
);
if
(
ppsz_input_list
)
{
for
(
int
i
=
0
;
ppsz_input_list
[
i
]
!=
NULL
;
i
++
)
free
(
ppsz_input_list
[
i
]
);
TAB_CLEAN
(
i_input_list
,
ppsz_input_list
);
}
if
(
p_stream
==
NULL
)
if
(
p_stream
==
NULL
)
{
{
msg_Warn
(
p_input
,
"cannot create a stream_t from access"
);
msg_Warn
(
p_input
,
"cannot create a stream_t from access"
);
...
...
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