diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-07-24 14:41:24 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-07-29 04:16:59 +0200 |
commit | 8387241975c5ac8c2da1cecf9ff2dfae3fabc844 (patch) | |
tree | af8c825726f8b3821ed908286d595dc705e4ac20 /libavcodec/mpegvideo_enc.c | |
parent | 096563c1086db8e8ebbb980ef65846b21d1fa010 (diff) | |
download | ffmpeg-8387241975c5ac8c2da1cecf9ff2dfae3fabc844.tar.gz |
avcodec/dct: Move fdct function declarations to fdctdsp.h
It is the more proper place for them given that this is
the only API using them.
Also use a forward-declaration of AVCodecContext in fdctdsp.h
to avoid including avcodec.h in jfdct(fst|int).c.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo_enc.c')
-rw-r--r-- | libavcodec/mpegvideo_enc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo_enc.c b/libavcodec/mpegvideo_enc.c index 9bdf5dbe07..64e66ae958 100644 --- a/libavcodec/mpegvideo_enc.c +++ b/libavcodec/mpegvideo_enc.c @@ -43,7 +43,6 @@ #include "libavutil/opt.h" #include "libavutil/thread.h" #include "avcodec.h" -#include "dct.h" #include "encode.h" #include "idctdsp.h" #include "mpeg12codecs.h" |