diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-02-11 17:04:27 -0800 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-02-19 22:33:29 +0200 |
commit | 2ed008204d5467be03a0a3af1e293b2f7038d0a0 (patch) | |
tree | 7293700d56b1e8b10eab3b4cf147d23b6a7aa049 /libavcodec/dsputil.h | |
parent | e5ffffe48d20642acc079166f0fa7d93a6a9f594 (diff) | |
download | ffmpeg-2ed008204d5467be03a0a3af1e293b2f7038d0a0.tar.gz |
h264: Add add_pixels4/8() to h264dsp, and remove add_pixels4 from dsputil
These functions are mostly H264-specific (the only other user I can
spot is bink), and this allows us to special-case some functionality
for H264. Also remove the 16-bit-coeff with >8bpp versions (unused)
and merge the duplicate 32-bit-coeff for >8bpp (identical).
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index d0ba95ceeb..e69ac32e6e 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -153,7 +153,6 @@ typedef struct DSPContext { void (*put_signed_pixels_clamped)(const int16_t *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size); void (*add_pixels_clamped)(const int16_t *block/*align 16*/, uint8_t *pixels/*align 8*/, int line_size); void (*add_pixels8)(uint8_t *pixels, int16_t *block, int line_size); - void (*add_pixels4)(uint8_t *pixels, int16_t *block, int line_size); int (*sum_abs_dctelem)(int16_t *block/*align 16*/); /** * translational global motion compensation. |