Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
df771177
Commit
df771177
authored
Aug 05, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up a bit duplicate module.
parent
c4e756b0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
11 deletions
+9
-11
modules/stream_out/duplicate.c
modules/stream_out/duplicate.c
+9
-11
No files found.
modules/stream_out/duplicate.c
View file @
df771177
...
@@ -186,8 +186,7 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
...
@@ -186,8 +186,7 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
if
(
!
id
)
if
(
!
id
)
return
NULL
;
return
NULL
;
id
->
i_nb_ids
=
0
;
TAB_INIT
(
id
->
i_nb_ids
,
id
->
pp_ids
);
id
->
pp_ids
=
NULL
;
msg_Dbg
(
p_stream
,
"duplicated a new stream codec=%4.4s (es=%d group=%d)"
,
msg_Dbg
(
p_stream
,
"duplicated a new stream codec=%4.4s (es=%d group=%d)"
,
(
char
*
)
&
p_fmt
->
i_codec
,
p_fmt
->
i_id
,
p_fmt
->
i_group
);
(
char
*
)
&
p_fmt
->
i_codec
,
p_fmt
->
i_id
,
p_fmt
->
i_group
);
...
@@ -200,7 +199,7 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
...
@@ -200,7 +199,7 @@ static sout_stream_id_t * Add( sout_stream_t *p_stream, es_format_t *p_fmt )
{
{
sout_stream_t
*
out
=
p_sys
->
pp_streams
[
i_stream
];
sout_stream_t
*
out
=
p_sys
->
pp_streams
[
i_stream
];
id_new
=
(
void
*
)
out
->
pf_a
dd
(
out
,
p_fmt
);
id_new
=
(
void
*
)
sout_StreamIdA
dd
(
out
,
p_fmt
);
if
(
id_new
)
if
(
id_new
)
{
{
msg_Dbg
(
p_stream
,
" - added for output %d"
,
i_stream
);
msg_Dbg
(
p_stream
,
" - added for output %d"
,
i_stream
);
...
@@ -243,7 +242,7 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
...
@@ -243,7 +242,7 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
if
(
id
->
pp_ids
[
i_stream
]
)
if
(
id
->
pp_ids
[
i_stream
]
)
{
{
sout_stream_t
*
out
=
p_sys
->
pp_streams
[
i_stream
];
sout_stream_t
*
out
=
p_sys
->
pp_streams
[
i_stream
];
out
->
pf_d
el
(
out
,
id
->
pp_ids
[
i_stream
]
);
sout_StreamIdD
el
(
out
,
id
->
pp_ids
[
i_stream
]
);
}
}
}
}
...
@@ -271,24 +270,21 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
...
@@ -271,24 +270,21 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
for
(
i_stream
=
0
;
i_stream
<
p_sys
->
i_nb_streams
-
1
;
i_stream
++
)
for
(
i_stream
=
0
;
i_stream
<
p_sys
->
i_nb_streams
-
1
;
i_stream
++
)
{
{
block_t
*
p_dup
;
p_dup_stream
=
p_sys
->
pp_streams
[
i_stream
];
p_dup_stream
=
p_sys
->
pp_streams
[
i_stream
];
if
(
id
->
pp_ids
[
i_stream
]
)
if
(
id
->
pp_ids
[
i_stream
]
)
{
{
p_dup
=
block_Duplicate
(
p_buffer
);
block_t
*
p_dup
=
block_Duplicate
(
p_buffer
);
if
(
p_dup
)
if
(
p_dup
)
p_dup_stream
->
pf_send
(
p_dup_stream
,
id
->
pp_ids
[
i_stream
],
sout_StreamIdSend
(
p_dup_stream
,
id
->
pp_ids
[
i_stream
],
p_dup
);
p_dup
);
}
}
}
}
if
(
i_stream
<
p_sys
->
i_nb_streams
&&
id
->
pp_ids
[
i_stream
]
)
if
(
i_stream
<
p_sys
->
i_nb_streams
&&
id
->
pp_ids
[
i_stream
]
)
{
{
p_dup_stream
=
p_sys
->
pp_streams
[
i_stream
];
p_dup_stream
=
p_sys
->
pp_streams
[
i_stream
];
p_dup_stream
->
pf_send
(
p_dup_stream
,
id
->
pp_ids
[
i_stream
],
sout_StreamIdSend
(
p_dup_stream
,
id
->
pp_ids
[
i_stream
],
p_buffer
);
p_buffer
);
}
}
else
else
{
{
...
@@ -341,7 +337,9 @@ static bool ESSelected( es_format_t *fmt, char *psz_select )
...
@@ -341,7 +337,9 @@ static bool ESSelected( es_format_t *fmt, char *psz_select )
return
true
;
return
true
;
}
}
psz_dup
=
strdup
(
psz_select
);
psz_dup
=
strdup
(
psz_select
);
psz
=
psz_dup
;
if
(
!
psz_dup
)
return
false
;
psz
=
psz_dup
;
/* If non empty, parse the selection:
/* If non empty, parse the selection:
* We have selection[,selection[,..]] where following selection are recognized:
* We have selection[,selection[,..]] where following selection are recognized:
...
...
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