diff options
author | Alexandra Hájková <alexandra@khirnov.net> | 2016-06-08 11:31:33 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-12-19 12:35:05 +0100 |
commit | fa64aea12ee69a32b916fefdef1c819f97e2cb9e (patch) | |
tree | 46394e76e3169a978b166f4218e9f80297df8fa4 /libavcodec/vc1.c | |
parent | 45286a625c6ced1f5c4c842244cbb4509429abba (diff) | |
download | ffmpeg-fa64aea12ee69a32b916fefdef1c819f97e2cb9e.tar.gz |
unary: Convert to the new bitstream reader
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 7a93e971bc..8eba65c1d0 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -30,10 +30,10 @@ #include "internal.h" #include "avcodec.h" #include "mpegvideo.h" +#include "unary_legacy.h" #include "vc1.h" #include "vc1data.h" #include "wmv2data.h" -#include "unary.h" #include "simple_idct.h" /***********************************************************************/ |