diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-22 13:06:05 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-23 23:45:39 +0100 |
commit | 1dcd0adedd15f2595d51febbfc171c576c9e080a (patch) | |
tree | b832278f221dd4e06f4918bc42a24e02d56ddec7 /libavformat/oggparsespeex.c | |
parent | 33df1ba6b29362854b647dc0c116ed8949ecee1f (diff) | |
download | ffmpeg-1dcd0adedd15f2595d51febbfc171c576c9e080a.tar.gz |
avformat: Remove unnecessary inclusions from libavcodec
Also improve the other headers a bit while at it.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/oggparsespeex.c')
-rw-r--r-- | libavformat/oggparsespeex.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavformat/oggparsespeex.c b/libavformat/oggparsespeex.c index 7d3d653384..d20d14fa41 100644 --- a/libavformat/oggparsespeex.c +++ b/libavformat/oggparsespeex.c @@ -22,13 +22,8 @@ DEALINGS IN THE SOFTWARE. **/ -#include <stdlib.h> - -#include "libavutil/bswap.h" -#include "libavutil/avstring.h" #include "libavutil/channel_layout.h" - -#include "libavcodec/bytestream.h" +#include "libavutil/intreadwrite.h" #include "avformat.h" #include "internal.h" |