diff options
author | Diego Biurrun <diego@biurrun.de> | 2017-01-30 20:24:38 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2017-01-31 17:46:19 +0100 |
commit | d4c2103bd30ff6ceea70c3696ae88a7d2ea72493 (patch) | |
tree | db4896f7bdef00b43d6a0d69678c9ae8cf0d46f9 /libavcodec/svq3.c | |
parent | ab87af41636b081dd3562423999351b5444fa09e (diff) | |
download | ffmpeg-d4c2103bd30ff6ceea70c3696ae88a7d2ea72493.tar.gz |
golomb: Convert to the new bitstream reader
Diffstat (limited to 'libavcodec/svq3.c')
-rw-r--r-- | libavcodec/svq3.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/svq3.c b/libavcodec/svq3.c index 51657372ae..8bbd331de3 100644 --- a/libavcodec/svq3.c +++ b/libavcodec/svq3.c @@ -43,12 +43,13 @@ #include <inttypes.h> #include "libavutil/attributes.h" + +#include "golomb_legacy.h" #include "internal.h" #include "avcodec.h" #include "mpegutils.h" #include "h264dec.h" #include "h264data.h" -#include "golomb.h" #include "hpeldsp.h" #include "mathops.h" #include "rectangle.h" |