diff options
author | Clément Bœsch <clement@stupeflix.com> | 2016-06-21 15:42:49 +0200 |
---|---|---|
committer | Clément Bœsch <clement@stupeflix.com> | 2016-06-21 15:42:49 +0200 |
commit | 9204a84998083abbe058bf1464317f7ef8016c6c (patch) | |
tree | 421ad218c69cffa85f5a5ea5536d3dea1c07b1d6 /libavcodec/yop.c | |
parent | 3801060cd028cc11cd4000eae8e578a715051310 (diff) | |
parent | 5c31eaa9998b2185e0aa04d11adff128498dc14a (diff) | |
download | ffmpeg-9204a84998083abbe058bf1464317f7ef8016c6c.tar.gz |
Merge commit '5c31eaa9998b2185e0aa04d11adff128498dc14a'
* commit '5c31eaa9998b2185e0aa04d11adff128498dc14a':
Remove unnecessary get_bits.h #includes and add missing headers where needed.
Merged-by: Clément Bœsch <clement@stupeflix.com>
Diffstat (limited to 'libavcodec/yop.c')
-rw-r--r-- | libavcodec/yop.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavcodec/yop.c b/libavcodec/yop.c index c6b19ec795..32cfea200a 100644 --- a/libavcodec/yop.c +++ b/libavcodec/yop.c @@ -22,11 +22,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libavutil/intreadwrite.h" +#include <string.h> + #include "libavutil/imgutils.h" +#include "libavutil/internal.h" +#include "libavutil/intreadwrite.h" #include "avcodec.h" -#include "get_bits.h" #include "internal.h" typedef struct YopDecContext { |