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
99c44333
Commit
99c44333
authored
Aug 27, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: remove input_source_t.p_stream (refs #8455)
parent
c23258ff
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
32 deletions
+25
-32
src/input/input.c
src/input/input.c
+24
-29
src/input/input_internal.h
src/input/input_internal.h
+1
-3
No files found.
src/input/input.c
View file @
99c44333
...
@@ -346,7 +346,6 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
...
@@ -346,7 +346,6 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
p_input
->
p
->
p_item
=
p_item
;
p_input
->
p
->
p_item
=
p_item
;
/* Init Input fields */
/* Init Input fields */
p_input
->
p
->
input
.
p_stream
=
NULL
;
p_input
->
p
->
input
.
p_demux
=
NULL
;
p_input
->
p
->
input
.
p_demux
=
NULL
;
p_input
->
p
->
input
.
b_title_demux
=
false
;
p_input
->
p
->
input
.
b_title_demux
=
false
;
p_input
->
p
->
input
.
i_title
=
0
;
p_input
->
p
->
input
.
i_title
=
0
;
...
@@ -1328,7 +1327,6 @@ error:
...
@@ -1328,7 +1327,6 @@ error:
/* Mark them deleted */
/* Mark them deleted */
p_input
->
p
->
input
.
p_demux
=
NULL
;
p_input
->
p
->
input
.
p_demux
=
NULL
;
p_input
->
p
->
input
.
p_stream
=
NULL
;
p_input
->
p
->
p_es_out
=
NULL
;
p_input
->
p
->
p_es_out
=
NULL
;
p_input
->
p
->
p_sout
=
NULL
;
p_input
->
p
->
p_sout
=
NULL
;
...
@@ -1577,12 +1575,12 @@ static void ControlPause( input_thread_t *p_input, mtime_t i_control_date )
...
@@ -1577,12 +1575,12 @@ static void ControlPause( input_thread_t *p_input, mtime_t i_control_date )
if
(
p_input
->
p
->
b_can_pause
)
if
(
p_input
->
p
->
b_can_pause
)
{
{
if
(
p_input
->
p
->
input
.
p_stream
!=
NULL
)
demux_t
*
p_demux
=
p_input
->
p
->
input
.
p_demux
;
i_ret
=
stream_Control
(
p_input
->
p
->
input
.
p_stream
,
STREAM_SET_PAUSE_STATE
,
true
);
if
(
p_demux
->
s
!=
NULL
)
i_ret
=
stream_Control
(
p_demux
->
s
,
STREAM_SET_PAUSE_STATE
,
true
);
else
else
i_ret
=
demux_Control
(
p_input
->
p
->
input
.
p_demux
,
i_ret
=
demux_Control
(
p_demux
,
DEMUX_SET_PAUSE_STATE
,
true
);
DEMUX_SET_PAUSE_STATE
,
true
);
if
(
i_ret
)
if
(
i_ret
)
{
{
...
@@ -1611,12 +1609,12 @@ static void ControlUnpause( input_thread_t *p_input, mtime_t i_control_date )
...
@@ -1611,12 +1609,12 @@ static void ControlUnpause( input_thread_t *p_input, mtime_t i_control_date )
if
(
p_input
->
p
->
b_can_pause
)
if
(
p_input
->
p
->
b_can_pause
)
{
{
if
(
p_input
->
p
->
input
.
p_stream
)
demux_t
*
p_demux
=
p_input
->
p
->
input
.
p_demux
;
i_ret
=
stream_Control
(
p_input
->
p
->
input
.
p_stream
,
STREAM_SET_PAUSE_STATE
,
false
);
if
(
p_demux
->
s
!=
NULL
)
i_ret
=
stream_Control
(
p_demux
->
s
,
STREAM_SET_PAUSE_STATE
,
false
);
else
else
i_ret
=
demux_Control
(
p_input
->
p
->
input
.
p_demux
,
i_ret
=
demux_Control
(
p_demux
,
DEMUX_SET_PAUSE_STATE
,
false
);
DEMUX_SET_PAUSE_STATE
,
false
);
if
(
i_ret
)
if
(
i_ret
)
{
{
/* FIXME What to do ? */
/* FIXME What to do ? */
...
@@ -1809,12 +1807,10 @@ static bool Control( input_thread_t *p_input,
...
@@ -1809,12 +1807,10 @@ static bool Control( input_thread_t *p_input,
if
(
i_rate
!=
p_input
->
p
->
i_rate
&&
if
(
i_rate
!=
p_input
->
p
->
i_rate
&&
!
p_input
->
p
->
b_can_pace_control
&&
p_input
->
p
->
b_can_rate_control
)
!
p_input
->
p
->
b_can_pace_control
&&
p_input
->
p
->
b_can_rate_control
)
{
{
int
i_ret
;
demux_t
*
p_demux
=
p_input
->
p
->
input
.
p_demux
;
if
(
p_input
->
p
->
input
.
p_stream
!=
NULL
)
int
i_ret
=
VLC_EGENERIC
;
{
i_ret
=
VLC_EGENERIC
;
if
(
p_demux
->
s
==
NULL
)
}
else
{
{
if
(
!
p_input
->
p
->
input
.
b_rescale_ts
)
if
(
!
p_input
->
p
->
input
.
b_rescale_ts
)
es_out_Control
(
p_input
->
p
->
p_es_out
,
ES_OUT_RESET_PCR
);
es_out_Control
(
p_input
->
p
->
p_es_out
,
ES_OUT_RESET_PCR
);
...
@@ -2373,7 +2369,7 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2373,7 +2369,7 @@ static int InputSourceInit( input_thread_t *p_input,
TAB_APPEND
(
i_input_list
,
ppsz_input_list
,
NULL
);
TAB_APPEND
(
i_input_list
,
ppsz_input_list
,
NULL
);
/* Create the stream_t */
/* Create the stream_t */
in
->
p_stream
=
stream_AccessNew
(
p_access
,
ppsz_input_list
);
stream_t
*
p_stream
=
stream_AccessNew
(
p_access
,
ppsz_input_list
);
if
(
ppsz_input_list
)
if
(
ppsz_input_list
)
{
{
for
(
int
i
=
0
;
ppsz_input_list
[
i
]
!=
NULL
;
i
++
)
for
(
int
i
=
0
;
ppsz_input_list
[
i
]
!=
NULL
;
i
++
)
...
@@ -2381,7 +2377,7 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2381,7 +2377,7 @@ static int InputSourceInit( input_thread_t *p_input,
TAB_CLEAN
(
i_input_list
,
ppsz_input_list
);
TAB_CLEAN
(
i_input_list
,
ppsz_input_list
);
}
}
if
(
in
->
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"
);
goto
error
;
goto
error
;
...
@@ -2390,8 +2386,7 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2390,8 +2386,7 @@ static int InputSourceInit( input_thread_t *p_input,
/* Add stream filters */
/* Add stream filters */
char
*
psz_stream_filter
=
var_GetNonEmptyString
(
p_input
,
char
*
psz_stream_filter
=
var_GetNonEmptyString
(
p_input
,
"stream-filter"
);
"stream-filter"
);
in
->
p_stream
=
stream_FilterChainNew
(
in
->
p_stream
,
p_stream
=
stream_FilterChainNew
(
p_stream
,
psz_stream_filter
,
psz_stream_filter
,
var_GetBool
(
p_input
,
"input-record-native"
)
);
var_GetBool
(
p_input
,
"input-record-native"
)
);
free
(
psz_stream_filter
);
free
(
psz_stream_filter
);
...
@@ -2399,12 +2394,12 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2399,12 +2394,12 @@ static int InputSourceInit( input_thread_t *p_input,
{
{
bool
b
;
bool
b
;
stream_Control
(
in
->
p_stream
,
STREAM_CAN_CONTROL_PACE
,
stream_Control
(
p_stream
,
STREAM_CAN_CONTROL_PACE
,
&
in
->
b_can_pace_control
);
&
in
->
b_can_pace_control
);
in
->
b_can_rate_control
=
in
->
b_can_pace_control
;
in
->
b_can_rate_control
=
in
->
b_can_pace_control
;
in
->
b_rescale_ts
=
true
;
in
->
b_rescale_ts
=
true
;
stream_Control
(
in
->
p_stream
,
STREAM_CAN_PAUSE
,
&
in
->
b_can_pause
);
stream_Control
(
p_stream
,
STREAM_CAN_PAUSE
,
&
in
->
b_can_pause
);
var_SetBool
(
p_input
,
"can-pause"
,
var_SetBool
(
p_input
,
"can-pause"
,
in
->
b_can_pause
||
!
in
->
b_can_pace_control
);
/* XXX temporary because of es_out_timeshift*/
in
->
b_can_pause
||
!
in
->
b_can_pace_control
);
/* XXX temporary because of es_out_timeshift*/
var_SetBool
(
p_input
,
"can-rate"
,
var_SetBool
(
p_input
,
"can-rate"
,
...
@@ -2412,7 +2407,7 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2412,7 +2407,7 @@ static int InputSourceInit( input_thread_t *p_input,
var_SetBool
(
p_input
,
"can-rewind"
,
var_SetBool
(
p_input
,
"can-rewind"
,
!
in
->
b_rescale_ts
&&
!
in
->
b_can_pace_control
);
!
in
->
b_rescale_ts
&&
!
in
->
b_can_pace_control
);
stream_Control
(
in
->
p_stream
,
STREAM_CAN_SEEK
,
&
b
);
stream_Control
(
p_stream
,
STREAM_CAN_SEEK
,
&
b
);
var_SetBool
(
p_input
,
"can-seek"
,
b
);
var_SetBool
(
p_input
,
"can-seek"
,
b
);
in
->
b_title_demux
=
false
;
in
->
b_title_demux
=
false
;
...
@@ -2420,13 +2415,13 @@ static int InputSourceInit( input_thread_t *p_input,
...
@@ -2420,13 +2415,13 @@ static int InputSourceInit( input_thread_t *p_input,
in
->
p_demux
=
demux_New
(
p_input
,
p_input
,
psz_access
,
psz_demux
,
in
->
p_demux
=
demux_New
(
p_input
,
p_input
,
psz_access
,
psz_demux
,
/* Take access/stream redirections into account: */
/* Take access/stream redirections into account: */
in
->
p_stream
->
psz_path
?
in
->
p_stream
->
psz_path
:
psz_path
,
p_stream
->
psz_path
?
p_stream
->
psz_path
:
psz_path
,
in
->
p_stream
,
p_input
->
p
->
p_es_out
,
p_stream
,
p_input
->
p
->
p_es_out
,
p_input
->
b_preparsing
);
p_input
->
b_preparsing
);
if
(
in
->
p_demux
==
NULL
)
if
(
in
->
p_demux
==
NULL
)
{
{
stream_Delete
(
in
->
p_stream
);
stream_Delete
(
p_stream
);
if
(
vlc_object_alive
(
p_input
)
)
if
(
vlc_object_alive
(
p_input
)
)
{
{
msg_Err
(
p_input
,
"no suitable demux module for `%s/%s://%s'"
,
msg_Err
(
p_input
,
"no suitable demux module for `%s/%s://%s'"
,
...
...
src/input/input_internal.h
View file @
99c44333
...
@@ -39,9 +39,7 @@
...
@@ -39,9 +39,7 @@
/* input_source_t: gathers all information per input source */
/* input_source_t: gathers all information per input source */
typedef
struct
typedef
struct
{
{
/* Access/Stream/Demux plugins */
demux_t
*
p_demux
;
/**< Demux plugin instance */
stream_t
*
p_stream
VLC_DEPRECATED
;
demux_t
*
p_demux
;
/* Title infos for that input */
/* Title infos for that input */
bool
b_title_demux
;
/* Titles/Seekpoints provided by demux */
bool
b_title_demux
;
/* Titles/Seekpoints provided by demux */
...
...
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