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
b2aeaed4
Commit
b2aeaed4
authored
Sep 12, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify
parent
495b3095
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
14 deletions
+3
-14
modules/stream_out/dummy.c
modules/stream_out/dummy.c
+3
-14
No files found.
modules/stream_out/dummy.c
View file @
b2aeaed4
...
@@ -70,24 +70,12 @@ static int Open( vlc_object_t *p_this )
...
@@ -70,24 +70,12 @@ static int Open( vlc_object_t *p_this )
*****************************************************************************/
*****************************************************************************/
static
void
Close
(
vlc_object_t
*
p_this
)
static
void
Close
(
vlc_object_t
*
p_this
)
{
{
#if 0
(
void
)
p_this
;
sout_stream_t *p_stream = (sout_stream_t*)p_this;
#endif
}
}
struct
sout_stream_id_t
{
int
i_d_u_m_m_y
;
};
static
sout_stream_id_t
*
Add
(
sout_stream_t
*
p_stream
,
es_format_t
*
p_fmt
)
static
sout_stream_id_t
*
Add
(
sout_stream_t
*
p_stream
,
es_format_t
*
p_fmt
)
{
{
sout_stream_id_t
*
id
;
return
malloc
(
0
);
id
=
malloc
(
sizeof
(
sout_stream_id_t
)
);
id
->
i_d_u_m_m_y
=
0
;
return
id
;
}
}
static
int
Del
(
sout_stream_t
*
p_stream
,
sout_stream_id_t
*
id
)
static
int
Del
(
sout_stream_t
*
p_stream
,
sout_stream_id_t
*
id
)
...
@@ -100,6 +88,7 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
...
@@ -100,6 +88,7 @@ static int Del( sout_stream_t *p_stream, sout_stream_id_t *id )
static
int
Send
(
sout_stream_t
*
p_stream
,
sout_stream_id_t
*
id
,
static
int
Send
(
sout_stream_t
*
p_stream
,
sout_stream_id_t
*
id
,
block_t
*
p_buffer
)
block_t
*
p_buffer
)
{
{
(
void
)
p_stream
;
(
void
)
id
;
block_ChainRelease
(
p_buffer
);
block_ChainRelease
(
p_buffer
);
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
...
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