Browse code

Add missing headers to allow 'make checkheaders' to pass.

Originally committed as revision 16481 to svn://svn.ffmpeg.org/ffmpeg/trunk

Diego Biurrun authored on 2009/01/08 03:42:24
Showing 2 changed files
... ...
@@ -29,6 +29,7 @@
29 29
 #define AVCODEC_H264PRED_H
30 30
 
31 31
 #include "libavutil/common.h"
32
+#include "dsputil.h"
32 33
 
33 34
 /**
34 35
  * Prediction types
... ...
@@ -24,6 +24,9 @@
24 24
 #ifndef AVCODEC_VDPAU_INTERNAL_H
25 25
 #define AVCODEC_VDPAU_INTERNAL_H
26 26
 
27
+#include <stdint.h>
28
+#include "h264.h"
29
+
27 30
 void ff_VDPAU_h264_add_data_chunk(H264Context *h, const uint8_t *buf,
28 31
                                   int buf_size);
29 32
 void ff_VDPAU_h264_picture_complete(H264Context *h);