diff options
author | wm4 <nfxjfg@googlemail.com> | 2015-02-10 13:27:02 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-10 15:24:46 +0100 |
commit | 3e18dc235e9cd41f83643af9470270f434363a0a (patch) | |
tree | 2ab5aa4636ed1705cbf3bc2ad515ffbef25dc94a /libavutil | |
parent | 392d975efe9424fe7b1ab3ae308f93f8a51b6c4e (diff) | |
download | ffmpeg-3e18dc235e9cd41f83643af9470270f434363a0a.tar.gz |
avutil: move internal function out of public header
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/internal.h | 2 | ||||
-rw-r--r-- | libavutil/pixdesc.h | 2 | ||||
-rw-r--r-- | libavutil/utils.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 0a201424de..143e2db495 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -273,4 +273,6 @@ static av_always_inline av_const int avpriv_mirror(int x, int w) uint64_t ff_get_channel_layout(const char *name, int compat); #endif +void ff_check_pixfmt_descriptors(void); + #endif /* AVUTIL_INTERNAL_H */ diff --git a/libavutil/pixdesc.h b/libavutil/pixdesc.h index 705377df8b..c8e32518a8 100644 --- a/libavutil/pixdesc.h +++ b/libavutil/pixdesc.h @@ -299,8 +299,6 @@ int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, */ int av_pix_fmt_count_planes(enum AVPixelFormat pix_fmt); -void ff_check_pixfmt_descriptors(void); - /** * Utility function to swap the endianness of a pixel format. * diff --git a/libavutil/utils.c b/libavutil/utils.c index da8b5ae2d3..3682168f2b 100644 --- a/libavutil/utils.c +++ b/libavutil/utils.c @@ -20,7 +20,7 @@ #include "avutil.h" #include "avassert.h" #include "samplefmt.h" -#include "pixdesc.h" +#include "internal.h" /** * @file |