Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
b89d540a
Commit
b89d540a
authored
May 03, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove pf_memcpy and pf_memset from libvlc
parent
5b55ee1b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
12 deletions
+0
-12
include/vlc_main.h
include/vlc_main.h
+0
-2
src/libvlc-common.c
src/libvlc-common.c
+0
-10
No files found.
include/vlc_main.h
View file @
b89d540a
...
...
@@ -67,8 +67,6 @@ struct libvlc_int_t
bool
b_color
;
///< color messages?
module_t
*
p_memcpy_module
;
///< Fast memcpy plugin used
void
*
(
*
pf_memcpy
)
(
void
*
,
const
void
*
,
size_t
);
///< fast memcpy
void
*
(
*
pf_memset
)
(
void
*
,
int
,
size_t
);
///< fast memset
bool
b_stats
;
///< Should we collect stats ?
vlc_mutex_t
timer_lock
;
///< Lock to protect timers
...
...
src/libvlc-common.c
View file @
b89d540a
...
...
@@ -709,16 +709,6 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
*/
p_libvlc
->
p_memcpy_module
=
module_Need
(
p_libvlc
,
"memcpy"
,
"$memcpy"
,
0
);
if
(
p_libvlc
->
pf_memcpy
==
NULL
)
{
p_libvlc
->
pf_memcpy
=
memcpy
;
}
if
(
p_libvlc
->
pf_memset
==
NULL
)
{
p_libvlc
->
pf_memset
=
memset
;
}
p_libvlc
->
b_stats
=
config_GetInt
(
p_libvlc
,
"stats"
)
>
0
;
p_libvlc
->
i_timers
=
0
;
p_libvlc
->
pp_timers
=
NULL
;
...
...
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