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/pcm.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/pcm.c')
-rw-r--r-- | libavcodec/pcm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index 1e83b356ac..aaccd86199 100644 --- a/libavcodec/pcm.c +++ b/libavcodec/pcm.c @@ -28,6 +28,7 @@ #include "config_components.h" #include "libavutil/attributes.h" #include "libavutil/float_dsp.h" +#include "libavutil/reverse.h" #include "libavutil/thread.h" #include "avcodec.h" #include "bytestream.h" |