diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-17 12:16:38 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-21 23:25:36 +0100 |
commit | 86c909558ce3e7505d5a63647c27cd0a4314a603 (patch) | |
tree | 05296e13d5d68a282271d8e5c950a86db5be015f /libavcodec/jpeglsenc.c | |
parent | 495de744fa949eb789441349736bedc2301d0b61 (diff) | |
download | ffmpeg-86c909558ce3e7505d5a63647c27cd0a4314a603.tar.gz |
avcodec/internal: Move FF_SIGNBIT and ff_log2_run to mathops.h
It is a more fitting place for them.
Also move the definition of ff_log2_run to mathtables.c.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/jpeglsenc.c')
-rw-r--r-- | libavcodec/jpeglsenc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/jpeglsenc.c b/libavcodec/jpeglsenc.c index 42c2d6b038..dbd7941df2 100644 --- a/libavcodec/jpeglsenc.c +++ b/libavcodec/jpeglsenc.c @@ -34,7 +34,6 @@ #include "get_bits.h" #include "put_bits.h" #include "put_golomb.h" -#include "internal.h" #include "mathops.h" #include "mjpeg.h" #include "jpegls.h" |