Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
e6bff23f
Commit
e6bff23f
authored
8 years ago
by
Anton Khirnov
Browse files
Options
Downloads
Patches
Plain Diff
cpu: add a function for querying maximum required data alignment
parent
5c8a5765
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/APIchanges
+3
-0
3 additions, 0 deletions
doc/APIchanges
libavutil/cpu.c
+13
-0
13 additions, 0 deletions
libavutil/cpu.c
libavutil/cpu.h
+13
-0
13 additions, 0 deletions
libavutil/cpu.h
libavutil/version.h
+1
-1
1 addition, 1 deletion
libavutil/version.h
with
30 additions
and
1 deletion
doc/APIchanges
+
3
−
0
View file @
e6bff23f
...
@@ -13,6 +13,9 @@ libavutil: 2015-08-28
...
@@ -13,6 +13,9 @@ libavutil: 2015-08-28
API changes, most recent first:
API changes, most recent first:
2017-02-xx - xxxxxxx - lavu 55.31.0 - cpu.h
Add av_cpu_max_align() for querying maximum required data alignment.
2016-xx-xx - xxxxxxx - lavf 57.11.0 - avio.h
2016-xx-xx - xxxxxxx - lavf 57.11.0 - avio.h
Add avio_context_free(). From now on it must be used for freeing AVIOContext.
Add avio_context_free(). From now on it must be used for freeing AVIOContext.
...
...
This diff is collapsed.
Click to expand it.
libavutil/cpu.c
+
13
−
0
View file @
e6bff23f
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
*/
#include
<stddef.h>
#include
<stdint.h>
#include
<stdint.h>
#include
<stdatomic.h>
#include
<stdatomic.h>
...
@@ -180,3 +181,15 @@ int av_cpu_count(void)
...
@@ -180,3 +181,15 @@ int av_cpu_count(void)
return
nb_cpus
;
return
nb_cpus
;
}
}
size_t
av_cpu_max_align
(
void
)
{
int
flags
=
av_get_cpu_flags
();
if
(
flags
&
AV_CPU_FLAG_AVX
)
return
32
;
if
(
flags
&
(
AV_CPU_FLAG_ALTIVEC
|
AV_CPU_FLAG_SSE
|
AV_CPU_FLAG_NEON
))
return
16
;
return
8
;
}
This diff is collapsed.
Click to expand it.
libavutil/cpu.h
+
13
−
0
View file @
e6bff23f
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
#ifndef AVUTIL_CPU_H
#ifndef AVUTIL_CPU_H
#define AVUTIL_CPU_H
#define AVUTIL_CPU_H
#include
<stddef.h>
#include
"version.h"
#include
"version.h"
#define AV_CPU_FLAG_FORCE 0x80000000
/* force usage of selected flags (OR) */
#define AV_CPU_FLAG_FORCE 0x80000000
/* force usage of selected flags (OR) */
...
@@ -88,4 +90,15 @@ int av_parse_cpu_flags(const char *s);
...
@@ -88,4 +90,15 @@ int av_parse_cpu_flags(const char *s);
*/
*/
int
av_cpu_count
(
void
);
int
av_cpu_count
(
void
);
/**
* Get the maximum data alignment that may be required by Libav.
*
* Note that this is affected by the build configuration and the CPU flags mask,
* so e.g. if the CPU supports AVX, but libavutil has been built with
* --disable-avx or the AV_CPU_FLAG_AVX flag has been disabled through
* av_set_cpu_flags_mask(), then this function will behave as if AVX is not
* present.
*/
size_t
av_cpu_max_align
(
void
);
#endif
/* AVUTIL_CPU_H */
#endif
/* AVUTIL_CPU_H */
This diff is collapsed.
Click to expand it.
libavutil/version.h
+
1
−
1
View file @
e6bff23f
...
@@ -54,7 +54,7 @@
...
@@ -54,7 +54,7 @@
*/
*/
#define LIBAVUTIL_VERSION_MAJOR 55
#define LIBAVUTIL_VERSION_MAJOR 55
#define LIBAVUTIL_VERSION_MINOR 3
0
#define LIBAVUTIL_VERSION_MINOR 3
1
#define LIBAVUTIL_VERSION_MICRO 0
#define LIBAVUTIL_VERSION_MICRO 0
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
#define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
...
...
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