diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-21 17:33:17 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-03-22 06:17:29 -0700 |
commit | 322a1dda973e802db7b57f2007fad3efcd5bab81 (patch) | |
tree | b90c1ebb0502547287ecf732e122c7dd810dfec8 /libavcodec/dsputil.h | |
parent | f9279ee74936b4990fc46287c27816ef828cc06c (diff) | |
download | ffmpeg-322a1dda973e802db7b57f2007fad3efcd5bab81.tar.gz |
dsputil: Refactor duplicated CALL_2X_PIXELS / PIXELS16 macros
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index b712d49ae9..d596e29099 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -31,7 +31,6 @@ #define AVCODEC_DSPUTIL_H #include "avcodec.h" -#include "rnd_avg.h" /* encoding scans */ extern const uint8_t ff_alternate_horizontal_scan[64]; @@ -40,7 +39,6 @@ extern const uint8_t ff_zigzag248_direct[64]; extern uint32_t ff_square_tab[512]; -/* pixel operations */ void ff_put_pixels8x8_c(uint8_t *dst, uint8_t *src, ptrdiff_t stride); void ff_avg_pixels8x8_c(uint8_t *dst, uint8_t *src, ptrdiff_t stride); void ff_put_pixels16x16_c(uint8_t *dst, uint8_t *src, ptrdiff_t stride); |