Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
f9bdb4b0
Commit
f9bdb4b0
authored
4 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib/ffmpeg/Buffer: add `noexcept`
parent
93325278
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
Buffer.hxx
src/lib/ffmpeg/Buffer.hxx
+6
-6
No files found.
src/lib/ffmpeg/Buffer.hxx
View file @
f9bdb4b0
...
@@ -27,24 +27,24 @@ extern "C" {
...
@@ -27,24 +27,24 @@ extern "C" {
#include <cstddef>
#include <cstddef>
class
FfmpegBuffer
{
class
FfmpegBuffer
{
void
*
data
;
void
*
data
=
nullptr
;
unsigned
size
;
unsigned
size
=
0
;
public
:
public
:
FfmpegBuffer
()
:
data
(
nullptr
),
size
(
0
)
{}
FfmpegBuffer
()
noexcept
=
default
;
~
FfmpegBuffer
()
{
~
FfmpegBuffer
()
noexcept
{
av_free
(
data
);
av_free
(
data
);
}
}
gcc_malloc
gcc_malloc
void
*
Get
(
size_t
min_size
)
{
void
*
Get
(
size_t
min_size
)
noexcept
{
av_fast_malloc
(
&
data
,
&
size
,
min_size
);
av_fast_malloc
(
&
data
,
&
size
,
min_size
);
return
data
;
return
data
;
}
}
template
<
typename
T
>
template
<
typename
T
>
T
*
GetT
(
size_t
n
)
{
T
*
GetT
(
size_t
n
)
noexcept
{
return
(
T
*
)
Get
(
n
*
sizeof
(
T
));
return
(
T
*
)
Get
(
n
*
sizeof
(
T
));
}
}
};
};
...
...
This diff is collapsed.
Click to expand it.
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