diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-01 08:00:27 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-13 19:49:29 +0100 |
commit | 977d8b6297633d82b498433a35d0ff496b4787c6 (patch) | |
tree | 91f9c901f4ed6c8c492cf99b590f7cd3bedb6ee5 /libavcodec/mdec.c | |
parent | f78ffe382c2c6d3bd57b8a5d4e6e3689f6e90043 (diff) | |
download | ffmpeg-977d8b6297633d82b498433a35d0ff496b4787c6.tar.gz |
avcodec/mpeg12.h: Move decoder-only stuff to a new header
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mdec.c')
-rw-r--r-- | libavcodec/mdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/mdec.c b/libavcodec/mdec.c index 9f61256bc4..986712cd06 100644 --- a/libavcodec/mdec.c +++ b/libavcodec/mdec.c @@ -33,8 +33,9 @@ #include "blockdsp.h" #include "bswapdsp.h" #include "idctdsp.h" -#include "mpeg12.h" +#include "internal.h" #include "mpeg12data.h" +#include "mpeg12dec.h" #include "thread.h" typedef struct MDECContext { |