diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-01-08 00:06:52 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-26 04:31:26 -0700 |
commit | d3c3c1664a958923f234283e66fbcbfe69a6927f (patch) | |
tree | df514d22bed9c9ae80a9e244bb8699818987b8e5 /libavcodec/dsputil.c | |
parent | d0aabeab23755ee906440505ad2097c0f1493e80 (diff) | |
download | ffmpeg-d3c3c1664a958923f234283e66fbcbfe69a6927f.tar.gz |
dsputil: Move hpel_template #include out of dsputil_template
Multiple inclusion makes no sense as it is only used in the 8-bit case.
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index b81ba47521..e41ea86e09 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -48,6 +48,7 @@ uint32_t ff_square_tab[512] = { 0, }; #undef BIT_DEPTH #define BIT_DEPTH 8 +#include "hpel_template.c" #include "tpel_template.c" #include "dsputil_template.c" |