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
9346a542
Commit
9346a542
authored
Oct 06, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream output: remove nul/unused object members
parent
04c0c091
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
27 deletions
+3
-27
include/vlc_sout.h
include/vlc_sout.h
+0
-13
modules/mux/mp4.c
modules/mux/mp4.c
+3
-3
src/stream_output/stream_output.c
src/stream_output/stream_output.c
+0
-11
No files found.
include/vlc_sout.h
View file @
9346a542
...
@@ -47,17 +47,11 @@ struct sout_instance_t
...
@@ -47,17 +47,11 @@ struct sout_instance_t
char
*
psz_sout
;
char
*
psz_sout
;
/* meta data (Read only) XXX it won't be set before the first packet received */
vlc_meta_t
*
p_meta
;
/** count of output that can't control the space */
/** count of output that can't control the space */
int
i_out_pace_nocontrol
;
int
i_out_pace_nocontrol
;
vlc_mutex_t
lock
;
vlc_mutex_t
lock
;
sout_stream_t
*
p_stream
;
sout_stream_t
*
p_stream
;
/** Private */
sout_instance_sys_t
*
p_sys
;
};
};
/****************************************************************************
/****************************************************************************
...
@@ -73,10 +67,6 @@ struct sout_access_out_t
...
@@ -73,10 +67,6 @@ struct sout_access_out_t
module_t
*
p_module
;
module_t
*
p_module
;
char
*
psz_access
;
char
*
psz_access
;
int
i_writes
;
/** Local counter reset each time it is transferred to stats */
int64_t
i_sent_bytes
;
char
*
psz_path
;
char
*
psz_path
;
sout_access_out_sys_t
*
p_sys
;
sout_access_out_sys_t
*
p_sys
;
int
(
*
pf_seek
)(
sout_access_out_t
*
,
off_t
);
int
(
*
pf_seek
)(
sout_access_out_t
*
,
off_t
);
...
@@ -195,9 +185,6 @@ struct sout_stream_t
...
@@ -195,9 +185,6 @@ struct sout_stream_t
config_chain_t
*
p_cfg
;
config_chain_t
*
p_cfg
;
sout_stream_t
*
p_next
;
sout_stream_t
*
p_next
;
/* Subpicture unit */
spu_t
*
p_spu
;
/* add, remove a stream */
/* add, remove a stream */
sout_stream_id_t
*
(
*
pf_add
)(
sout_stream_t
*
,
es_format_t
*
);
sout_stream_id_t
*
(
*
pf_add
)(
sout_stream_t
*
,
es_format_t
*
);
int
(
*
pf_del
)(
sout_stream_t
*
,
sout_stream_id_t
*
);
int
(
*
pf_del
)(
sout_stream_t
*
,
sout_stream_id_t
*
);
...
...
modules/mux/mp4.c
View file @
9346a542
...
@@ -964,7 +964,6 @@ static bo_t *GetUdtaTag( sout_mux_t *p_mux )
...
@@ -964,7 +964,6 @@ static bo_t *GetUdtaTag( sout_mux_t *p_mux )
{
{
sout_mux_sys_t
*
p_sys
=
p_mux
->
p_sys
;
sout_mux_sys_t
*
p_sys
=
p_mux
->
p_sys
;
bo_t
*
udta
=
box_new
(
"udta"
);
bo_t
*
udta
=
box_new
(
"udta"
);
vlc_meta_t
*
p_meta
=
p_mux
->
p_sout
->
p_meta
;
int
i_track
;
int
i_track
;
/* Requirements */
/* Requirements */
...
@@ -998,8 +997,9 @@ static bo_t *GetUdtaTag( sout_mux_t *p_mux )
...
@@ -998,8 +997,9 @@ static bo_t *GetUdtaTag( sout_mux_t *p_mux )
box_fix
(
box
);
box_fix
(
box
);
box_gather
(
udta
,
box
);
box_gather
(
udta
,
box
);
}
}
#if 0
/* Misc atoms */
/* Misc atoms */
vlc_meta_t *p_meta = p_mux->p_sout->p_meta;
if( p_meta )
if( p_meta )
{
{
#define ADD_META_BOX( type, box_string ) { \
#define ADD_META_BOX( type, box_string ) { \
...
@@ -1024,7 +1024,7 @@ static bo_t *GetUdtaTag( sout_mux_t *p_mux )
...
@@ -1024,7 +1024,7 @@ static bo_t *GetUdtaTag( sout_mux_t *p_mux )
ADD_META_BOX( URL, "url" );
ADD_META_BOX( URL, "url" );
#undef ADD_META_BOX
#undef ADD_META_BOX
}
}
#endif
box_fix
(
udta
);
box_fix
(
udta
);
return
udta
;
return
udta
;
}
}
...
...
src/stream_output/stream_output.c
View file @
9346a542
...
@@ -109,9 +109,7 @@ sout_instance_t *sout_NewInstance( vlc_object_t *p_parent, const char *psz_dest
...
@@ -109,9 +109,7 @@ sout_instance_t *sout_NewInstance( vlc_object_t *p_parent, const char *psz_dest
/* *** init descriptor *** */
/* *** init descriptor *** */
p_sout
->
psz_sout
=
strdup
(
psz_dest
);
p_sout
->
psz_sout
=
strdup
(
psz_dest
);
p_sout
->
p_meta
=
NULL
;
p_sout
->
i_out_pace_nocontrol
=
0
;
p_sout
->
i_out_pace_nocontrol
=
0
;
p_sout
->
p_sys
=
NULL
;
vlc_mutex_init
(
&
p_sout
->
lock
);
vlc_mutex_init
(
&
p_sout
->
lock
);
p_sout
->
p_stream
=
NULL
;
p_sout
->
p_stream
=
NULL
;
...
@@ -145,12 +143,6 @@ void sout_DeleteInstance( sout_instance_t * p_sout )
...
@@ -145,12 +143,6 @@ void sout_DeleteInstance( sout_instance_t * p_sout )
/* *** free all string *** */
/* *** free all string *** */
FREENULL
(
p_sout
->
psz_sout
);
FREENULL
(
p_sout
->
psz_sout
);
/* delete meta */
if
(
p_sout
->
p_meta
)
{
vlc_meta_Delete
(
p_sout
->
p_meta
);
}
vlc_mutex_destroy
(
&
p_sout
->
lock
);
vlc_mutex_destroy
(
&
p_sout
->
lock
);
/* *** free structure *** */
/* *** free structure *** */
...
@@ -269,9 +261,6 @@ sout_access_out_t *sout_AccessOutNew( vlc_object_t *p_sout,
...
@@ -269,9 +261,6 @@ sout_access_out_t *sout_AccessOutNew( vlc_object_t *p_sout,
p_access
->
pf_control
=
NULL
;
p_access
->
pf_control
=
NULL
;
p_access
->
p_module
=
NULL
;
p_access
->
p_module
=
NULL
;
p_access
->
i_writes
=
0
;
p_access
->
i_sent_bytes
=
0
;
p_access
->
p_module
=
p_access
->
p_module
=
module_need
(
p_access
,
"sout access"
,
p_access
->
psz_access
,
true
);
module_need
(
p_access
,
"sout access"
,
p_access
->
psz_access
,
true
);
...
...
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