diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-27 23:33:06 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-09-03 15:41:44 +0200 |
commit | 72c601e0f71d3c71a53d43bdac935489ed86e3c5 (patch) | |
tree | 38e07e928f79486d8f4a264f67eb22394f53a481 /libavcodec | |
parent | 04b72178724ed08934e276c959a6f1a154e1e7d4 (diff) | |
download | ffmpeg-72c601e0f71d3c71a53d43bdac935489ed86e3c5.tar.gz |
avutil/internal: Move avpriv-file API to a header of its own
It is not used by the large majority of files that include
lavu/internal.h.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/dvdsubdec.c | 1 | ||||
-rw-r--r-- | libavcodec/libxvid.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/dvdsubdec.c b/libavcodec/dvdsubdec.c index 3338cd6b92..e1ae441880 100644 --- a/libavcodec/dvdsubdec.c +++ b/libavcodec/dvdsubdec.c @@ -27,6 +27,7 @@ #include "libavutil/attributes.h" #include "libavutil/colorspace.h" +#include "libavutil/file_open.h" #include "libavutil/opt.h" #include "libavutil/bswap.h" diff --git a/libavcodec/libxvid.c b/libavcodec/libxvid.c index aed8699fe1..3845905555 100644 --- a/libavcodec/libxvid.c +++ b/libavcodec/libxvid.c @@ -30,7 +30,7 @@ #include <xvid.h> #include "libavutil/avassert.h" -#include "libavutil/file.h" +#include "libavutil/file_open.h" #include "libavutil/internal.h" #include "libavutil/intreadwrite.h" #include "libavutil/mathematics.h" |