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
177dd4ce
Commit
177dd4ce
authored
Nov 29, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sout_InstanceNew: remove __
parent
3b9074b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
src/stream_output/stream_output.c
src/stream_output/stream_output.c
+3
-1
src/stream_output/stream_output.h
src/stream_output/stream_output.h
+2
-2
No files found.
src/stream_output/stream_output.c
View file @
177dd4ce
...
...
@@ -75,10 +75,12 @@ static int mrl_Parse( mrl_t *p_mrl, const char *psz_mrl );
/* mrl_Clean: clean p_mrl after a call to mrl_Parse */
static
void
mrl_Clean
(
mrl_t
*
p_mrl
);
#undef sout_NewInstance
/*****************************************************************************
* sout_NewInstance: creates a new stream output instance
*****************************************************************************/
sout_instance_t
*
__
sout_NewInstance
(
vlc_object_t
*
p_parent
,
const
char
*
psz_dest
)
sout_instance_t
*
sout_NewInstance
(
vlc_object_t
*
p_parent
,
const
char
*
psz_dest
)
{
static
const
char
typename
[]
=
"stream output"
;
sout_instance_t
*
p_sout
;
...
...
src/stream_output/stream_output.h
View file @
177dd4ce
...
...
@@ -42,8 +42,8 @@ struct sout_packetizer_input_t
sout_stream_id_t
*
id
;
};
#define sout_NewInstance(a,b) __sout_NewInstance(VLC_OBJECT(a),b)
sout_instance_t
*
__sout_NewInstance
(
vlc_object_t
*
,
const
char
*
);
sout_instance_t
*
sout_NewInstance
(
vlc_object_t
*
,
const
char
*
);
#define sout_NewInstance(a,b) sout_NewInstance(VLC_OBJECT(a),b)
void
sout_DeleteInstance
(
sout_instance_t
*
);
sout_packetizer_input_t
*
sout_InputNew
(
sout_instance_t
*
,
es_format_t
*
);
...
...
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