summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-01-07 18:42:24 +0000
committerDiego Biurrun <diego@biurrun.de>2009-01-07 18:42:24 +0000
commit0d9efa287a04ab00858ba7bc64c4965a8a2f5e45 (patch)
tree3a474271be5c2a7ddb9ccf35709f033839cbb990
parent25bd48bdb46fc136b6991e496aaacc5caf07b577 (diff)
Add missing headers to allow 'make checkheaders' to pass.
Originally committed as revision 16481 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/h264pred.h1
-rw-r--r--libavcodec/vdpau_internal.h3
2 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/h264pred.h b/libavcodec/h264pred.h
index a8146ca0de..d87df2a31e 100644
--- a/libavcodec/h264pred.h
+++ b/libavcodec/h264pred.h
@@ -29,6 +29,7 @@
#define AVCODEC_H264PRED_H
#include "libavutil/common.h"
+#include "dsputil.h"
/**
* Prediction types
diff --git a/libavcodec/vdpau_internal.h b/libavcodec/vdpau_internal.h
index 915944e147..1ac341e2f5 100644
--- a/libavcodec/vdpau_internal.h
+++ b/libavcodec/vdpau_internal.h
@@ -24,6 +24,9 @@
#ifndef AVCODEC_VDPAU_INTERNAL_H
#define AVCODEC_VDPAU_INTERNAL_H
+#include <stdint.h>
+#include "h264.h"
+
void ff_VDPAU_h264_add_data_chunk(H264Context *h, const uint8_t *buf,
int buf_size);
void ff_VDPAU_h264_picture_complete(H264Context *h);