diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-01-28 00:59:24 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-13 19:41:43 +0100 |
commit | 20d74fb09dbf133f9de92ed55314c7a547309d84 (patch) | |
tree | 2baf144700f3befc5e66bb4969a0f90fab0b36d7 /libavcodec/mpeg4videodec.c | |
parent | 20033c7da4d631385dcb2afc4ed907c3500d8372 (diff) | |
download | ffmpeg-20d74fb09dbf133f9de92ed55314c7a547309d84.tar.gz |
avcodec/h263.h: Move encoder-only stuff to a new header h263enc.h
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpeg4videodec.c')
-rw-r--r-- | libavcodec/mpeg4videodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpeg4videodec.c b/libavcodec/mpeg4videodec.c index 655be5697d..ce0ea8d9f6 100644 --- a/libavcodec/mpeg4videodec.c +++ b/libavcodec/mpeg4videodec.c @@ -24,7 +24,6 @@ #include "libavutil/internal.h" #include "libavutil/opt.h" -#include "libavutil/pixdesc.h" #include "libavutil/thread.h" #include "error_resilience.h" #include "hwconfig.h" @@ -36,6 +35,7 @@ #include "mpeg4video.h" #include "mpeg4videodata.h" #include "h263.h" +#include "h263data.h" #include "h263dec.h" #include "profiles.h" #include "threadframe.h" |