Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
9fae25fb
Commit
9fae25fb
authored
6 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
posix: add non-anonymous picture allocator
parent
51d23492
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Makefile.am
+1
-0
1 addition, 0 deletions
src/Makefile.am
src/posix/picture.c
+55
-0
55 additions, 0 deletions
src/posix/picture.c
with
56 additions
and
0 deletions
src/Makefile.am
+
1
−
0
View file @
9fae25fb
...
...
@@ -432,6 +432,7 @@ libvlccore_la_SOURCES += \
posix/dirs.c
\
posix/error.c
\
posix/netconf.c
\
posix/picture.c
\
posix/specific.c
\
posix/thread.c
if
HAVE_LINUX
...
...
This diff is collapsed.
Click to expand it.
src/posix/picture.c
0 → 100644
+
55
−
0
View file @
9fae25fb
/*****************************************************************************
* picture.c:
*****************************************************************************
* Copyright (C) 2018 Rémi Denis-Courmont
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include
<assert.h>
#include
<sys/types.h>
#include
<sys/mman.h>
#include
<vlc_common.h>
#include
<vlc_fs.h>
#include
"misc/picture.h"
void
*
picture_Allocate
(
int
*
restrict
fdp
,
size_t
size
)
{
int
fd
=
vlc_memfd
();
if
(
ftruncate
(
fd
,
size
))
{
error:
vlc_close
(
fd
);
return
NULL
;
}
void
*
base
=
mmap
(
NULL
,
size
,
PROT_READ
|
PROT_WRITE
,
MAP_SHARED
,
fd
,
0
);
if
(
base
==
MAP_FAILED
)
goto
error
;
*
fdp
=
fd
;
return
base
;
}
void
picture_Deallocate
(
int
fd
,
void
*
base
,
size_t
size
)
{
munmap
(
base
,
size
);
vlc_close
(
fd
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment