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
afb9691c
Commit
afb9691c
authored
Apr 22, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream_output: Expanded debug message at sout input creation/destruction.
parent
303288a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/stream_output/stream_output.c
src/stream_output/stream_output.c
+3
-3
No files found.
src/stream_output/stream_output.c
View file @
afb9691c
...
...
@@ -212,13 +212,13 @@ sout_packetizer_input_t *sout_InputNew( sout_instance_t *p_sout,
{
sout_packetizer_input_t
*
p_input
;
msg_Dbg
(
p_sout
,
"adding a new input"
);
/* *** create a packetizer input *** */
p_input
=
malloc
(
sizeof
(
sout_packetizer_input_t
)
);
p_input
->
p_sout
=
p_sout
;
p_input
->
p_fmt
=
p_fmt
;
msg_Dbg
(
p_sout
,
"adding a new sout input (sout_input:%p)"
,
p_input
);
if
(
p_fmt
->
i_codec
==
VLC_FOURCC
(
'n'
,
'u'
,
'l'
,
'l'
)
)
{
vlc_object_release
(
p_sout
);
...
...
@@ -246,7 +246,7 @@ int sout_InputDelete( sout_packetizer_input_t *p_input )
{
sout_instance_t
*
p_sout
=
p_input
->
p_sout
;
msg_Dbg
(
p_sout
,
"removing a
n input"
);
msg_Dbg
(
p_sout
,
"removing a
sout input (sout_input:%p)"
,
p_input
);
if
(
p_input
->
p_fmt
->
i_codec
!=
VLC_FOURCC
(
'n'
,
'u'
,
'l'
,
'l'
)
)
{
...
...
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