diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-02-10 15:59:22 -0800 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-02-11 01:03:45 +0100 |
commit | 5e74a2b68563f3f15a06dd1a63b90454afe2eef8 (patch) | |
tree | 1651410376b16b0b119639fe39f2895016d714de | |
parent | c7e3e55429cba3a9e125be382a9ad3d9f3c1a423 (diff) | |
download | ffmpeg-5e74a2b68563f3f15a06dd1a63b90454afe2eef8.tar.gz |
bit_depth_template: don't depend on dsputil.h.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/bit_depth_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bit_depth_template.c b/libavcodec/bit_depth_template.c index 66b737bd8e..1a6d007845 100644 --- a/libavcodec/bit_depth_template.c +++ b/libavcodec/bit_depth_template.c @@ -16,8 +16,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "dsputil.h" #include "rnd_avg.h" +#include "libavutil/intreadwrite.h" #ifndef BIT_DEPTH #define BIT_DEPTH 8 |