diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-14 09:16:36 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-02-14 09:16:36 +0100 |
commit | 71d3e717fbc609525f4cfb669a809ae58a16a2b3 (patch) | |
tree | 46f3c69ea1f5a6e5f1180be30ecfe9d89c71c5f6 | |
parent | da9cc25c88b3fa1882ac9d0e4727ed8b465f95cf (diff) | |
download | ffmpeg-71d3e717fbc609525f4cfb669a809ae58a16a2b3.tar.gz |
avcodec/mpegvideo_xvmc: Add missing mpegvideodec.h inclusion
Forgotten in 965cfc6684e00bd7d21295554f325ff62ce6669a.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/mpegvideo_xvmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo_xvmc.c b/libavcodec/mpegvideo_xvmc.c index f06583768c..f3ae9c4c0a 100644 --- a/libavcodec/mpegvideo_xvmc.c +++ b/libavcodec/mpegvideo_xvmc.c @@ -25,6 +25,7 @@ #include "avcodec.h" #include "mpegutils.h" #include "mpegvideo.h" +#include "mpegvideodec.h" #undef NDEBUG #include <assert.h> |