diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-17 10:39:42 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-21 23:25:36 +0100 |
commit | b303f1e08335bb6ab4c4e58ec3771ae2cac2b33f (patch) | |
tree | 1a5f0ba66250d4f6807e9f37eb568b59a32f54b2 /libavcodec/tiff.c | |
parent | 7aebdb8bf1fc3e09263617a7f49101cba2d43804 (diff) | |
download | ffmpeg-b303f1e08335bb6ab4c4e58ec3771ae2cac2b33f.tar.gz |
avcodec/mathops: Move bitswap_32() to its only user
Effectively reverts eaff1aa09e90e2711207c9463db8bf8e8dec8178
given that bitswap_32 is no longer used outside of bitstream.c
since 03008c2811ec26cf338780a89b6b2b849b399e3c.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/tiff.c')
-rw-r--r-- | libavcodec/tiff.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 88ac838587..fdd3ae5c68 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -39,6 +39,7 @@ #include "libavutil/intreadwrite.h" #include "libavutil/imgutils.h" #include "libavutil/opt.h" +#include "libavutil/reverse.h" #include "avcodec.h" #include "bytestream.h" #include "codec_internal.h" |