Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
3264e6d5
Commit
3264e6d5
authored
Mar 09, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stats: eliminate useless data and callback
parent
7de1884e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
54 deletions
+8
-54
modules/misc/stats/encoder.c
modules/misc/stats/encoder.c
+7
-52
modules/misc/stats/stats.c
modules/misc/stats/stats.c
+1
-1
modules/misc/stats/stats.h
modules/misc/stats/stats.h
+0
-1
No files found.
modules/misc/stats/encoder.c
View file @
3264e6d5
...
@@ -21,9 +21,6 @@
...
@@ -21,9 +21,6 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
*****************************************************************************/
/*****************************************************************************
* Preamble
*****************************************************************************/
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
# include "config.h"
# include "config.h"
#endif
#endif
...
@@ -33,45 +30,6 @@
...
@@ -33,45 +30,6 @@
#include "stats.h"
#include "stats.h"
/*****************************************************************************
* encoder_sys_t
*****************************************************************************/
struct
encoder_sys_t
{
int
i
;
};
/*****************************************************************************
* Local prototypes
*****************************************************************************/
static
block_t
*
EncodeVideo
(
encoder_t
*
p_enc
,
picture_t
*
p_pict
);
static
block_t
*
EncodeAudio
(
encoder_t
*
p_enc
,
block_t
*
p_abuff
);
/*****************************************************************************
* OpenDecoder: open the dummy encoder.
*****************************************************************************/
int
OpenEncoder
(
vlc_object_t
*
p_this
)
{
encoder_t
*
p_enc
=
(
encoder_t
*
)
p_this
;
p_enc
->
p_sys
=
malloc
(
sizeof
(
encoder_sys_t
));
if
(
!
p_enc
->
p_sys
)
return
VLC_ENOMEM
;
p_enc
->
p_sys
->
i
=
0
;
msg_Dbg
(
p_this
,
"opening stats encoder"
);
p_enc
->
pf_encode_video
=
EncodeVideo
;
p_enc
->
pf_encode_audio
=
EncodeAudio
;
return
VLC_SUCCESS
;
}
/****************************************************************************
* EncodeVideo: the whole thing
****************************************************************************/
static
block_t
*
EncodeVideo
(
encoder_t
*
p_enc
,
picture_t
*
p_pict
)
static
block_t
*
EncodeVideo
(
encoder_t
*
p_enc
,
picture_t
*
p_pict
)
{
{
(
void
)
p_pict
;
(
void
)
p_pict
;
...
@@ -87,9 +45,6 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
...
@@ -87,9 +45,6 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
return
p_block
;
return
p_block
;
}
}
/****************************************************************************
* EncodeVideo: the whole thing
****************************************************************************/
static
block_t
*
EncodeAudio
(
encoder_t
*
p_enc
,
block_t
*
p_abuff
)
static
block_t
*
EncodeAudio
(
encoder_t
*
p_enc
,
block_t
*
p_abuff
)
{
{
(
void
)
p_abuff
;
(
void
)
p_abuff
;
...
@@ -97,14 +52,14 @@ static block_t *EncodeAudio( encoder_t *p_enc, block_t *p_abuff )
...
@@ -97,14 +52,14 @@ static block_t *EncodeAudio( encoder_t *p_enc, block_t *p_abuff )
return
NULL
;
return
NULL
;
}
}
int
OpenEncoder
(
vlc_object_t
*
p_this
)
/*****************************************************************************
* CloseDecoder: decoder destruction
*****************************************************************************/
void
CloseEncoder
(
vlc_object_t
*
p_this
)
{
{
encoder_t
*
p_enc
=
(
encoder_t
*
)
p_this
;
encoder_t
*
p_enc
=
(
encoder_t
*
)
p_this
;
msg_Dbg
(
p_this
,
"closing stats encoder"
);
msg_Dbg
(
p_this
,
"opening stats encoder"
);
free
(
p_enc
->
p_sys
);
p_enc
->
pf_encode_video
=
EncodeVideo
;
p_enc
->
pf_encode_audio
=
EncodeAudio
;
return
VLC_SUCCESS
;
}
}
modules/misc/stats/stats.c
View file @
3264e6d5
...
@@ -49,7 +49,7 @@ vlc_module_begin ()
...
@@ -49,7 +49,7 @@ vlc_module_begin ()
set_description
(
N_
(
"Stats encoder function"
)
)
set_description
(
N_
(
"Stats encoder function"
)
)
set_capability
(
"encoder"
,
0
)
set_capability
(
"encoder"
,
0
)
add_shortcut
(
"stats"
)
add_shortcut
(
"stats"
)
set_callbacks
(
OpenEncoder
,
CloseEncoder
)
set_callbacks
(
OpenEncoder
,
NULL
)
add_submodule
()
add_submodule
()
set_section
(
N_
(
"Stats decoder"
),
NULL
)
set_section
(
N_
(
"Stats decoder"
),
NULL
)
set_description
(
N_
(
"Stats decoder function"
)
)
set_description
(
N_
(
"Stats decoder function"
)
)
...
...
modules/misc/stats/stats.h
View file @
3264e6d5
...
@@ -28,7 +28,6 @@
...
@@ -28,7 +28,6 @@
int
OpenDecoder
(
vlc_object_t
*
);
int
OpenDecoder
(
vlc_object_t
*
);
int
OpenEncoder
(
vlc_object_t
*
);
int
OpenEncoder
(
vlc_object_t
*
);
void
CloseEncoder
(
vlc_object_t
*
);
int
OpenDemux
(
vlc_object_t
*
);
int
OpenDemux
(
vlc_object_t
*
);
void
CloseDemux
(
vlc_object_t
*
);
void
CloseDemux
(
vlc_object_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